summaryrefslogtreecommitdiffstats
path: root/src/guestfs-actions.c
diff options
context:
space:
mode:
authorRichard Jones <rjones@redhat.com>2009-04-09 19:36:07 +0100
committerRichard Jones <rjones@redhat.com>2009-04-09 19:36:07 +0100
commit01c26253a12ed1e6b1199f8c85f049a7fc4aef28 (patch)
tree02a9f655430a8e7cf282b7dd9bf042640654f599 /src/guestfs-actions.c
parent0677b12f2273ed266da9dd276c129342d6a939a2 (diff)
downloadlibguestfs-01c26253a12ed1e6b1199f8c85f049a7fc4aef28.tar.gz
libguestfs-01c26253a12ed1e6b1199f8c85f049a7fc4aef28.tar.xz
libguestfs-01c26253a12ed1e6b1199f8c85f049a7fc4aef28.zip
Added aug-ls (generated code).
Diffstat (limited to 'src/guestfs-actions.c')
-rw-r--r--src/guestfs-actions.c78
1 files changed, 78 insertions, 0 deletions
diff --git a/src/guestfs-actions.c b/src/guestfs-actions.c
index 0bb868ca..9b9749a1 100644
--- a/src/guestfs-actions.c
+++ b/src/guestfs-actions.c
@@ -1973,3 +1973,81 @@ int guestfs_aug_load (guestfs_h *g)
return 0;
}
+struct aug_ls_rv {
+ int cb_done; /* flag to indicate callback was called */
+ struct guestfs_message_header hdr;
+ struct guestfs_message_error err;
+ struct guestfs_aug_ls_ret ret;
+};
+
+static void aug_ls_cb (guestfs_h *g, void *data, XDR *xdr)
+{
+ struct aug_ls_rv *rv = (struct aug_ls_rv *) data;
+
+ if (!xdr_guestfs_message_header (xdr, &rv->hdr)) {
+ error (g, "guestfs_aug_ls: failed to parse reply header");
+ return;
+ }
+ if (rv->hdr.status == GUESTFS_STATUS_ERROR) {
+ if (!xdr_guestfs_message_error (xdr, &rv->err)) {
+ error (g, "guestfs_aug_ls: failed to parse reply error");
+ return;
+ }
+ goto done;
+ }
+ if (!xdr_guestfs_aug_ls_ret (xdr, &rv->ret)) {
+ error (g, "guestfs_aug_ls: failed to parse reply");
+ return;
+ }
+ done:
+ rv->cb_done = 1;
+ main_loop.main_loop_quit (g);
+}
+
+char **guestfs_aug_ls (guestfs_h *g,
+ const char *path)
+{
+ struct guestfs_aug_ls_args args;
+ struct aug_ls_rv rv;
+ int serial;
+
+ if (g->state != READY) {
+ error (g, "guestfs_aug_ls called from the wrong state, %d != READY",
+ g->state);
+ return NULL;
+ }
+
+ memset (&rv, 0, sizeof rv);
+
+ args.path = (char *) path;
+ serial = dispatch (g, GUESTFS_PROC_AUG_LS,
+ (xdrproc_t) xdr_guestfs_aug_ls_args, (char *) &args);
+ if (serial == -1)
+ return NULL;
+
+ rv.cb_done = 0;
+ g->reply_cb_internal = aug_ls_cb;
+ g->reply_cb_internal_data = &rv;
+ main_loop.main_loop_run (g);
+ g->reply_cb_internal = NULL;
+ g->reply_cb_internal_data = NULL;
+ if (!rv.cb_done) {
+ error (g, "guestfs_aug_ls failed, see earlier error messages");
+ return NULL;
+ }
+
+ if (check_reply_header (g, &rv.hdr, GUESTFS_PROC_AUG_LS, serial) == -1)
+ return NULL;
+
+ if (rv.hdr.status == GUESTFS_STATUS_ERROR) {
+ error (g, "%s", rv.err.error);
+ return NULL;
+ }
+
+ /* caller will free this, but we need to add a NULL entry */
+ rv.ret.matches.matches_val = safe_realloc (g, rv.ret.matches.matches_val,
+ sizeof (char *) * (rv.ret.matches.matches_len + 1));
+ rv.ret.matches.matches_val[rv.ret.matches.matches_len] = NULL;
+ return rv.ret.matches.matches_val;
+}
+