persistent: add a ctdb_db context to the ctdb_persistent_state struct.
[sahlberg/ctdb.git] / libctdb / test / tui.h
1 /*
2
3 This file is taken from nfsim (http://ozlabs.org/~jk/projects/nfsim/)
4
5 Copyright (c) 2003,2004 Jeremy Kerr & Rusty Russell
6
7 This file is part of nfsim.
8
9 nfsim is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 nfsim is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with nfsim; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22 */
23
24 #ifndef __HAVE_TUI_H
25 #define __HAVE_TUI_H
26
27 #include <stdbool.h>
28
29 #define TUI_MAX_CMD_LEN         1024
30 #define TUI_MAX_ARGS            128
31
32 int tui_register_command(const char *command,
33                          bool (*handler)(int argc, char **argv),
34                          void (*helpfn)(int argc, char **argv));
35
36 int tui_register_pre_post_hook(void (*pre)(const char *),
37                                bool (*post)(const char *));
38
39 void tui_run(int fd);
40
41 bool tui_do_command(int argc, char *argv[], bool abort);
42
43 /* Is this a valid command?  Sanity check for expect. */
44 bool tui_is_command(const char *name);
45
46 /* A script test failed (a command failed with -e, or an expect failed). */
47 void script_fail(const char *fmt, ...) __attribute__((noreturn));
48
49 extern int tui_echo_commands;
50 extern int tui_abort_on_fail;
51 extern int tui_quiet;
52 extern int tui_linenum;
53
54 #endif /* __HAVE_TUI_H */