fish: New command 'sparse', like 'alloc' but to generate sparse files.
[libguestfs.git] / fish / fish.h
1 /* libguestfs - guestfish shell
2  * Copyright (C) 2009 Red Hat Inc.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program 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
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19 #ifndef FISH_H
20 #define FISH_H
21
22 #include <guestfs.h>
23
24 #ifdef HAVE_GETTEXT
25 #include "gettext.h"
26 #define _(str) dgettext(PACKAGE, (str))
27 #define N_(str) dgettext(PACKAGE, (str))
28 #else
29 #define _(str) str
30 #define N_(str) str
31 #endif
32
33 /* in fish.c */
34 extern guestfs_h *g;
35 extern int quit;
36 extern int verbose;
37 extern int issue_command (const char *cmd, char *argv[], const char *pipe);
38 extern void pod2text (const char *name, const char *shortdesc, const char *body);
39 extern void list_builtin_commands (void);
40 extern void display_builtin_command (const char *cmd);
41 extern void free_strings (char **argv);
42 extern int count_strings (char *const *argv);
43 extern void print_strings (char *const *argv);
44 extern void print_table (char *const *argv);
45 extern int launch (guestfs_h *);
46 extern int is_true (const char *str);
47 extern char **parse_string_list (const char *str);
48 extern int xwrite (int fd, const void *buf, size_t len);
49 extern char *resolve_win_path (const char *path);
50
51 /* in cmds.c (auto-generated) */
52 extern void list_commands (void);
53 extern void display_command (const char *cmd);
54 extern int run_action (const char *cmd, int argc, char *argv[]);
55
56 /* in completion.c (auto-generated) */
57 extern char **do_completion (const char *text, int start, int end);
58
59 /* in destpaths.c */
60 extern int complete_dest_paths;
61 extern char *complete_dest_paths_generator (const char *text, int state);
62
63 /* in alloc.c */
64 extern int do_alloc (const char *cmd, int argc, char *argv[]);
65 extern int do_sparse (const char *cmd, int argc, char *argv[]);
66
67 /* in echo.c */
68 extern int do_echo (const char *cmd, int argc, char *argv[]);
69
70 /* in edit.c */
71 extern int do_edit (const char *cmd, int argc, char *argv[]);
72
73 /* in lcd.c */
74 extern int do_lcd (const char *cmd, int argc, char *argv[]);
75
76 /* in glob.c */
77 extern int do_glob (const char *cmd, int argc, char *argv[]);
78
79 /* in more.c */
80 extern int do_more (const char *cmd, int argc, char *argv[]);
81
82 /* in rc.c (remote control) */
83 extern void rc_listen (void) __attribute__((noreturn));
84 extern int rc_remote (int pid, const char *cmd, int argc, char *argv[],
85                       int exit_on_error);
86
87 /* in reopen.c */
88 extern int do_reopen (const char *cmd, int argc, char *argv[]);
89
90 /* in time.c */
91 extern int do_time (const char *cmd, int argc, char *argv[]);
92
93 /* in tilde.c */
94 extern char *try_tilde_expansion (char *path);
95
96 /* This should just list all the built-in commands so they can
97  * be added to the generated auto-completion code.
98  */
99 #define BUILTIN_COMMANDS_FOR_COMPLETION \
100   "help",                               \
101   "quit", "exit", "q",                  \
102   "alloc", "allocate",                  \
103   "echo",                               \
104   "edit", "vi", "emacs",                \
105   "lcd",                                \
106   "glob",                               \
107   "more", "less",                       \
108   "reopen",                             \
109   "time"
110
111 static inline char *
112 bad_cast (char const *s)
113 {
114   return (char *) s;
115 }
116
117 #endif /* FISH_H */