Small fix to documentation.
[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 /* Methods to access (some) fields in the handle. */
54 #define mexp_get_fd(h) ((h)->fd)
55 #define mexp_get_pid(h) ((h)->pid)
56 #define mexp_get_timeout_ms(h) ((h)->timeout)
57 #define mexp_set_timeout_ms(h, ms) ((h)->timeout = (ms))
58 /* If secs == -1, then this sets h->timeout to -1000, but the main
59  * code handles this since it only checks for h->timeout < 0.
60  */
61 #define mexp_set_timeout(h, secs) ((h)->timeout = 1000 * (secs))
62 #define mexp_get_read_size(h) ((h)->read_size)
63 #define mexp_set_read_size(h, size) ((h)->read_size = (size))
64 #define mexp_get_pcre_error(h) ((h)->pcre_error)
65
66 /* Spawn a subprocess. */
67 extern mexp_h *mexp_spawnv (const char *file, char **argv);
68 extern mexp_h *mexp_spawnl (const char *file, const char *arg, ...);
69
70 /* Close the handle. */
71 extern int mexp_close (mexp_h *h);
72
73 /* Expect. */
74 struct mexp_regexp {
75   int r;
76   const pcre *re;
77   const pcre_extra *extra;
78   int options;
79 };
80 typedef struct mexp_regexp mexp_regexp;
81
82 enum mexp_status {
83   MEXP_EOF        = 0,
84   MEXP_ERROR      = -1,
85   MEXP_PCRE_ERROR = -2,
86   MEXP_TIMEOUT    = -3,
87 };
88
89 extern int mexp_expect (mexp_h *h, const mexp_regexp *regexps,
90                         int *ovector, int ovecsize);
91
92 extern int mexp_printf (mexp_h *h, const char *fs, ...)
93   __attribute__((format(printf,2,3)));
94
95 #endif /* MINIEXPECT_H_ */