9a374b78ce119d7a671214e353a871982b2d1e91
[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   size_t read_size;
45   int pcre_error;
46   void *user1;
47   void *user2;
48   void *user3;
49 };
50 typedef struct mexp_h mexp_h;
51
52 /* Spawn a subprocess. */
53 extern mexp_h *mexp_spawnv (const char *file, char **argv);
54 extern mexp_h *mexp_spawnl (const char *file, const char *arg, ...);
55
56 /* Close the handle. */
57 extern int mexp_close (mexp_h *h);
58
59 /* Expect. */
60 struct mexp_regexp {
61   int r;
62   const pcre *re;
63   const pcre_extra *extra;
64   int options;
65 };
66 typedef struct mexp_regexp mexp_regexp;
67
68 enum mexp_status {
69   MEXP_EOF        = 0,
70   MEXP_ERROR      = -1,
71   MEXP_PCRE_ERROR = -2,
72   MEXP_TIMEOUT    = -3,
73 };
74
75 extern int mexp_expect (mexp_h *h, const mexp_regexp *regexps,
76                         int *ovector, int ovecsize);
77
78 extern int mexp_printf (mexp_h *h, const char *fs, ...)
79   __attribute__((format(printf,2,3)));
80
81 #endif /* MINIEXPECT_H_ */