f0c0458e3a1720745430013218b35ce3fe20c2ee
[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-ls", "list Augeas nodes under a path");
44   printf ("%-20s %s\n", "aug-match", "return Augeas nodes which match path");
45   printf ("%-20s %s\n", "aug-mv", "move Augeas node");
46   printf ("%-20s %s\n", "aug-rm", "remove an Augeas path");
47   printf ("%-20s %s\n", "aug-save", "write all pending Augeas changes to disk");
48   printf ("%-20s %s\n", "aug-set", "set Augeas path to value");
49   printf ("%-20s %s\n", "cat", "list the contents of a file");
50   printf ("%-20s %s\n", "config", "add qemu parameters");
51   printf ("%-20s %s\n", "get-autosync", "get autosync mode");
52   printf ("%-20s %s\n", "get-path", "get the search path");
53   printf ("%-20s %s\n", "get-verbose", "get verbose mode");
54   printf ("%-20s %s\n", "kill-subprocess", "kill the qemu subprocess");
55   printf ("%-20s %s\n", "launch", "launch the qemu subprocess");
56   printf ("%-20s %s\n", "list-devices", "list the block devices");
57   printf ("%-20s %s\n", "list-partitions", "list the partitions");
58   printf ("%-20s %s\n", "ll", "list the files in a directory (long format)");
59   printf ("%-20s %s\n", "ls", "list the files in a directory");
60   printf ("%-20s %s\n", "lvs", "list the LVM logical volumes (LVs)");
61   printf ("%-20s %s\n", "lvs-full", "list the LVM logical volumes (LVs)");
62   printf ("%-20s %s\n", "mount", "mount a guest disk at a position in the filesystem");
63   printf ("%-20s %s\n", "pvs", "list the LVM physical volumes (PVs)");
64   printf ("%-20s %s\n", "pvs-full", "list the LVM physical volumes (PVs)");
65   printf ("%-20s %s\n", "read-lines", "read file as lines");
66   printf ("%-20s %s\n", "set-autosync", "set autosync mode");
67   printf ("%-20s %s\n", "set-path", "set the search path");
68   printf ("%-20s %s\n", "set-verbose", "set verbose mode");
69   printf ("%-20s %s\n", "sync", "sync disks, writes are flushed through to the disk image");
70   printf ("%-20s %s\n", "touch", "update file timestamps or create a new file");
71   printf ("%-20s %s\n", "vgs", "list the LVM volume groups (VGs)");
72   printf ("%-20s %s\n", "vgs-full", "list the LVM volume groups (VGs)");
73   printf ("    Use -h <cmd> / help <cmd> to show detailed help for a command.\n");
74 }
75
76 void display_command (const char *cmd)
77 {
78   if (strcasecmp (cmd, "launch") == 0 || strcasecmp (cmd, "run") == 0)
79     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.");
80   else
81   if (strcasecmp (cmd, "kill_subprocess") == 0 || strcasecmp (cmd, "kill-subprocess") == 0)
82     pod2text ("kill-subprocess - kill the qemu subprocess", " kill-subprocess\n\nThis kills the qemu subprocess.  You should never need to call this.");
83   else
84   if (strcasecmp (cmd, "add_drive") == 0 || strcasecmp (cmd, "add-drive") == 0 || strcasecmp (cmd, "add") == 0)
85     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.");
86   else
87   if (strcasecmp (cmd, "add_cdrom") == 0 || strcasecmp (cmd, "add-cdrom") == 0 || strcasecmp (cmd, "cdrom") == 0)
88     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.");
89   else
90   if (strcasecmp (cmd, "config") == 0)
91     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.");
92   else
93   if (strcasecmp (cmd, "set_path") == 0 || strcasecmp (cmd, "set-path") == 0 || strcasecmp (cmd, "path") == 0)
94     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.");
95   else
96   if (strcasecmp (cmd, "get_path") == 0 || strcasecmp (cmd, "get-path") == 0)
97     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.");
98   else
99   if (strcasecmp (cmd, "set_autosync") == 0 || strcasecmp (cmd, "set-autosync") == 0 || strcasecmp (cmd, "autosync") == 0)
100     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.");
101   else
102   if (strcasecmp (cmd, "get_autosync") == 0 || strcasecmp (cmd, "get-autosync") == 0)
103     pod2text ("get-autosync - get autosync mode", " get-autosync\n\nGet the autosync flag.");
104   else
105   if (strcasecmp (cmd, "set_verbose") == 0 || strcasecmp (cmd, "set-verbose") == 0 || strcasecmp (cmd, "verbose") == 0)
106     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.");
107   else
108   if (strcasecmp (cmd, "get_verbose") == 0 || strcasecmp (cmd, "get-verbose") == 0)
109     pod2text ("get-verbose - get verbose mode", " get-verbose\n\nThis returns the verbose messages flag.");
110   else
111   if (strcasecmp (cmd, "mount") == 0)
112     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.");
113   else
114   if (strcasecmp (cmd, "sync") == 0)
115     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.");
116   else
117   if (strcasecmp (cmd, "touch") == 0)
118     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.");
119   else
120   if (strcasecmp (cmd, "cat") == 0)
121     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.");
122   else
123   if (strcasecmp (cmd, "ll") == 0)
124     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.");
125   else
126   if (strcasecmp (cmd, "ls") == 0)
127     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.");
128   else
129   if (strcasecmp (cmd, "list_devices") == 0 || strcasecmp (cmd, "list-devices") == 0)
130     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>");
131   else
132   if (strcasecmp (cmd, "list_partitions") == 0 || strcasecmp (cmd, "list-partitions") == 0)
133     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>.");
134   else
135   if (strcasecmp (cmd, "pvs") == 0)
136     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>.");
137   else
138   if (strcasecmp (cmd, "vgs") == 0)
139     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>.");
140   else
141   if (strcasecmp (cmd, "lvs") == 0)
142     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>.");
143   else
144   if (strcasecmp (cmd, "pvs_full") == 0 || strcasecmp (cmd, "pvs-full") == 0)
145     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.");
146   else
147   if (strcasecmp (cmd, "vgs_full") == 0 || strcasecmp (cmd, "vgs-full") == 0)
148     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.");
149   else
150   if (strcasecmp (cmd, "lvs_full") == 0 || strcasecmp (cmd, "lvs-full") == 0)
151     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.");
152   else
153   if (strcasecmp (cmd, "read_lines") == 0 || strcasecmp (cmd, "read-lines") == 0)
154     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.");
155   else
156   if (strcasecmp (cmd, "aug_init") == 0 || strcasecmp (cmd, "aug-init") == 0)
157     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 C<AUG_SAVE_BACKUP> = 1\n\nKeep the original file with a C<.augsave> extension.\n\n=item C<AUG_SAVE_NEWFILE> = 2\n\nSave changes into a file with extension C<.augnew>, and\ndo not overwrite original.  Overrides C<AUG_SAVE_BACKUP>.\n\n=item C<AUG_TYPE_CHECK> = 4\n\nTypecheck lenses (can be expensive).\n\n=item C<AUG_NO_STDINC> = 8\n\nDo not use standard load path for modules.\n\n=item C<AUG_SAVE_NOOP> = 16\n\nMake save a no-op, just record what would have been changed.\n\n=item C<AUG_NO_LOAD> = 32\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/>.");
158   else
159   if (strcasecmp (cmd, "aug_close") == 0 || strcasecmp (cmd, "aug-close") == 0)
160     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.");
161   else
162   if (strcasecmp (cmd, "aug_defvar") == 0 || strcasecmp (cmd, "aug-defvar") == 0)
163     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.");
164   else
165   if (strcasecmp (cmd, "aug_defnode") == 0 || strcasecmp (cmd, "aug-defnode") == 0)
166     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.");
167   else
168   if (strcasecmp (cmd, "aug_get") == 0 || strcasecmp (cmd, "aug-get") == 0)
169     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.");
170   else
171   if (strcasecmp (cmd, "aug_set") == 0 || strcasecmp (cmd, "aug-set") == 0)
172     pod2text ("aug-set - set Augeas path to value", " aug-set <path> <val>\n\nSet the value associated with C<path> to C<value>.");
173   else
174   if (strcasecmp (cmd, "aug_insert") == 0 || strcasecmp (cmd, "aug-insert") == 0)
175     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]>.");
176   else
177   if (strcasecmp (cmd, "aug_rm") == 0 || strcasecmp (cmd, "aug-rm") == 0)
178     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.");
179   else
180   if (strcasecmp (cmd, "aug_mv") == 0 || strcasecmp (cmd, "aug-mv") == 0)
181     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.");
182   else
183   if (strcasecmp (cmd, "aug_match") == 0 || strcasecmp (cmd, "aug-match") == 0)
184     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.");
185   else
186   if (strcasecmp (cmd, "aug_save") == 0 || strcasecmp (cmd, "aug-save") == 0)
187     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.");
188   else
189   if (strcasecmp (cmd, "aug_load") == 0 || strcasecmp (cmd, "aug-load") == 0)
190     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.");
191   else
192   if (strcasecmp (cmd, "aug_ls") == 0 || strcasecmp (cmd, "aug-ls") == 0)
193     pod2text ("aug-ls - list Augeas nodes under a path", " aug-ls <path>\n\nThis is just a shortcut for listing C<aug_match>\nC<path/*> and sorting the resulting nodes into alphabetical order.");
194   else
195     display_builtin_command (cmd);
196 }
197
198 static void print_pv (struct guestfs_lvm_pv *pv)
199 {
200   int i;
201
202   printf ("pv_name: %s\n", pv->pv_name);
203   printf ("pv_uuid: ");
204   for (i = 0; i < 32; ++i)
205     printf ("%c", pv->pv_uuid[i]);
206   printf ("\n");
207   printf ("pv_fmt: %s\n", pv->pv_fmt);
208   printf ("pv_size: %" PRIu64 "\n", pv->pv_size);
209   printf ("dev_size: %" PRIu64 "\n", pv->dev_size);
210   printf ("pv_free: %" PRIu64 "\n", pv->pv_free);
211   printf ("pv_used: %" PRIu64 "\n", pv->pv_used);
212   printf ("pv_attr: %s\n", pv->pv_attr);
213   printf ("pv_pe_count: %" PRIi64 "\n", pv->pv_pe_count);
214   printf ("pv_pe_alloc_count: %" PRIi64 "\n", pv->pv_pe_alloc_count);
215   printf ("pv_tags: %s\n", pv->pv_tags);
216   printf ("pe_start: %" PRIu64 "\n", pv->pe_start);
217   printf ("pv_mda_count: %" PRIi64 "\n", pv->pv_mda_count);
218   printf ("pv_mda_free: %" PRIu64 "\n", pv->pv_mda_free);
219 }
220
221 static void print_pv_list (struct guestfs_lvm_pv_list *pvs)
222 {
223   int i;
224
225   for (i = 0; i < pvs->len; ++i)
226     print_pv (&pvs->val[i]);
227 }
228
229 static void print_vg (struct guestfs_lvm_vg *vg)
230 {
231   int i;
232
233   printf ("vg_name: %s\n", vg->vg_name);
234   printf ("vg_uuid: ");
235   for (i = 0; i < 32; ++i)
236     printf ("%c", vg->vg_uuid[i]);
237   printf ("\n");
238   printf ("vg_fmt: %s\n", vg->vg_fmt);
239   printf ("vg_attr: %s\n", vg->vg_attr);
240   printf ("vg_size: %" PRIu64 "\n", vg->vg_size);
241   printf ("vg_free: %" PRIu64 "\n", vg->vg_free);
242   printf ("vg_sysid: %s\n", vg->vg_sysid);
243   printf ("vg_extent_size: %" PRIu64 "\n", vg->vg_extent_size);
244   printf ("vg_extent_count: %" PRIi64 "\n", vg->vg_extent_count);
245   printf ("vg_free_count: %" PRIi64 "\n", vg->vg_free_count);
246   printf ("max_lv: %" PRIi64 "\n", vg->max_lv);
247   printf ("max_pv: %" PRIi64 "\n", vg->max_pv);
248   printf ("pv_count: %" PRIi64 "\n", vg->pv_count);
249   printf ("lv_count: %" PRIi64 "\n", vg->lv_count);
250   printf ("snap_count: %" PRIi64 "\n", vg->snap_count);
251   printf ("vg_seqno: %" PRIi64 "\n", vg->vg_seqno);
252   printf ("vg_tags: %s\n", vg->vg_tags);
253   printf ("vg_mda_count: %" PRIi64 "\n", vg->vg_mda_count);
254   printf ("vg_mda_free: %" PRIu64 "\n", vg->vg_mda_free);
255 }
256
257 static void print_vg_list (struct guestfs_lvm_vg_list *vgs)
258 {
259   int i;
260
261   for (i = 0; i < vgs->len; ++i)
262     print_vg (&vgs->val[i]);
263 }
264
265 static void print_lv (struct guestfs_lvm_lv *lv)
266 {
267   int i;
268
269   printf ("lv_name: %s\n", lv->lv_name);
270   printf ("lv_uuid: ");
271   for (i = 0; i < 32; ++i)
272     printf ("%c", lv->lv_uuid[i]);
273   printf ("\n");
274   printf ("lv_attr: %s\n", lv->lv_attr);
275   printf ("lv_major: %" PRIi64 "\n", lv->lv_major);
276   printf ("lv_minor: %" PRIi64 "\n", lv->lv_minor);
277   printf ("lv_kernel_major: %" PRIi64 "\n", lv->lv_kernel_major);
278   printf ("lv_kernel_minor: %" PRIi64 "\n", lv->lv_kernel_minor);
279   printf ("lv_size: %" PRIu64 "\n", lv->lv_size);
280   printf ("seg_count: %" PRIi64 "\n", lv->seg_count);
281   printf ("origin: %s\n", lv->origin);
282   if (lv->snap_percent >= 0) printf ("snap_percent: %g %%\n", lv->snap_percent);
283   else printf ("snap_percent: \n");
284   if (lv->copy_percent >= 0) printf ("copy_percent: %g %%\n", lv->copy_percent);
285   else printf ("copy_percent: \n");
286   printf ("move_pv: %s\n", lv->move_pv);
287   printf ("lv_tags: %s\n", lv->lv_tags);
288   printf ("mirror_log: %s\n", lv->mirror_log);
289   printf ("modules: %s\n", lv->modules);
290 }
291
292 static void print_lv_list (struct guestfs_lvm_lv_list *lvs)
293 {
294   int i;
295
296   for (i = 0; i < lvs->len; ++i)
297     print_lv (&lvs->val[i]);
298 }
299
300 static int run_launch (const char *cmd, int argc, char *argv[])
301 {
302   int r;
303   if (argc != 0) {
304     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
305     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
306     return -1;
307   }
308   r = launch (g);
309   return r;
310 }
311
312 static int run_kill_subprocess (const char *cmd, int argc, char *argv[])
313 {
314   int r;
315   if (argc != 0) {
316     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
317     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
318     return -1;
319   }
320   r = guestfs_kill_subprocess (g);
321   return r;
322 }
323
324 static int run_add_drive (const char *cmd, int argc, char *argv[])
325 {
326   int r;
327   const char *filename;
328   if (argc != 1) {
329     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
330     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
331     return -1;
332   }
333   filename = argv[0];
334   r = guestfs_add_drive (g, filename);
335   return r;
336 }
337
338 static int run_add_cdrom (const char *cmd, int argc, char *argv[])
339 {
340   int r;
341   const char *filename;
342   if (argc != 1) {
343     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
344     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
345     return -1;
346   }
347   filename = argv[0];
348   r = guestfs_add_cdrom (g, filename);
349   return r;
350 }
351
352 static int run_config (const char *cmd, int argc, char *argv[])
353 {
354   int r;
355   const char *qemuparam;
356   const char *qemuvalue;
357   if (argc != 2) {
358     fprintf (stderr, "%s should have 2 parameter(s)\n", cmd);
359     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
360     return -1;
361   }
362   qemuparam = argv[0];
363   qemuvalue = strcmp (argv[1], "") != 0 ? argv[1] : NULL;
364   r = guestfs_config (g, qemuparam, qemuvalue);
365   return r;
366 }
367
368 static int run_set_path (const char *cmd, int argc, char *argv[])
369 {
370   int r;
371   const char *path;
372   if (argc != 1) {
373     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
374     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
375     return -1;
376   }
377   path = argv[0];
378   r = guestfs_set_path (g, path);
379   return r;
380 }
381
382 static int run_get_path (const char *cmd, int argc, char *argv[])
383 {
384   const char *r;
385   if (argc != 0) {
386     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
387     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
388     return -1;
389   }
390   r = guestfs_get_path (g);
391   if (r == NULL) return -1;
392   printf ("%s\n", r);
393   return 0;
394 }
395
396 static int run_set_autosync (const char *cmd, int argc, char *argv[])
397 {
398   int r;
399   int autosync;
400   if (argc != 1) {
401     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
402     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
403     return -1;
404   }
405   autosync = is_true (argv[0]) ? 1 : 0;
406   r = guestfs_set_autosync (g, autosync);
407   return r;
408 }
409
410 static int run_get_autosync (const char *cmd, int argc, char *argv[])
411 {
412   int r;
413   if (argc != 0) {
414     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
415     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
416     return -1;
417   }
418   r = guestfs_get_autosync (g);
419   if (r == -1) return -1;
420   if (r) printf ("true\n"); else printf ("false\n");
421   return 0;
422 }
423
424 static int run_set_verbose (const char *cmd, int argc, char *argv[])
425 {
426   int r;
427   int verbose;
428   if (argc != 1) {
429     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
430     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
431     return -1;
432   }
433   verbose = is_true (argv[0]) ? 1 : 0;
434   r = guestfs_set_verbose (g, verbose);
435   return r;
436 }
437
438 static int run_get_verbose (const char *cmd, int argc, char *argv[])
439 {
440   int r;
441   if (argc != 0) {
442     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
443     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
444     return -1;
445   }
446   r = guestfs_get_verbose (g);
447   if (r == -1) return -1;
448   if (r) printf ("true\n"); else printf ("false\n");
449   return 0;
450 }
451
452 static int run_mount (const char *cmd, int argc, char *argv[])
453 {
454   int r;
455   const char *device;
456   const char *mountpoint;
457   if (argc != 2) {
458     fprintf (stderr, "%s should have 2 parameter(s)\n", cmd);
459     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
460     return -1;
461   }
462   device = argv[0];
463   mountpoint = argv[1];
464   r = guestfs_mount (g, device, mountpoint);
465   return r;
466 }
467
468 static int run_sync (const char *cmd, int argc, char *argv[])
469 {
470   int r;
471   if (argc != 0) {
472     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
473     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
474     return -1;
475   }
476   r = guestfs_sync (g);
477   return r;
478 }
479
480 static int run_touch (const char *cmd, int argc, char *argv[])
481 {
482   int r;
483   const char *path;
484   if (argc != 1) {
485     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
486     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
487     return -1;
488   }
489   path = argv[0];
490   r = guestfs_touch (g, path);
491   return r;
492 }
493
494 static int run_cat (const char *cmd, int argc, char *argv[])
495 {
496   char *r;
497   const char *path;
498   if (argc != 1) {
499     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
500     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
501     return -1;
502   }
503   path = argv[0];
504   r = guestfs_cat (g, path);
505   if (r == NULL) return -1;
506   printf ("%s\n", r);
507   free (r);
508   return 0;
509 }
510
511 static int run_ll (const char *cmd, int argc, char *argv[])
512 {
513   char *r;
514   const char *directory;
515   if (argc != 1) {
516     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
517     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
518     return -1;
519   }
520   directory = argv[0];
521   r = guestfs_ll (g, directory);
522   if (r == NULL) return -1;
523   printf ("%s\n", r);
524   free (r);
525   return 0;
526 }
527
528 static int run_ls (const char *cmd, int argc, char *argv[])
529 {
530   char **r;
531   const char *directory;
532   if (argc != 1) {
533     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
534     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
535     return -1;
536   }
537   directory = argv[0];
538   r = guestfs_ls (g, directory);
539   if (r == NULL) return -1;
540   print_strings (r);
541   free_strings (r);
542   return 0;
543 }
544
545 static int run_list_devices (const char *cmd, int argc, char *argv[])
546 {
547   char **r;
548   if (argc != 0) {
549     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
550     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
551     return -1;
552   }
553   r = guestfs_list_devices (g);
554   if (r == NULL) return -1;
555   print_strings (r);
556   free_strings (r);
557   return 0;
558 }
559
560 static int run_list_partitions (const char *cmd, int argc, char *argv[])
561 {
562   char **r;
563   if (argc != 0) {
564     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
565     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
566     return -1;
567   }
568   r = guestfs_list_partitions (g);
569   if (r == NULL) return -1;
570   print_strings (r);
571   free_strings (r);
572   return 0;
573 }
574
575 static int run_pvs (const char *cmd, int argc, char *argv[])
576 {
577   char **r;
578   if (argc != 0) {
579     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
580     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
581     return -1;
582   }
583   r = guestfs_pvs (g);
584   if (r == NULL) return -1;
585   print_strings (r);
586   free_strings (r);
587   return 0;
588 }
589
590 static int run_vgs (const char *cmd, int argc, char *argv[])
591 {
592   char **r;
593   if (argc != 0) {
594     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
595     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
596     return -1;
597   }
598   r = guestfs_vgs (g);
599   if (r == NULL) return -1;
600   print_strings (r);
601   free_strings (r);
602   return 0;
603 }
604
605 static int run_lvs (const char *cmd, int argc, char *argv[])
606 {
607   char **r;
608   if (argc != 0) {
609     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
610     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
611     return -1;
612   }
613   r = guestfs_lvs (g);
614   if (r == NULL) return -1;
615   print_strings (r);
616   free_strings (r);
617   return 0;
618 }
619
620 static int run_pvs_full (const char *cmd, int argc, char *argv[])
621 {
622   struct guestfs_lvm_pv_list *r;
623   if (argc != 0) {
624     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
625     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
626     return -1;
627   }
628   r = guestfs_pvs_full (g);
629   if (r == NULL) return -1;
630   print_pv_list (r);
631   guestfs_free_lvm_pv_list (r);
632   return 0;
633 }
634
635 static int run_vgs_full (const char *cmd, int argc, char *argv[])
636 {
637   struct guestfs_lvm_vg_list *r;
638   if (argc != 0) {
639     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
640     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
641     return -1;
642   }
643   r = guestfs_vgs_full (g);
644   if (r == NULL) return -1;
645   print_vg_list (r);
646   guestfs_free_lvm_vg_list (r);
647   return 0;
648 }
649
650 static int run_lvs_full (const char *cmd, int argc, char *argv[])
651 {
652   struct guestfs_lvm_lv_list *r;
653   if (argc != 0) {
654     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
655     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
656     return -1;
657   }
658   r = guestfs_lvs_full (g);
659   if (r == NULL) return -1;
660   print_lv_list (r);
661   guestfs_free_lvm_lv_list (r);
662   return 0;
663 }
664
665 static int run_read_lines (const char *cmd, int argc, char *argv[])
666 {
667   char **r;
668   const char *path;
669   if (argc != 1) {
670     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
671     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
672     return -1;
673   }
674   path = argv[0];
675   r = guestfs_read_lines (g, path);
676   if (r == NULL) return -1;
677   print_strings (r);
678   free_strings (r);
679   return 0;
680 }
681
682 static int run_aug_init (const char *cmd, int argc, char *argv[])
683 {
684   int r;
685   const char *root;
686   int flags;
687   if (argc != 2) {
688     fprintf (stderr, "%s should have 2 parameter(s)\n", cmd);
689     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
690     return -1;
691   }
692   root = argv[0];
693   flags = atoi (argv[1]);
694   r = guestfs_aug_init (g, root, flags);
695   return r;
696 }
697
698 static int run_aug_close (const char *cmd, int argc, char *argv[])
699 {
700   int r;
701   if (argc != 0) {
702     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
703     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
704     return -1;
705   }
706   r = guestfs_aug_close (g);
707   return r;
708 }
709
710 static int run_aug_defvar (const char *cmd, int argc, char *argv[])
711 {
712   int r;
713   const char *name;
714   const char *expr;
715   if (argc != 2) {
716     fprintf (stderr, "%s should have 2 parameter(s)\n", cmd);
717     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
718     return -1;
719   }
720   name = argv[0];
721   expr = strcmp (argv[1], "") != 0 ? argv[1] : NULL;
722   r = guestfs_aug_defvar (g, name, expr);
723   if (r == -1) return -1;
724   if (r) printf ("%d\n", r);
725   return 0;
726 }
727
728 static int run_aug_defnode (const char *cmd, int argc, char *argv[])
729 {
730   struct guestfs_int_bool *r;
731   const char *name;
732   const char *expr;
733   const char *val;
734   if (argc != 3) {
735     fprintf (stderr, "%s should have 3 parameter(s)\n", cmd);
736     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
737     return -1;
738   }
739   name = argv[0];
740   expr = argv[1];
741   val = argv[2];
742   r = guestfs_aug_defnode (g, name, expr, val);
743   if (r == NULL) return -1;
744   printf ("%d, %s\n", r->i,
745     r->b ? "true" : "false");
746   guestfs_free_int_bool (r);
747   return 0;
748 }
749
750 static int run_aug_get (const char *cmd, int argc, char *argv[])
751 {
752   char *r;
753   const char *path;
754   if (argc != 1) {
755     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
756     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
757     return -1;
758   }
759   path = argv[0];
760   r = guestfs_aug_get (g, path);
761   if (r == NULL) return -1;
762   printf ("%s\n", r);
763   free (r);
764   return 0;
765 }
766
767 static int run_aug_set (const char *cmd, int argc, char *argv[])
768 {
769   int r;
770   const char *path;
771   const char *val;
772   if (argc != 2) {
773     fprintf (stderr, "%s should have 2 parameter(s)\n", cmd);
774     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
775     return -1;
776   }
777   path = argv[0];
778   val = argv[1];
779   r = guestfs_aug_set (g, path, val);
780   return r;
781 }
782
783 static int run_aug_insert (const char *cmd, int argc, char *argv[])
784 {
785   int r;
786   const char *path;
787   const char *label;
788   int before;
789   if (argc != 3) {
790     fprintf (stderr, "%s should have 3 parameter(s)\n", cmd);
791     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
792     return -1;
793   }
794   path = argv[0];
795   label = argv[1];
796   before = is_true (argv[2]) ? 1 : 0;
797   r = guestfs_aug_insert (g, path, label, before);
798   return r;
799 }
800
801 static int run_aug_rm (const char *cmd, int argc, char *argv[])
802 {
803   int r;
804   const char *path;
805   if (argc != 1) {
806     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
807     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
808     return -1;
809   }
810   path = argv[0];
811   r = guestfs_aug_rm (g, path);
812   if (r == -1) return -1;
813   if (r) printf ("%d\n", r);
814   return 0;
815 }
816
817 static int run_aug_mv (const char *cmd, int argc, char *argv[])
818 {
819   int r;
820   const char *src;
821   const char *dest;
822   if (argc != 2) {
823     fprintf (stderr, "%s should have 2 parameter(s)\n", cmd);
824     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
825     return -1;
826   }
827   src = argv[0];
828   dest = argv[1];
829   r = guestfs_aug_mv (g, src, dest);
830   return r;
831 }
832
833 static int run_aug_match (const char *cmd, int argc, char *argv[])
834 {
835   char **r;
836   const char *path;
837   if (argc != 1) {
838     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
839     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
840     return -1;
841   }
842   path = argv[0];
843   r = guestfs_aug_match (g, path);
844   if (r == NULL) return -1;
845   print_strings (r);
846   free_strings (r);
847   return 0;
848 }
849
850 static int run_aug_save (const char *cmd, int argc, char *argv[])
851 {
852   int r;
853   if (argc != 0) {
854     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
855     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
856     return -1;
857   }
858   r = guestfs_aug_save (g);
859   return r;
860 }
861
862 static int run_aug_load (const char *cmd, int argc, char *argv[])
863 {
864   int r;
865   if (argc != 0) {
866     fprintf (stderr, "%s should have 0 parameter(s)\n", cmd);
867     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
868     return -1;
869   }
870   r = guestfs_aug_load (g);
871   return r;
872 }
873
874 static int run_aug_ls (const char *cmd, int argc, char *argv[])
875 {
876   char **r;
877   const char *path;
878   if (argc != 1) {
879     fprintf (stderr, "%s should have 1 parameter(s)\n", cmd);
880     fprintf (stderr, "type 'help %s' for help on %s\n", cmd, cmd);
881     return -1;
882   }
883   path = argv[0];
884   r = guestfs_aug_ls (g, path);
885   if (r == NULL) return -1;
886   print_strings (r);
887   free_strings (r);
888   return 0;
889 }
890
891 int run_action (const char *cmd, int argc, char *argv[])
892 {
893   if (strcasecmp (cmd, "launch") == 0 || strcasecmp (cmd, "run") == 0)
894     return run_launch (cmd, argc, argv);
895   else
896   if (strcasecmp (cmd, "kill_subprocess") == 0 || strcasecmp (cmd, "kill-subprocess") == 0)
897     return run_kill_subprocess (cmd, argc, argv);
898   else
899   if (strcasecmp (cmd, "add_drive") == 0 || strcasecmp (cmd, "add-drive") == 0 || strcasecmp (cmd, "add") == 0)
900     return run_add_drive (cmd, argc, argv);
901   else
902   if (strcasecmp (cmd, "add_cdrom") == 0 || strcasecmp (cmd, "add-cdrom") == 0 || strcasecmp (cmd, "cdrom") == 0)
903     return run_add_cdrom (cmd, argc, argv);
904   else
905   if (strcasecmp (cmd, "config") == 0)
906     return run_config (cmd, argc, argv);
907   else
908   if (strcasecmp (cmd, "set_path") == 0 || strcasecmp (cmd, "set-path") == 0 || strcasecmp (cmd, "path") == 0)
909     return run_set_path (cmd, argc, argv);
910   else
911   if (strcasecmp (cmd, "get_path") == 0 || strcasecmp (cmd, "get-path") == 0)
912     return run_get_path (cmd, argc, argv);
913   else
914   if (strcasecmp (cmd, "set_autosync") == 0 || strcasecmp (cmd, "set-autosync") == 0 || strcasecmp (cmd, "autosync") == 0)
915     return run_set_autosync (cmd, argc, argv);
916   else
917   if (strcasecmp (cmd, "get_autosync") == 0 || strcasecmp (cmd, "get-autosync") == 0)
918     return run_get_autosync (cmd, argc, argv);
919   else
920   if (strcasecmp (cmd, "set_verbose") == 0 || strcasecmp (cmd, "set-verbose") == 0 || strcasecmp (cmd, "verbose") == 0)
921     return run_set_verbose (cmd, argc, argv);
922   else
923   if (strcasecmp (cmd, "get_verbose") == 0 || strcasecmp (cmd, "get-verbose") == 0)
924     return run_get_verbose (cmd, argc, argv);
925   else
926   if (strcasecmp (cmd, "mount") == 0)
927     return run_mount (cmd, argc, argv);
928   else
929   if (strcasecmp (cmd, "sync") == 0)
930     return run_sync (cmd, argc, argv);
931   else
932   if (strcasecmp (cmd, "touch") == 0)
933     return run_touch (cmd, argc, argv);
934   else
935   if (strcasecmp (cmd, "cat") == 0)
936     return run_cat (cmd, argc, argv);
937   else
938   if (strcasecmp (cmd, "ll") == 0)
939     return run_ll (cmd, argc, argv);
940   else
941   if (strcasecmp (cmd, "ls") == 0)
942     return run_ls (cmd, argc, argv);
943   else
944   if (strcasecmp (cmd, "list_devices") == 0 || strcasecmp (cmd, "list-devices") == 0)
945     return run_list_devices (cmd, argc, argv);
946   else
947   if (strcasecmp (cmd, "list_partitions") == 0 || strcasecmp (cmd, "list-partitions") == 0)
948     return run_list_partitions (cmd, argc, argv);
949   else
950   if (strcasecmp (cmd, "pvs") == 0)
951     return run_pvs (cmd, argc, argv);
952   else
953   if (strcasecmp (cmd, "vgs") == 0)
954     return run_vgs (cmd, argc, argv);
955   else
956   if (strcasecmp (cmd, "lvs") == 0)
957     return run_lvs (cmd, argc, argv);
958   else
959   if (strcasecmp (cmd, "pvs_full") == 0 || strcasecmp (cmd, "pvs-full") == 0)
960     return run_pvs_full (cmd, argc, argv);
961   else
962   if (strcasecmp (cmd, "vgs_full") == 0 || strcasecmp (cmd, "vgs-full") == 0)
963     return run_vgs_full (cmd, argc, argv);
964   else
965   if (strcasecmp (cmd, "lvs_full") == 0 || strcasecmp (cmd, "lvs-full") == 0)
966     return run_lvs_full (cmd, argc, argv);
967   else
968   if (strcasecmp (cmd, "read_lines") == 0 || strcasecmp (cmd, "read-lines") == 0)
969     return run_read_lines (cmd, argc, argv);
970   else
971   if (strcasecmp (cmd, "aug_init") == 0 || strcasecmp (cmd, "aug-init") == 0)
972     return run_aug_init (cmd, argc, argv);
973   else
974   if (strcasecmp (cmd, "aug_close") == 0 || strcasecmp (cmd, "aug-close") == 0)
975     return run_aug_close (cmd, argc, argv);
976   else
977   if (strcasecmp (cmd, "aug_defvar") == 0 || strcasecmp (cmd, "aug-defvar") == 0)
978     return run_aug_defvar (cmd, argc, argv);
979   else
980   if (strcasecmp (cmd, "aug_defnode") == 0 || strcasecmp (cmd, "aug-defnode") == 0)
981     return run_aug_defnode (cmd, argc, argv);
982   else
983   if (strcasecmp (cmd, "aug_get") == 0 || strcasecmp (cmd, "aug-get") == 0)
984     return run_aug_get (cmd, argc, argv);
985   else
986   if (strcasecmp (cmd, "aug_set") == 0 || strcasecmp (cmd, "aug-set") == 0)
987     return run_aug_set (cmd, argc, argv);
988   else
989   if (strcasecmp (cmd, "aug_insert") == 0 || strcasecmp (cmd, "aug-insert") == 0)
990     return run_aug_insert (cmd, argc, argv);
991   else
992   if (strcasecmp (cmd, "aug_rm") == 0 || strcasecmp (cmd, "aug-rm") == 0)
993     return run_aug_rm (cmd, argc, argv);
994   else
995   if (strcasecmp (cmd, "aug_mv") == 0 || strcasecmp (cmd, "aug-mv") == 0)
996     return run_aug_mv (cmd, argc, argv);
997   else
998   if (strcasecmp (cmd, "aug_match") == 0 || strcasecmp (cmd, "aug-match") == 0)
999     return run_aug_match (cmd, argc, argv);
1000   else
1001   if (strcasecmp (cmd, "aug_save") == 0 || strcasecmp (cmd, "aug-save") == 0)
1002     return run_aug_save (cmd, argc, argv);
1003   else
1004   if (strcasecmp (cmd, "aug_load") == 0 || strcasecmp (cmd, "aug-load") == 0)
1005     return run_aug_load (cmd, argc, argv);
1006   else
1007   if (strcasecmp (cmd, "aug_ls") == 0 || strcasecmp (cmd, "aug-ls") == 0)
1008     return run_aug_ls (cmd, argc, argv);
1009   else
1010     {
1011       fprintf (stderr, "%s: unknown command\n", cmd);
1012       return -1;
1013     }
1014   return 0;
1015 }
1016