Implement and test multi-matching on strings.
[miniexpect.git] / miniexpect.h
1 /* miniexpect
2  * Copyright (C) 2014 Red Hat Inc.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18
19 /* ** NOTE ** All API documentation is in the manual page.
20  *
21  * To read the manual page from the source directory, do:
22  *    man ./miniexpect.3
23  * If you have installed miniexpect, do:
24  *    man 3 miniexpect
25  *
26  * The source for the manual page is miniexpect.pod.
27  */
28
29 #ifndef MINIEXPECT_H_
30 #define MINIEXPECT_H_
31
32 #include <unistd.h>
33
34 #include <pcre.h>
35
36 /* This handle is created per subprocess that is spawned. */
37 struct mexp_h {
38   int fd;
39   pid_t pid;
40   int timeout;
41   char *buffer;
42   size_t len;
43   size_t alloc;
44   ssize_t next_match;
45   size_t read_size;
46   int pcre_error;
47   void *user1;
48   void *user2;
49   void *user3;
50 };
51 typedef struct mexp_h mexp_h;
52
53 /* Spawn a subprocess. */
54 extern mexp_h *mexp_spawnv (const char *file, char **argv);
55 extern mexp_h *mexp_spawnl (const char *file, const char *arg, ...);
56
57 /* Close the handle. */
58 extern int mexp_close (mexp_h *h);
59
60 /* Expect. */
61 struct mexp_regexp {
62   int r;
63   const pcre *re;
64   const pcre_extra *extra;
65   int options;
66 };
67 typedef struct mexp_regexp mexp_regexp;
68
69 enum mexp_status {
70   MEXP_EOF        = 0,
71   MEXP_ERROR      = -1,
72   MEXP_PCRE_ERROR = -2,
73   MEXP_TIMEOUT    = -3,
74 };
75
76 extern int mexp_expect (mexp_h *h, const mexp_regexp *regexps,
77                         int *ovector, int ovecsize);
78
79 extern int mexp_printf (mexp_h *h, const char *fs, ...)
80   __attribute__((format(printf,2,3)));
81
82 #endif /* MINIEXPECT_H_ */