Added Augeas support.
[libguestfs.git] / fish / cmds.c
1 /* libguestfs generated file
2  * WARNING: THIS FILE IS GENERATED BY 'src/generator.ml'.
3  * ANY CHANGES YOU MAKE TO THIS FILE WILL BE LOST.
4  *
5  * Copyright (C) 2009 Red Hat Inc.
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <inttypes.h>
26
27 #include <guestfs.h>
28 #include "fish.h"
29
30 void list_commands (void)
31 {
32   printf ("    %-16s     %s\n", "Command", "Description");
33   list_builtin_commands ();
34   printf ("%-20s %s\n", "add-cdrom", "add a CD-ROM disk image to examine");
35   printf ("%-20s %s\n", "add-drive", "add an image to examine or modify");
36   printf ("%-20s %s\n", "aug-close", "close the current Augeas handle");
37   printf ("%-20s %s\n", "aug-defnode", "define an Augeas node");
38   printf ("%-20s %s\n", "aug-defvar", "define an Augeas variable");
39   printf ("%-20s %s\n", "aug-get", "look up the value of an Augeas path");
40   printf ("%-20s %s\n", "aug-init", "create a new Augeas handle");
41   printf ("%-20s %s\n", "aug-insert", "insert a sibling Augeas node");
42   printf ("%-20s %s\n", "aug-load", "load files into the tree");
43   printf ("%-20s %s\n", "aug-match", "return Augeas nodes which match path");
44   printf ("%-20s %s\n", "aug-mv", "move Augeas node");
45   printf ("%-20s %s\n", "aug-rm", "remove an Augeas path");
46   printf ("%-20s %s\n", "aug-save", "write all pending Augeas changes to disk");
47   printf ("%-20s %s\n", "aug-set", "set Augeas path to value");
48   printf ("%-20s %s\n", "cat", "list the contents of a file");
49   printf ("%-20s %s\n", "config", "add qemu parameters");
50   printf ("%-20s %s\n", "get-autosync", "get autosync mode");
51   printf ("%-20s %s\n", "get-path", "get the search path");
52   printf ("%-20s %s\n", "get-verbose", "get verbose mode");
53   printf ("%-20s %s\n", "kill-subprocess", "kill the qemu subprocess");
54   printf ("%-20s %s\n", "launch", "launch the qemu subprocess");
55   printf ("%-20s %s\n", "list-devices", "list the block devices");
56   printf ("%-20s %s\n", "list-partitions", "list the partitions");
57   printf ("%-20s %s\n", "ll", "list the files in a directory (long format)");
58   printf ("%-20s %s\n", "ls", "list the files in a directory");
59   printf ("%-20s %s\n", "lvs", "list the LVM logical volumes (LVs)");
60   printf ("%-20s %s\n", "lvs-full", "list the LVM logical volumes (LVs)");
61   printf ("%-20s %s\n", "mount", "mount a guest disk at a position in the filesystem");
62   printf ("%-20s %s\n", "pvs", "list the LVM physical volumes (PVs)");
63   printf ("%-20s %s\n", "pvs-full", "list the LVM physical volumes (PVs)");
64   printf ("%-20s %s\n", "read-lines", "read file as lines");
65   printf ("%-20s %s\n", "set-autosync", "set autosync mode");
66   printf ("%-20s %s\n", "set-path", "set the search path");
67   printf ("%-20s %s\n", "set-verbose", "set verbose mode");
68   printf ("%-20s %s\n", "sync", "sync disks, writes are flushed through to the disk image");
69   printf ("%-20s %s\n", "touch", "update file timestamps or create a new file");
70   printf ("%-20s %s\n", "vgs", "list the LVM volume groups (VGs)");
71   printf ("%-20s %s\n", "vgs-full", "list the LVM volume groups (VGs)");
72   printf ("    Use -h <cmd> / help <cmd> to show detailed help for a command.\n");
73 }
74
75 void display_command (const char *cmd)
76 {
77   if (strcasecmp (cmd, "launch") == 0 || strcasecmp (cmd, "run") == 0)
78     pod2text ("launch - launch the qemu subprocess", " launch\n\nInternally libguestfs is implemented by running a virtual machine\nusing L<qemu(1)>.\n\nYou should call this after configuring the handle\n(eg. adding drives) but before performing any actions.\n\nYou can use 'run' as an alias for this command.");
79   else
80   if (strcasecmp (cmd, "kill_subprocess") == 0 || strcasecmp (cmd, "kill-subprocess") == 0)
81     pod2text ("kill-subprocess - kill the qemu subprocess", " kill-subprocess\n\nThis kills the qemu subprocess.  You should never need to call this.");
82   else
83   if (strcasecmp (cmd, "add_drive") == 0 || strcasecmp (cmd, "add-drive") == 0 || strcasecmp (cmd, "add") == 0)
84     pod2text ("add-drive - add an image to examine or modify", " add-drive <filename>\n\nThis function adds a virtual machine disk image C<filename> to the\nguest.  The first time you call this function, the disk appears as IDE\ndisk 0 (C</dev/sda>) in the guest, the second time as C</dev/sdb>, and\nso on.\n\nYou don't necessarily need to be root when using libguestfs.  However\nyou obviously do need sufficient permissions to access the filename\nfor whatever operations you want to perform (ie. read access if you\njust want to read the image or write access if you want to modify the\nimage).\n\nThis is equivalent to the qemu parameter C<-drive file=filename>.\n\nYou can use 'add' as an alias for this command.");
85   else
86   if (strcasecmp (cmd, "add_cdrom") == 0 || strcasecmp (cmd, "add-cdrom") == 0 || strcasecmp (cmd, "cdrom") == 0)
87     pod2text ("add-cdrom - add a CD-ROM disk image to examine", " add-cdrom <filename>\n\nThis function adds a virtual CD-ROM disk image to the guest.\n\nThis is equivalent to the qemu parameter C<-cdrom filename>.\n\nYou can use 'cdrom' as an alias for this command.");
88   else
89   if (strcasecmp (cmd, "config") == 0)
90     pod2text ("config - add qemu parameters", " config <qemuparam> <qemuvalue>\n\nThis can be used to add arbitrary qemu command line parameters\nof the form C<-param value>.  Actually it's not quite arbitrary - we\nprevent you from setting some parameters which would interfere with\nparameters that we use.\n\nThe first character of C<param> string must be a C<-> (dash).\n\nC<value> can be NULL.");
91   else
92   if (strcasecmp (cmd, "set_path") == 0 || strcasecmp (cmd, "set-path") == 0 || strcasecmp (cmd, "path") == 0)
93     pod2text ("set-path - set the search path", " set-path <path>\n\nSet the path that libguestfs searches for kernel and initrd.img.\n\nThe default is C<$libdir/guestfs> unless overridden by setting\nC<LIBGUESTFS_PATH> environment variable.\n\nThe string C<path> is stashed in the libguestfs handle, so the caller\nmust make sure it remains valid for the lifetime of the handle.\n\nSetting C<path> to C<NULL> restores the default path.\n\nYou can use 'path' as an alias for this command.");
94   else
95   if (strcasecmp (cmd, "get_path") == 0 || strcasecmp (cmd, "get-path") == 0)
96     pod2text ("get-path - get the search path", " get-path\n\nReturn the current search path.\n\nThis is always non-NULL.  If it wasn't set already, then this will\nreturn the default path.");
97   else
98   if (strcasecmp (cmd, "set_autosync") == 0 || strcasecmp (cmd, "set-autosync") == 0 || strcasecmp (cmd, "autosync") == 0)
99     pod2text ("set-autosync - set autosync mode", " set-autosync <autosync>\n\nIf C<autosync> is true, this enables autosync.  Libguestfs will make a\nbest effort attempt to run C<sync> when the handle is closed\n(also if the program exits without closing handles).\n\nYou can use 'autosync' as an alias for this command.");
100   else
101   if (strcasecmp (cmd, "get_autosync") == 0 || strcasecmp (cmd, "get-autosync") == 0)
102     pod2text ("get-autosync - get autosync mode", " get-autosync\n\nGet the autosync flag.");
103   else
104   if (strcasecmp (cmd, "set_verbose") == 0 || strcasecmp (cmd, "set-verbose") == 0 || strcasecmp (cmd, "verbose") == 0)
105     pod2text ("set-verbose - set verbose mode", " set-verbose <verbose>\n\nIf C<verbose> is true, this turns on verbose messages (to C<stderr>).\n\nVerbose messages are disabled unless the environment variable\nC<LIBGUESTFS_DEBUG> is defined and set to C<1>.\n\nYou can use 'verbose' as an alias for this command.");
106   else
107   if (strcasecmp (cmd, "get_verbose") == 0 || strcasecmp (cmd, "get-verbose") == 0)
108     pod2text ("get-verbose - get verbose mode", " get-verbose\n\nThis returns the verbose messages flag.");
109   else
110   if (strcasecmp (cmd, "mount") == 0)
111     pod2text ("mount - mount a guest disk at a position in the filesystem", " mount <device> <mountpoint>\n\nMount a guest disk at a position in the filesystem.  Block devices\nare named C</dev/sda>, C</dev/sdb> and so on, as they were added to\nthe guest.  If those block devices contain partitions, they will have\nthe usual names (eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style\nnames can be used.\n\nThe rules are the same as for L<mount(2)>:  A filesystem must\nfirst be mounted on C</> before others can be mounted.  Other\nfilesystems can only be mounted on directories which already\nexist.\n\nThe mounted filesystem is writable, if we have sufficient permissions\non the underlying device.\n\nThe filesystem options C<sync> and C<noatime> are set with this\ncall, in order to improve reliability.");
112   else
113   if (strcasecmp (cmd, "sync") == 0)
114     pod2text ("sync - sync disks, writes are flushed through to the disk image", " sync\n\nThis syncs the disk, so that any writes are flushed through to the\nunderlying disk image.\n\nYou should always call this if you have modified a disk image, before\nclosing the handle.");
115   else
116   if (strcasecmp (cmd, "touch") == 0)
117     pod2text ("touch - update file timestamps or create a new file", " touch <path>\n\nTouch acts like the L<touch(1)> command.  It can be used to\nupdate the timestamps on a file, or, if the file does not exist,\nto create a new zero-length file.");
118   else
119   if (strcasecmp (cmd, "cat") == 0)
120     pod2text ("cat - list the contents of a file", " cat <path>\n\nReturn the contents of the file named C<path>.\n\nNote that this function cannot correctly handle binary files\n(specifically, files containing C<\\0> character which is treated\nas end of string).  For those you need to use the C<read_file>\nfunction which has a more complex interface.\n\nBecause of the message protocol, there is a transfer limit \nof somewhere between 2MB and 4MB.  To transfer large files you should use\nFTP.");
121   else
122   if (strcasecmp (cmd, "ll") == 0)
123     pod2text ("ll - list the files in a directory (long format)", " ll <directory>\n\nList the files in C<directory> (relative to the root directory,\nthere is no cwd) in the format of 'ls -la'.\n\nThis command is mostly useful for interactive sessions.  It\nis I<not> intended that you try to parse the output string.");
124   else
125   if (strcasecmp (cmd, "ls") == 0)
126     pod2text ("ls - list the files in a directory", " ls <directory>\n\nList the files in C<directory> (relative to the root directory,\nthere is no cwd).  The '.' and '..' entries are not returned, but\nhidden files are shown.\n\nThis command is mostly useful for interactive sessions.  Programs\nshould probably use C<readdir> instead.");
127   else
128   if (strcasecmp (cmd, "list_devices") == 0 || strcasecmp (cmd, "list-devices") == 0)
129     pod2text ("list-devices - list the block devices", " list-devices\n\nList all the block devices.\n\nThe full block device names are returned, eg. C</dev/sda>");
130   else
131   if (strcasecmp (cmd, "list_partitions") == 0 || strcasecmp (cmd, "list-partitions") == 0)
132     pod2text ("list-partitions - list the partitions", " list-partitions\n\nList all the partitions detected on all block devices.\n\nThe full partition device names are returned, eg. C</dev/sda1>\n\nThis does not return logical volumes.  For that you will need to\ncall C<lvs>.");
133   else
134   if (strcasecmp (cmd, "pvs") == 0)
135     pod2text ("pvs - list the LVM physical volumes (PVs)", " pvs\n\nList all the physical volumes detected.  This is the equivalent\nof the L<pvs(8)> command.\n\nThis returns a list of just the device names that contain\nPVs (eg. C</dev/sda2>).\n\nSee also C<pvs_full>.");
136   else
137   if (strcasecmp (cmd, "vgs") == 0)
138     pod2text ("vgs - list the LVM volume groups (VGs)", " vgs\n\nList all the volumes groups detected.  This is the equivalent\nof the L<vgs(8)> command.\n\nThis returns a list of just the volume group names that were\ndetected (eg. C<VolGroup00>).\n\nSee also C<vgs_full>.");
139   else
140   if (strcasecmp (cmd, "lvs") == 0)
141     pod2text ("lvs - list the LVM logical volumes (LVs)", " lvs\n\nList all the logical volumes detected.  This is the equivalent\nof the L<lvs(8)> command.\n\nThis returns a list of the logical volume device names\n(eg. C</dev/VolGroup00/LogVol00>).\n\nSee also C<lvs_full>.");
142   else
143   if (strcasecmp (cmd, "pvs_full") == 0 || strcasecmp (cmd, "pvs-full") == 0)
144     pod2text ("pvs-full - list the LVM physical volumes (PVs)", " pvs-full\n\nList all the physical volumes detected.  This is the equivalent\nof the L<pvs(8)> command.  The \"full\" version includes all fields.");
145   else
146   if (strcasecmp (cmd, "vgs_full") == 0 || strcasecmp (cmd, "vgs-full") == 0)
147     pod2text ("vgs-full - list the LVM volume groups (VGs)", " vgs-full\n\nList all the volumes groups detected.  This is the equivalent\nof the L<vgs(8)> command.  The \"full\" version includes all fields.");
148   else
149   if (strcasecmp (cmd, "lvs_full") == 0 || strcasecmp (cmd, "lvs-full") == 0)
150     pod2text ("lvs-full - list the LVM logical volumes (LVs)", " lvs-full\n\nList all the logical volumes detected.  This is the equivalent\nof the L<lvs(8)> command.  The \"full\" version includes all fields.");
151   else
152   if (strcasecmp (cmd, "read_lines") == 0 || strcasecmp (cmd, "read-lines") == 0)
153     pod2text ("read-lines - read file as lines", " read-lines <path>\n\nReturn the contents of the file named C<path>.\n\nThe file contents are returned as a list of lines.  Trailing\nC<LF> and C<CRLF> character sequences are I<not> returned.\n\nNote that this function cannot correctly handle binary files\n(specifically, files containing C<\\0> character which is treated\nas end of line).  For those you need to use the C<read_file>\nfunction which has a more complex interface.");
154   else
155   if (strcasecmp (cmd, "aug_init") == 0 || strcasecmp (cmd, "aug-init") == 0)
156     pod2text ("aug-init - create a new Augeas handle", " aug-init <root> <flags>\n\nCreate a new Augeas handle for editing configuration files.\nIf there was any previous Augeas handle associated with this\nguestfs session, then it is closed.\n\nYou must call this before using any other C<aug_*>\ncommands.\n\nC<root> is the filesystem root.  C<root> must not be NULL,\nuse C</> instead.\n\nThe flags are the same as the flags defined in\nE<lt>augeas.hE<gt>, the logical I<or> of the following\nintegers:\n\n=over 4\n\n=item 1 C<AUG_SAVE_BACKUP>\n\nKeep the original file with a C<.augsave> extension.\n\n=item 2 C<AUG_SAVE_NEWFILE>\n\nSave changes into a file with extension C<.augnew>, and\ndo not overwrite original.  Overrides C<AUG_SAVE_BACKUP>.\n\n=item 4 C<AUG_TYPE_CHECK>\n\nTypecheck lenses (can be expensive).\n\n=item 8 C<AUG_NO_STDINC>\n\nDo not use standard load path for modules.\n\n=item 16 C<AUG_SAVE_NOOP>\n\nMake save a no-op, just record what would have been changed.\n\n=item 32 C<AUG_NO_LOAD>\n\nDo not load the tree in C<aug_init>.\n\n=back\n\nTo close the handle, you can call C<aug_close>.\n\nTo find out more about Augeas, see L<http://augeas.net/>.");
157   else
158   if (strcasecmp (cmd, "aug_close") == 0 || strcasecmp (cmd, "aug-close") == 0)
159     pod2text ("aug-close - close the current Augeas handle", " aug-close\n\nClose the current Augeas handle and free up any resources\nused by it.  After calling this, you have to call\nC<aug_init> again before you can use any other\nAugeas functions.");
160   else
161   if (strcasecmp (cmd, "aug_defvar") == 0 || strcasecmp (cmd, "aug-defvar") == 0)
162     pod2text ("aug-defvar - define an Augeas variable", " aug-defvar <name> <expr>\n\nDefines an Augeas variable C<name> whose value is the result\nof evaluating C<expr>.  If C<expr> is NULL, then C<name> is\nundefined.\n\nOn success this returns the number of nodes in C<expr>, or\nC<0> if C<expr> evaluates to something which is not a nodeset.");
163   else
164   if (strcasecmp (cmd, "aug_defnode") == 0 || strcasecmp (cmd, "aug-defnode") == 0)
165     pod2text ("aug-defnode - define an Augeas node", " aug-defnode <name> <expr> <val>\n\nDefines a variable C<name> whose value is the result of\nevaluating C<expr>.\n\nIf C<expr> evaluates to an empty nodeset, a node is created,\nequivalent to calling C<aug_set> C<expr>, C<value>.\nC<name> will be the nodeset containing that single node.\n\nOn success this returns a pair containing the\nnumber of nodes in the nodeset, and a boolean flag\nif a node was created.");
166   else
167   if (strcasecmp (cmd, "aug_get") == 0 || strcasecmp (cmd, "aug-get") == 0)
168     pod2text ("aug-get - look up the value of an Augeas path", " aug-get <path>\n\nLook up the value associated with C<path>.  If C<path>\nmatches exactly one node, the C<value> is returned.");
169   else
170   if (strcasecmp (cmd, "aug_set") == 0 || strcasecmp (cmd, "aug-set") == 0)
171     pod2text ("aug-set - set Augeas path to value", " aug-set <path> <val>\n\nSet the value associated with C<path> to C<value>.");
172   else
173   if (strcasecmp (cmd, "aug_insert") == 0 || strcasecmp (cmd, "aug-insert") == 0)
174     pod2text ("aug-insert - insert a sibling Augeas node", " aug-insert <path> <label> <before>\n\nCreate a new sibling C<label> for C<path>, inserting it into\nthe tree before or after C<path> (depending on the boolean\nflag C<before>).\n\nC<path> must match exactly one existing node in the tree, and\nC<label> must be a label, ie. not contain C</>, C<*> or end\nwith a bracketed index C<[N]>.");
175   else
176   if (strcasecmp (cmd, "aug_rm") == 0 || strcasecmp (cmd, "aug-rm") == 0)
177     pod2text ("aug-rm - remove an Augeas path", " aug-rm <path>\n\nRemove C<path> and all of its children.\n\nOn success this returns the number of entries which were removed.");
178   else
179   if (strcasecmp (cmd, "aug_mv") == 0 || strcasecmp (cmd, "aug-mv") == 0)
180     pod2text ("aug-mv - move Augeas node", " aug-mv <src> <dest>\n\nMove the node C<src> to C<dest>.  C<src> must match exactly\none node.  C<dest> is overwritten if it exists.");
181   else
182   if (strcasecmp (cmd, "aug_match") == 0 || strcasecmp (cmd, "aug-match") == 0)
183     pod2text ("aug-match - return Augeas nodes which match path", " aug-match <path>\n\nReturns a list of paths which match the path expression C<path>.\nThe returned paths are sufficiently qualified so that they match\nexactly one node in the current tree.");
184   else
185   if (strcasecmp (cmd, "aug_save") == 0 || strcasecmp (cmd, "aug-save") == 0)
186     pod2text ("aug-save - write all pending Augeas changes to disk", " aug-save\n\nThis writes all pending changes to disk.\n\nThe flags which were passed to C<aug_init> affect exactly\nhow files are saved.");
187   else
188   if (strcasecmp (cmd, "aug_load") == 0 || strcasecmp (cmd, "aug-load") == 0)
189     pod2text ("aug-load - load files into the tree", " aug-load\n\nLoad files into the tree.\n\nSee C<aug_load> in the Augeas documentation for the full gory\ndetails.");
190   else
191     display_builtin_command (cmd);
192 }
193
194 static void print_pv (struct guestfs_lvm_pv *pv)
195 {
196   int i;
197
198   printf ("pv_name: %s\n", pv->pv_name);
199   printf ("pv_uuid: ");
200   for (i = 0; i < 32; ++i)
201     printf ("%c", pv->pv_uuid[i]);
202   printf ("\n");
203   printf ("pv_fmt: %s\n", pv->pv_fmt);
204   printf ("pv_size: %" PRIu64 "\n", pv->pv_size);
205   printf ("dev_size: %" PRIu64 "\n", pv->dev_size);
206   printf ("pv_free: %" PRIu64 "\n", pv->pv_free);
207   printf ("pv_used: %" PRIu64 "\n", pv->pv_used);
208   printf ("pv_attr: %s\n", pv->pv_attr);
209   printf ("pv_pe_count: %" PRIi64 "\n", pv->pv_pe_count);
210   printf ("pv_pe_alloc_count: %" PRIi64 "\n", pv->pv_pe_alloc_count);
211   printf ("pv_tags: %s\n", pv->pv_tags);
212   printf ("pe_start: %" PRIu64 "\n", pv->pe_start);
213   printf ("pv_mda_count: %" PRIi64 "\n", pv->pv_mda_count);
214   printf ("pv_mda_free: %" PRIu64 "\n", pv->pv_mda_free);
215 }
216
217 static void print_pv_list (struct guestfs_lvm_pv_list *pvs)
218 {
219   int i;
220
221   for (i = 0; i < pvs->len; ++i)
222     print_pv (&pvs->val[i]);
223 }
224
225 static void print_vg (struct guestfs_lvm_vg *vg)
226 {
227   int i;
228
229   printf ("vg_name: %s\n", vg->vg_name);
230   printf ("vg_uuid: ");
231   for (i = 0; i < 32; ++i)
232     printf ("%c", vg->vg_uuid[i]);
233   printf ("\n");
234   printf ("vg_fmt: %s\n", vg->vg_fmt);
235   printf ("vg_attr: %s\n", vg->vg_attr);
236   printf ("vg_size: %" PRIu64 "\n", vg->vg_size);
237   printf ("vg_free: %" PRIu64 "\n", vg->vg_free);
238   printf ("vg_sysid: %s\n", vg->vg_sysid);
239   printf ("vg_extent_size: %" PRIu64 "\n", vg->vg_extent_size);
240   printf ("vg_extent_count: %" PRIi64 "\n", vg->vg_extent_count);
241   printf ("vg_free_count: %" PRIi64 "\n", vg->vg_free_count);
242   printf ("max_lv: %" PRIi64 "\n", vg->max_lv);
243   printf ("max_pv: %" PRIi64 "\n", vg->max_pv);
244   printf ("pv_count: %" PRIi64 "\n", vg->pv_count);
245   printf ("lv_count: %" PRIi64 "\n", vg->lv_count);
246   printf ("snap_count: %" PRIi64 "\n", vg->snap_count);
247   printf ("vg_seqno: %" PRIi64 "\n", vg->vg_seqno);
248   printf ("vg_tags: %s\n", vg->vg_tags);
249   printf ("vg_mda_count: %" PRIi64 "\n", vg->vg_mda_count);
250   printf ("vg_mda_free: %" PRIu64 "\n", vg->vg_mda_free);
251 }
252
253 static void print_vg_list (struct guestfs_lvm_vg_list *vgs)
254 {
255   int i;
256
257   for (i = 0; i < vgs->len; ++i)
258     print_vg (&vgs->val[i]);
259 }
260
261 static void print_lv (struct guestfs_lvm_lv *lv)
262 {
263   int i;
264
265   printf ("lv_name: %s\n", lv->lv_name);
266   printf ("lv_uuid: ");
267   for (i = 0; i < 32; ++i)
268     printf ("%c", lv->lv_uuid[i]);
269   printf ("\n");
270   printf ("lv_attr: %s\n", lv->lv_attr);
271   printf ("lv_major: %" PRIi64 "\n", lv->lv_major);
272   printf ("lv_minor: %" PRIi64 "\n", lv->lv_minor);
273   printf ("lv_kernel_major: %" PRIi64 "\n", lv->lv_kernel_major);
274   printf ("lv_kernel_minor: %" PRIi64 "\n", lv->lv_kernel_minor);
275   printf ("lv_size: %" PRIu64 "\n", lv->lv_size);
276   printf ("seg_count: %" PRIi64 "\n", lv->seg_count);
277   printf ("origin: %s\n", lv->origin);
278   if (lv->snap_percent >= 0) printf ("snap_percent: %g %%\n", lv->snap_percent);
279   else printf ("snap_percent: \n");
280   if (lv->copy_percent >= 0) printf ("copy_percent: %g %%\n", lv->copy_percent);
281   else printf ("copy_percent: \n");
282   printf ("move_pv: %s\n", lv->move_pv);
283   printf ("lv_tags: %s\n", lv->lv_tags);
284   printf ("mirror_log: %s\n", lv->mirror_log);
285   printf ("modules: %s\n", lv->modules);
286 }
287
288 static void print_lv_list (struct guestfs_lvm_lv_list *lvs)
289 {
290   int i;
291
292   for (i = 0; i < lvs->len; ++i)
293     print_lv (&lvs->val[i]);
294 }
295
296 static int run_launch (const char *cmd, int argc, char *argv[])
297 {
298   int r;
299   if (argc != 0) {
300     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
301     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
302     return -1;
303   }
304   r = launch (g);
305   return r;
306 }
307
308 static int run_kill_subprocess (const char *cmd, int argc, char *argv[])
309 {
310   int r;
311   if (argc != 0) {
312     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
313     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
314     return -1;
315   }
316   r = guestfs_kill_subprocess (g);
317   return r;
318 }
319
320 static int run_add_drive (const char *cmd, int argc, char *argv[])
321 {
322   int r;
323   const char *filename;
324   if (argc != 1) {
325     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
326     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
327     return -1;
328   }
329   filename = argv[0];
330   r = guestfs_add_drive (g, filename);
331   return r;
332 }
333
334 static int run_add_cdrom (const char *cmd, int argc, char *argv[])
335 {
336   int r;
337   const char *filename;
338   if (argc != 1) {
339     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
340     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
341     return -1;
342   }
343   filename = argv[0];
344   r = guestfs_add_cdrom (g, filename);
345   return r;
346 }
347
348 static int run_config (const char *cmd, int argc, char *argv[])
349 {
350   int r;
351   const char *qemuparam;
352   const char *qemuvalue;
353   if (argc != 2) {
354     fprintf (stderr, "%s should have 2 parameter(s)\n", cmd);
355     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
356     return -1;
357   }
358   qemuparam = argv[0];
359   qemuvalue = strcmp (argv[1], "") != 0 ? argv[1] : NULL;
360   r = guestfs_config (g, qemuparam, qemuvalue);
361   return r;
362 }
363
364 static int run_set_path (const char *cmd, int argc, char *argv[])
365 {
366   int r;
367   const char *path;
368   if (argc != 1) {
369     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
370     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
371     return -1;
372   }
373   path = argv[0];
374   r = guestfs_set_path (g, path);
375   return r;
376 }
377
378 static int run_get_path (const char *cmd, int argc, char *argv[])
379 {
380   const char *r;
381   if (argc != 0) {
382     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
383     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
384     return -1;
385   }
386   r = guestfs_get_path (g);
387   if (r == NULL) return -1;
388   printf ("%s\n", r);
389   return 0;
390 }
391
392 static int run_set_autosync (const char *cmd, int argc, char *argv[])
393 {
394   int r;
395   int autosync;
396   if (argc != 1) {
397     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
398     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
399     return -1;
400   }
401   autosync = is_true (argv[0]) ? 1 : 0;
402   r = guestfs_set_autosync (g, autosync);
403   return r;
404 }
405
406 static int run_get_autosync (const char *cmd, int argc, char *argv[])
407 {
408   int r;
409   if (argc != 0) {
410     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
411     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
412     return -1;
413   }
414   r = guestfs_get_autosync (g);
415   if (r == -1) return -1;
416   if (r) printf ("true\n"); else printf ("false\n");
417   return 0;
418 }
419
420 static int run_set_verbose (const char *cmd, int argc, char *argv[])
421 {
422   int r;
423   int verbose;
424   if (argc != 1) {
425     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
426     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
427     return -1;
428   }
429   verbose = is_true (argv[0]) ? 1 : 0;
430   r = guestfs_set_verbose (g, verbose);
431   return r;
432 }
433
434 static int run_get_verbose (const char *cmd, int argc, char *argv[])
435 {
436   int r;
437   if (argc != 0) {
438     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
439     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
440     return -1;
441   }
442   r = guestfs_get_verbose (g);
443   if (r == -1) return -1;
444   if (r) printf ("true\n"); else printf ("false\n");
445   return 0;
446 }
447
448 static int run_mount (const char *cmd, int argc, char *argv[])
449 {
450   int r;
451   const char *device;
452   const char *mountpoint;
453   if (argc != 2) {
454     fprintf (stderr, "%s should have 2 parameter(s)\n", cmd);
455     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
456     return -1;
457   }
458   device = argv[0];
459   mountpoint = argv[1];
460   r = guestfs_mount (g, device, mountpoint);
461   return r;
462 }
463
464 static int run_sync (const char *cmd, int argc, char *argv[])
465 {
466   int r;
467   if (argc != 0) {
468     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
469     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
470     return -1;
471   }
472   r = guestfs_sync (g);
473   return r;
474 }
475
476 static int run_touch (const char *cmd, int argc, char *argv[])
477 {
478   int r;
479   const char *path;
480   if (argc != 1) {
481     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
482     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
483     return -1;
484   }
485   path = argv[0];
486   r = guestfs_touch (g, path);
487   return r;
488 }
489
490 static int run_cat (const char *cmd, int argc, char *argv[])
491 {
492   char *r;
493   const char *path;
494   if (argc != 1) {
495     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
496     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
497     return -1;
498   }
499   path = argv[0];
500   r = guestfs_cat (g, path);
501   if (r == NULL) return -1;
502   printf ("%s\n", r);
503   free (r);
504   return 0;
505 }
506
507 static int run_ll (const char *cmd, int argc, char *argv[])
508 {
509   char *r;
510   const char *directory;
511   if (argc != 1) {
512     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
513     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
514     return -1;
515   }
516   directory = argv[0];
517   r = guestfs_ll (g, directory);
518   if (r == NULL) return -1;
519   printf ("%s\n", r);
520   free (r);
521   return 0;
522 }
523
524 static int run_ls (const char *cmd, int argc, char *argv[])
525 {
526   char **r;
527   const char *directory;
528   if (argc != 1) {
529     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
530     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
531     return -1;
532   }
533   directory = argv[0];
534   r = guestfs_ls (g, directory);
535   if (r == NULL) return -1;
536   print_strings (r);
537   free_strings (r);
538   return 0;
539 }
540
541 static int run_list_devices (const char *cmd, int argc, char *argv[])
542 {
543   char **r;
544   if (argc != 0) {
545     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
546     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
547     return -1;
548   }
549   r = guestfs_list_devices (g);
550   if (r == NULL) return -1;
551   print_strings (r);
552   free_strings (r);
553   return 0;
554 }
555
556 static int run_list_partitions (const char *cmd, int argc, char *argv[])
557 {
558   char **r;
559   if (argc != 0) {
560     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
561     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
562     return -1;
563   }
564   r = guestfs_list_partitions (g);
565   if (r == NULL) return -1;
566   print_strings (r);
567   free_strings (r);
568   return 0;
569 }
570
571 static int run_pvs (const char *cmd, int argc, char *argv[])
572 {
573   char **r;
574   if (argc != 0) {
575     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
576     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
577     return -1;
578   }
579   r = guestfs_pvs (g);
580   if (r == NULL) return -1;
581   print_strings (r);
582   free_strings (r);
583   return 0;
584 }
585
586 static int run_vgs (const char *cmd, int argc, char *argv[])
587 {
588   char **r;
589   if (argc != 0) {
590     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
591     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
592     return -1;
593   }
594   r = guestfs_vgs (g);
595   if (r == NULL) return -1;
596   print_strings (r);
597   free_strings (r);
598   return 0;
599 }
600
601 static int run_lvs (const char *cmd, int argc, char *argv[])
602 {
603   char **r;
604   if (argc != 0) {
605     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
606     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
607     return -1;
608   }
609   r = guestfs_lvs (g);
610   if (r == NULL) return -1;
611   print_strings (r);
612   free_strings (r);
613   return 0;
614 }
615
616 static int run_pvs_full (const char *cmd, int argc, char *argv[])
617 {
618   struct guestfs_lvm_pv_list *r;
619   if (argc != 0) {
620     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
621     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
622     return -1;
623   }
624   r = guestfs_pvs_full (g);
625   if (r == NULL) return -1;
626   print_pv_list (r);
627   guestfs_free_lvm_pv_list (r);
628   return 0;
629 }
630
631 static int run_vgs_full (const char *cmd, int argc, char *argv[])
632 {
633   struct guestfs_lvm_vg_list *r;
634   if (argc != 0) {
635     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
636     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
637     return -1;
638   }
639   r = guestfs_vgs_full (g);
640   if (r == NULL) return -1;
641   print_vg_list (r);
642   guestfs_free_lvm_vg_list (r);
643   return 0;
644 }
645
646 static int run_lvs_full (const char *cmd, int argc, char *argv[])
647 {
648   struct guestfs_lvm_lv_list *r;
649   if (argc != 0) {
650     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
651     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
652     return -1;
653   }
654   r = guestfs_lvs_full (g);
655   if (r == NULL) return -1;
656   print_lv_list (r);
657   guestfs_free_lvm_lv_list (r);
658   return 0;
659 }
660
661 static int run_read_lines (const char *cmd, int argc, char *argv[])
662 {
663   char **r;
664   const char *path;
665   if (argc != 1) {
666     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
667     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
668     return -1;
669   }
670   path = argv[0];
671   r = guestfs_read_lines (g, path);
672   if (r == NULL) return -1;
673   print_strings (r);
674   free_strings (r);
675   return 0;
676 }
677
678 static int run_aug_init (const char *cmd, int argc, char *argv[])
679 {
680   int r;
681   const char *root;
682   int flags;
683   if (argc != 2) {
684     fprintf (stderr, "%s should have 2 parameter(s)\n", cmd);
685     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
686     return -1;
687   }
688   root = argv[0];
689   flags = atoi (argv[1]);
690   r = guestfs_aug_init (g, root, flags);
691   return r;
692 }
693
694 static int run_aug_close (const char *cmd, int argc, char *argv[])
695 {
696   int r;
697   if (argc != 0) {
698     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
699     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
700     return -1;
701   }
702   r = guestfs_aug_close (g);
703   return r;
704 }
705
706 static int run_aug_defvar (const char *cmd, int argc, char *argv[])
707 {
708   int r;
709   const char *name;
710   const char *expr;
711   if (argc != 2) {
712     fprintf (stderr, "%s should have 2 parameter(s)\n", cmd);
713     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
714     return -1;
715   }
716   name = argv[0];
717   expr = strcmp (argv[1], "") != 0 ? argv[1] : NULL;
718   r = guestfs_aug_defvar (g, name, expr);
719   if (r == -1) return -1;
720   if (r) printf ("%d\n", r);
721   return 0;
722 }
723
724 static int run_aug_defnode (const char *cmd, int argc, char *argv[])
725 {
726   struct guestfs_int_bool *r;
727   const char *name;
728   const char *expr;
729   const char *val;
730   if (argc != 3) {
731     fprintf (stderr, "%s should have 3 parameter(s)\n", cmd);
732     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
733     return -1;
734   }
735   name = argv[0];
736   expr = argv[1];
737   val = argv[2];
738   r = guestfs_aug_defnode (g, name, expr, val);
739   if (r == NULL) return -1;
740   printf ("%d, %s\n", r->i,
741     r->b ? "true" : "false");
742   guestfs_free_int_bool (r);
743   return 0;
744 }
745
746 static int run_aug_get (const char *cmd, int argc, char *argv[])
747 {
748   char *r;
749   const char *path;
750   if (argc != 1) {
751     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
752     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
753     return -1;
754   }
755   path = argv[0];
756   r = guestfs_aug_get (g, path);
757   if (r == NULL) return -1;
758   printf ("%s\n", r);
759   free (r);
760   return 0;
761 }
762
763 static int run_aug_set (const char *cmd, int argc, char *argv[])
764 {
765   int r;
766   const char *path;
767   const char *val;
768   if (argc != 2) {
769     fprintf (stderr, "%s should have 2 parameter(s)\n", cmd);
770     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
771     return -1;
772   }
773   path = argv[0];
774   val = argv[1];
775   r = guestfs_aug_set (g, path, val);
776   return r;
777 }
778
779 static int run_aug_insert (const char *cmd, int argc, char *argv[])
780 {
781   int r;
782   const char *path;
783   const char *label;
784   int before;
785   if (argc != 3) {
786     fprintf (stderr, "%s should have 3 parameter(s)\n", cmd);
787     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
788     return -1;
789   }
790   path = argv[0];
791   label = argv[1];
792   before = is_true (argv[2]) ? 1 : 0;
793   r = guestfs_aug_insert (g, path, label, before);
794   return r;
795 }
796
797 static int run_aug_rm (const char *cmd, int argc, char *argv[])
798 {
799   int r;
800   const char *path;
801   if (argc != 1) {
802     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
803     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
804     return -1;
805   }
806   path = argv[0];
807   r = guestfs_aug_rm (g, path);
808   if (r == -1) return -1;
809   if (r) printf ("%d\n", r);
810   return 0;
811 }
812
813 static int run_aug_mv (const char *cmd, int argc, char *argv[])
814 {
815   int r;
816   const char *src;
817   const char *dest;
818   if (argc != 2) {
819     fprintf (stderr, "%s should have 2 parameter(s)\n", cmd);
820     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
821     return -1;
822   }
823   src = argv[0];
824   dest = argv[1];
825   r = guestfs_aug_mv (g, src, dest);
826   return r;
827 }
828
829 static int run_aug_match (const char *cmd, int argc, char *argv[])
830 {
831   char **r;
832   const char *path;
833   if (argc != 1) {
834     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
835     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
836     return -1;
837   }
838   path = argv[0];
839   r = guestfs_aug_match (g, path);
840   if (r == NULL) return -1;
841   print_strings (r);
842   free_strings (r);
843   return 0;
844 }
845
846 static int run_aug_save (const char *cmd, int argc, char *argv[])
847 {
848   int r;
849   if (argc != 0) {
850     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
851     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
852     return -1;
853   }
854   r = guestfs_aug_save (g);
855   return r;
856 }
857
858 static int run_aug_load (const char *cmd, int argc, char *argv[])
859 {
860   int r;
861   if (argc != 0) {
862     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
863     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
864     return -1;
865   }
866   r = guestfs_aug_load (g);
867   return r;
868 }
869
870 int run_action (const char *cmd, int argc, char *argv[])
871 {
872   if (strcasecmp (cmd, "launch") == 0 || strcasecmp (cmd, "run") == 0)
873     return run_launch (cmd, argc, argv);
874   else
875   if (strcasecmp (cmd, "kill_subprocess") == 0 || strcasecmp (cmd, "kill-subprocess") == 0)
876     return run_kill_subprocess (cmd, argc, argv);
877   else
878   if (strcasecmp (cmd, "add_drive") == 0 || strcasecmp (cmd, "add-drive") == 0 || strcasecmp (cmd, "add") == 0)
879     return run_add_drive (cmd, argc, argv);
880   else
881   if (strcasecmp (cmd, "add_cdrom") == 0 || strcasecmp (cmd, "add-cdrom") == 0 || strcasecmp (cmd, "cdrom") == 0)
882     return run_add_cdrom (cmd, argc, argv);
883   else
884   if (strcasecmp (cmd, "config") == 0)
885     return run_config (cmd, argc, argv);
886   else
887   if (strcasecmp (cmd, "set_path") == 0 || strcasecmp (cmd, "set-path") == 0 || strcasecmp (cmd, "path") == 0)
888     return run_set_path (cmd, argc, argv);
889   else
890   if (strcasecmp (cmd, "get_path") == 0 || strcasecmp (cmd, "get-path") == 0)
891     return run_get_path (cmd, argc, argv);
892   else
893   if (strcasecmp (cmd, "set_autosync") == 0 || strcasecmp (cmd, "set-autosync") == 0 || strcasecmp (cmd, "autosync") == 0)
894     return run_set_autosync (cmd, argc, argv);
895   else
896   if (strcasecmp (cmd, "get_autosync") == 0 || strcasecmp (cmd, "get-autosync") == 0)
897     return run_get_autosync (cmd, argc, argv);
898   else
899   if (strcasecmp (cmd, "set_verbose") == 0 || strcasecmp (cmd, "set-verbose") == 0 || strcasecmp (cmd, "verbose") == 0)
900     return run_set_verbose (cmd, argc, argv);
901   else
902   if (strcasecmp (cmd, "get_verbose") == 0 || strcasecmp (cmd, "get-verbose") == 0)
903     return run_get_verbose (cmd, argc, argv);
904   else
905   if (strcasecmp (cmd, "mount") == 0)
906     return run_mount (cmd, argc, argv);
907   else
908   if (strcasecmp (cmd, "sync") == 0)
909     return run_sync (cmd, argc, argv);
910   else
911   if (strcasecmp (cmd, "touch") == 0)
912     return run_touch (cmd, argc, argv);
913   else
914   if (strcasecmp (cmd, "cat") == 0)
915     return run_cat (cmd, argc, argv);
916   else
917   if (strcasecmp (cmd, "ll") == 0)
918     return run_ll (cmd, argc, argv);
919   else
920   if (strcasecmp (cmd, "ls") == 0)
921     return run_ls (cmd, argc, argv);
922   else
923   if (strcasecmp (cmd, "list_devices") == 0 || strcasecmp (cmd, "list-devices") == 0)
924     return run_list_devices (cmd, argc, argv);
925   else
926   if (strcasecmp (cmd, "list_partitions") == 0 || strcasecmp (cmd, "list-partitions") == 0)
927     return run_list_partitions (cmd, argc, argv);
928   else
929   if (strcasecmp (cmd, "pvs") == 0)
930     return run_pvs (cmd, argc, argv);
931   else
932   if (strcasecmp (cmd, "vgs") == 0)
933     return run_vgs (cmd, argc, argv);
934   else
935   if (strcasecmp (cmd, "lvs") == 0)
936     return run_lvs (cmd, argc, argv);
937   else
938   if (strcasecmp (cmd, "pvs_full") == 0 || strcasecmp (cmd, "pvs-full") == 0)
939     return run_pvs_full (cmd, argc, argv);
940   else
941   if (strcasecmp (cmd, "vgs_full") == 0 || strcasecmp (cmd, "vgs-full") == 0)
942     return run_vgs_full (cmd, argc, argv);
943   else
944   if (strcasecmp (cmd, "lvs_full") == 0 || strcasecmp (cmd, "lvs-full") == 0)
945     return run_lvs_full (cmd, argc, argv);
946   else
947   if (strcasecmp (cmd, "read_lines") == 0 || strcasecmp (cmd, "read-lines") == 0)
948     return run_read_lines (cmd, argc, argv);
949   else
950   if (strcasecmp (cmd, "aug_init") == 0 || strcasecmp (cmd, "aug-init") == 0)
951     return run_aug_init (cmd, argc, argv);
952   else
953   if (strcasecmp (cmd, "aug_close") == 0 || strcasecmp (cmd, "aug-close") == 0)
954     return run_aug_close (cmd, argc, argv);
955   else
956   if (strcasecmp (cmd, "aug_defvar") == 0 || strcasecmp (cmd, "aug-defvar") == 0)
957     return run_aug_defvar (cmd, argc, argv);
958   else
959   if (strcasecmp (cmd, "aug_defnode") == 0 || strcasecmp (cmd, "aug-defnode") == 0)
960     return run_aug_defnode (cmd, argc, argv);
961   else
962   if (strcasecmp (cmd, "aug_get") == 0 || strcasecmp (cmd, "aug-get") == 0)
963     return run_aug_get (cmd, argc, argv);
964   else
965   if (strcasecmp (cmd, "aug_set") == 0 || strcasecmp (cmd, "aug-set") == 0)
966     return run_aug_set (cmd, argc, argv);
967   else
968   if (strcasecmp (cmd, "aug_insert") == 0 || strcasecmp (cmd, "aug-insert") == 0)
969     return run_aug_insert (cmd, argc, argv);
970   else
971   if (strcasecmp (cmd, "aug_rm") == 0 || strcasecmp (cmd, "aug-rm") == 0)
972     return run_aug_rm (cmd, argc, argv);
973   else
974   if (strcasecmp (cmd, "aug_mv") == 0 || strcasecmp (cmd, "aug-mv") == 0)
975     return run_aug_mv (cmd, argc, argv);
976   else
977   if (strcasecmp (cmd, "aug_match") == 0 || strcasecmp (cmd, "aug-match") == 0)
978     return run_aug_match (cmd, argc, argv);
979   else
980   if (strcasecmp (cmd, "aug_save") == 0 || strcasecmp (cmd, "aug-save") == 0)
981     return run_aug_save (cmd, argc, argv);
982   else
983   if (strcasecmp (cmd, "aug_load") == 0 || strcasecmp (cmd, "aug-load") == 0)
984     return run_aug_load (cmd, argc, argv);
985   else
986     {
987       fprintf (stderr, "%s: unknown command\n", cmd);
988       return -1;
989     }
990   return 0;
991 }
992