* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#include <stdio.h>
+#include <stdlib.h>
+
+#include "guestfs.h"
+#include "guestfs_protocol.h"
+
+#define error guestfs_error
+#define perrorf guestfs_perrorf
+#define safe_malloc guestfs_safe_malloc
+#define safe_realloc guestfs_safe_realloc
+#define safe_strdup guestfs_safe_strdup
+#define safe_memdup guestfs_safe_memdup
+
+/* Check the return message from a call for validity. */
+static int
+check_reply_header (guestfs_h *g,
+ const struct guestfs_message_header *hdr,
+ int proc_nr, int serial)
+{
+ if (hdr->prog != GUESTFS_PROGRAM) {
+ error (g, "wrong program (%d/%d)", hdr->prog, GUESTFS_PROGRAM);
+ return -1;
+ }
+ if (hdr->vers != GUESTFS_PROTOCOL_VERSION) {
+ error (g, "wrong protocol version (%d/%d)",
+ hdr->vers, GUESTFS_PROTOCOL_VERSION);
+ return -1;
+ }
+ if (hdr->direction != GUESTFS_DIRECTION_REPLY) {
+ error (g, "unexpected message direction (%d/%d)",
+ hdr->direction, GUESTFS_DIRECTION_REPLY);
+ return -1;
+ }
+ if (hdr->proc != proc_nr) {
+ error (g, "unexpected procedure number (%d/%d)", hdr->proc, proc_nr);
+ return -1;
+ }
+ if (hdr->serial != serial) {
+ error (g, "unexpected serial (%d/%d)", hdr->serial, serial);
+ return -1;
+ }
+
+ return 0;
+}
+
+/* Check we are in the right state to run a high-level action. */
+static int
+check_state (guestfs_h *g, const char *caller)
+{
+ if (!guestfs_is_ready (g)) {
+ if (guestfs_is_config (g))
+ error (g, "%s: call launch() before using this function",
+ caller);
+ else if (guestfs_is_launching (g))
+ error (g, "%s: call wait_ready() before using this function",
+ caller);
+ else
+ error (g, "%s called from the wrong state, %d != READY",
+ caller, guestfs_get_state (g));
+ return -1;
+ }
+ return 0;
+}
+
struct mount_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void mount_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct mount_state *state = (struct mount_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_mount (guestfs_h *g,
{
struct guestfs_mount_args args;
struct mount_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_mount");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_mount");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_mount", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_mount") == -1) return -1;
memset (&state, 0, sizeof state);
args.device = (char *) device;
args.mountpoint = (char *) mountpoint;
- serial = dispatch (g, GUESTFS_PROC_MOUNT,
+ serial = guestfs_send (g, GUESTFS_PROC_MOUNT,
(xdrproc_t) xdr_guestfs_mount_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = mount_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, mount_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_mount failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct sync_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void sync_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct sync_state *state = (struct sync_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_sync (guestfs_h *g)
{
struct sync_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_sync");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_sync");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_sync", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_sync") == -1) return -1;
memset (&state, 0, sizeof state);
- serial = dispatch (g, GUESTFS_PROC_SYNC, NULL, NULL);
+ serial = guestfs_send (g, GUESTFS_PROC_SYNC, NULL, NULL);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = sync_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, sync_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_sync failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct touch_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void touch_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct touch_state *state = (struct touch_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_touch (guestfs_h *g,
{
struct guestfs_touch_args args;
struct touch_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_touch");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_touch");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_touch", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_touch") == -1) return -1;
memset (&state, 0, sizeof state);
args.path = (char *) path;
- serial = dispatch (g, GUESTFS_PROC_TOUCH,
+ serial = guestfs_send (g, GUESTFS_PROC_TOUCH,
(xdrproc_t) xdr_guestfs_touch_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = touch_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, touch_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_touch failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct cat_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_cat_ret ret;
static void cat_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct cat_state *state = (struct cat_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
char *guestfs_cat (guestfs_h *g,
{
struct guestfs_cat_args args;
struct cat_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_cat");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_cat");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_cat", g->state);
- return NULL;
- }
+ if (check_state (g, "guestfs_cat") == -1) return NULL;
memset (&state, 0, sizeof state);
args.path = (char *) path;
- serial = dispatch (g, GUESTFS_PROC_CAT,
+ serial = guestfs_send (g, GUESTFS_PROC_CAT,
(xdrproc_t) xdr_guestfs_cat_args, (char *) &args);
if (serial == -1)
return NULL;
- state.cb_done = 0;
- g->reply_cb_internal = cat_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, cat_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_cat failed, see earlier error messages");
return NULL;
}
return NULL;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return NULL;
}
}
struct ll_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_ll_ret ret;
static void ll_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct ll_state *state = (struct ll_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
char *guestfs_ll (guestfs_h *g,
{
struct guestfs_ll_args args;
struct ll_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_ll");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_ll");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_ll", g->state);
- return NULL;
- }
+ if (check_state (g, "guestfs_ll") == -1) return NULL;
memset (&state, 0, sizeof state);
args.directory = (char *) directory;
- serial = dispatch (g, GUESTFS_PROC_LL,
+ serial = guestfs_send (g, GUESTFS_PROC_LL,
(xdrproc_t) xdr_guestfs_ll_args, (char *) &args);
if (serial == -1)
return NULL;
- state.cb_done = 0;
- g->reply_cb_internal = ll_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, ll_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_ll failed, see earlier error messages");
return NULL;
}
return NULL;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return NULL;
}
}
struct ls_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_ls_ret ret;
static void ls_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct ls_state *state = (struct ls_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
char **guestfs_ls (guestfs_h *g,
{
struct guestfs_ls_args args;
struct ls_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_ls");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_ls");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_ls", g->state);
- return NULL;
- }
+ if (check_state (g, "guestfs_ls") == -1) return NULL;
memset (&state, 0, sizeof state);
args.directory = (char *) directory;
- serial = dispatch (g, GUESTFS_PROC_LS,
+ serial = guestfs_send (g, GUESTFS_PROC_LS,
(xdrproc_t) xdr_guestfs_ls_args, (char *) &args);
if (serial == -1)
return NULL;
- state.cb_done = 0;
- g->reply_cb_internal = ls_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, ls_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_ls failed, see earlier error messages");
return NULL;
}
return NULL;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return NULL;
}
/* caller will free this, but we need to add a NULL entry */
- state.ret.listing.listing_val = safe_realloc (g, state.ret.listing.listing_val,
+ state.ret.listing.listing_val =
+ safe_realloc (g, state.ret.listing.listing_val,
sizeof (char *) * (state.ret.listing.listing_len + 1));
state.ret.listing.listing_val[state.ret.listing.listing_len] = NULL;
return state.ret.listing.listing_val;
}
struct list_devices_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_list_devices_ret ret;
static void list_devices_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct list_devices_state *state = (struct list_devices_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
char **guestfs_list_devices (guestfs_h *g)
{
struct list_devices_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_list_devices");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_list_devices");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_list_devices", g->state);
- return NULL;
- }
+ if (check_state (g, "guestfs_list_devices") == -1) return NULL;
memset (&state, 0, sizeof state);
- serial = dispatch (g, GUESTFS_PROC_LIST_DEVICES, NULL, NULL);
+ serial = guestfs_send (g, GUESTFS_PROC_LIST_DEVICES, NULL, NULL);
if (serial == -1)
return NULL;
- state.cb_done = 0;
- g->reply_cb_internal = list_devices_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, list_devices_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_list_devices failed, see earlier error messages");
return NULL;
}
return NULL;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return NULL;
}
/* caller will free this, but we need to add a NULL entry */
- state.ret.devices.devices_val = safe_realloc (g, state.ret.devices.devices_val,
+ state.ret.devices.devices_val =
+ safe_realloc (g, state.ret.devices.devices_val,
sizeof (char *) * (state.ret.devices.devices_len + 1));
state.ret.devices.devices_val[state.ret.devices.devices_len] = NULL;
return state.ret.devices.devices_val;
}
struct list_partitions_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_list_partitions_ret ret;
static void list_partitions_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct list_partitions_state *state = (struct list_partitions_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
char **guestfs_list_partitions (guestfs_h *g)
{
struct list_partitions_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_list_partitions");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_list_partitions");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_list_partitions", g->state);
- return NULL;
- }
+ if (check_state (g, "guestfs_list_partitions") == -1) return NULL;
memset (&state, 0, sizeof state);
- serial = dispatch (g, GUESTFS_PROC_LIST_PARTITIONS, NULL, NULL);
+ serial = guestfs_send (g, GUESTFS_PROC_LIST_PARTITIONS, NULL, NULL);
if (serial == -1)
return NULL;
- state.cb_done = 0;
- g->reply_cb_internal = list_partitions_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, list_partitions_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_list_partitions failed, see earlier error messages");
return NULL;
}
return NULL;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return NULL;
}
/* caller will free this, but we need to add a NULL entry */
- state.ret.partitions.partitions_val = safe_realloc (g, state.ret.partitions.partitions_val,
+ state.ret.partitions.partitions_val =
+ safe_realloc (g, state.ret.partitions.partitions_val,
sizeof (char *) * (state.ret.partitions.partitions_len + 1));
state.ret.partitions.partitions_val[state.ret.partitions.partitions_len] = NULL;
return state.ret.partitions.partitions_val;
}
struct pvs_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_pvs_ret ret;
static void pvs_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct pvs_state *state = (struct pvs_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
char **guestfs_pvs (guestfs_h *g)
{
struct pvs_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_pvs");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_pvs");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_pvs", g->state);
- return NULL;
- }
+ if (check_state (g, "guestfs_pvs") == -1) return NULL;
memset (&state, 0, sizeof state);
- serial = dispatch (g, GUESTFS_PROC_PVS, NULL, NULL);
+ serial = guestfs_send (g, GUESTFS_PROC_PVS, NULL, NULL);
if (serial == -1)
return NULL;
- state.cb_done = 0;
- g->reply_cb_internal = pvs_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, pvs_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_pvs failed, see earlier error messages");
return NULL;
}
return NULL;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return NULL;
}
/* caller will free this, but we need to add a NULL entry */
- state.ret.physvols.physvols_val = safe_realloc (g, state.ret.physvols.physvols_val,
+ state.ret.physvols.physvols_val =
+ safe_realloc (g, state.ret.physvols.physvols_val,
sizeof (char *) * (state.ret.physvols.physvols_len + 1));
state.ret.physvols.physvols_val[state.ret.physvols.physvols_len] = NULL;
return state.ret.physvols.physvols_val;
}
struct vgs_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_vgs_ret ret;
static void vgs_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct vgs_state *state = (struct vgs_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
char **guestfs_vgs (guestfs_h *g)
{
struct vgs_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_vgs");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_vgs");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_vgs", g->state);
- return NULL;
- }
+ if (check_state (g, "guestfs_vgs") == -1) return NULL;
memset (&state, 0, sizeof state);
- serial = dispatch (g, GUESTFS_PROC_VGS, NULL, NULL);
+ serial = guestfs_send (g, GUESTFS_PROC_VGS, NULL, NULL);
if (serial == -1)
return NULL;
- state.cb_done = 0;
- g->reply_cb_internal = vgs_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, vgs_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_vgs failed, see earlier error messages");
return NULL;
}
return NULL;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return NULL;
}
/* caller will free this, but we need to add a NULL entry */
- state.ret.volgroups.volgroups_val = safe_realloc (g, state.ret.volgroups.volgroups_val,
+ state.ret.volgroups.volgroups_val =
+ safe_realloc (g, state.ret.volgroups.volgroups_val,
sizeof (char *) * (state.ret.volgroups.volgroups_len + 1));
state.ret.volgroups.volgroups_val[state.ret.volgroups.volgroups_len] = NULL;
return state.ret.volgroups.volgroups_val;
}
struct lvs_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_lvs_ret ret;
static void lvs_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct lvs_state *state = (struct lvs_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
char **guestfs_lvs (guestfs_h *g)
{
struct lvs_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_lvs");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_lvs");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_lvs", g->state);
- return NULL;
- }
+ if (check_state (g, "guestfs_lvs") == -1) return NULL;
memset (&state, 0, sizeof state);
- serial = dispatch (g, GUESTFS_PROC_LVS, NULL, NULL);
+ serial = guestfs_send (g, GUESTFS_PROC_LVS, NULL, NULL);
if (serial == -1)
return NULL;
- state.cb_done = 0;
- g->reply_cb_internal = lvs_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, lvs_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_lvs failed, see earlier error messages");
return NULL;
}
return NULL;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return NULL;
}
/* caller will free this, but we need to add a NULL entry */
- state.ret.logvols.logvols_val = safe_realloc (g, state.ret.logvols.logvols_val,
+ state.ret.logvols.logvols_val =
+ safe_realloc (g, state.ret.logvols.logvols_val,
sizeof (char *) * (state.ret.logvols.logvols_len + 1));
state.ret.logvols.logvols_val[state.ret.logvols.logvols_len] = NULL;
return state.ret.logvols.logvols_val;
}
struct pvs_full_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_pvs_full_ret ret;
static void pvs_full_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct pvs_full_state *state = (struct pvs_full_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
struct guestfs_lvm_pv_list *guestfs_pvs_full (guestfs_h *g)
{
struct pvs_full_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_pvs_full");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_pvs_full");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_pvs_full", g->state);
- return NULL;
- }
+ if (check_state (g, "guestfs_pvs_full") == -1) return NULL;
memset (&state, 0, sizeof state);
- serial = dispatch (g, GUESTFS_PROC_PVS_FULL, NULL, NULL);
+ serial = guestfs_send (g, GUESTFS_PROC_PVS_FULL, NULL, NULL);
if (serial == -1)
return NULL;
- state.cb_done = 0;
- g->reply_cb_internal = pvs_full_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, pvs_full_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_pvs_full failed, see earlier error messages");
return NULL;
}
return NULL;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return NULL;
}
}
struct vgs_full_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_vgs_full_ret ret;
static void vgs_full_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct vgs_full_state *state = (struct vgs_full_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
struct guestfs_lvm_vg_list *guestfs_vgs_full (guestfs_h *g)
{
struct vgs_full_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_vgs_full");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_vgs_full");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_vgs_full", g->state);
- return NULL;
- }
+ if (check_state (g, "guestfs_vgs_full") == -1) return NULL;
memset (&state, 0, sizeof state);
- serial = dispatch (g, GUESTFS_PROC_VGS_FULL, NULL, NULL);
+ serial = guestfs_send (g, GUESTFS_PROC_VGS_FULL, NULL, NULL);
if (serial == -1)
return NULL;
- state.cb_done = 0;
- g->reply_cb_internal = vgs_full_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, vgs_full_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_vgs_full failed, see earlier error messages");
return NULL;
}
return NULL;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return NULL;
}
}
struct lvs_full_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_lvs_full_ret ret;
static void lvs_full_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct lvs_full_state *state = (struct lvs_full_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
struct guestfs_lvm_lv_list *guestfs_lvs_full (guestfs_h *g)
{
struct lvs_full_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_lvs_full");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_lvs_full");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_lvs_full", g->state);
- return NULL;
- }
+ if (check_state (g, "guestfs_lvs_full") == -1) return NULL;
memset (&state, 0, sizeof state);
- serial = dispatch (g, GUESTFS_PROC_LVS_FULL, NULL, NULL);
+ serial = guestfs_send (g, GUESTFS_PROC_LVS_FULL, NULL, NULL);
if (serial == -1)
return NULL;
- state.cb_done = 0;
- g->reply_cb_internal = lvs_full_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, lvs_full_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_lvs_full failed, see earlier error messages");
return NULL;
}
return NULL;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return NULL;
}
}
struct read_lines_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_read_lines_ret ret;
static void read_lines_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct read_lines_state *state = (struct read_lines_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
char **guestfs_read_lines (guestfs_h *g,
{
struct guestfs_read_lines_args args;
struct read_lines_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_read_lines");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_read_lines");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_read_lines", g->state);
- return NULL;
- }
+ if (check_state (g, "guestfs_read_lines") == -1) return NULL;
memset (&state, 0, sizeof state);
args.path = (char *) path;
- serial = dispatch (g, GUESTFS_PROC_READ_LINES,
+ serial = guestfs_send (g, GUESTFS_PROC_READ_LINES,
(xdrproc_t) xdr_guestfs_read_lines_args, (char *) &args);
if (serial == -1)
return NULL;
- state.cb_done = 0;
- g->reply_cb_internal = read_lines_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, read_lines_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_read_lines failed, see earlier error messages");
return NULL;
}
return NULL;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return NULL;
}
/* caller will free this, but we need to add a NULL entry */
- state.ret.lines.lines_val = safe_realloc (g, state.ret.lines.lines_val,
+ state.ret.lines.lines_val =
+ safe_realloc (g, state.ret.lines.lines_val,
sizeof (char *) * (state.ret.lines.lines_len + 1));
state.ret.lines.lines_val[state.ret.lines.lines_len] = NULL;
return state.ret.lines.lines_val;
}
struct aug_init_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void aug_init_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct aug_init_state *state = (struct aug_init_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_aug_init (guestfs_h *g,
{
struct guestfs_aug_init_args args;
struct aug_init_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_aug_init");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_aug_init");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_aug_init", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_aug_init") == -1) return -1;
memset (&state, 0, sizeof state);
args.root = (char *) root;
args.flags = flags;
- serial = dispatch (g, GUESTFS_PROC_AUG_INIT,
+ serial = guestfs_send (g, GUESTFS_PROC_AUG_INIT,
(xdrproc_t) xdr_guestfs_aug_init_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = aug_init_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, aug_init_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_aug_init failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct aug_close_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void aug_close_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct aug_close_state *state = (struct aug_close_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_aug_close (guestfs_h *g)
{
struct aug_close_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_aug_close");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_aug_close");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_aug_close", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_aug_close") == -1) return -1;
memset (&state, 0, sizeof state);
- serial = dispatch (g, GUESTFS_PROC_AUG_CLOSE, NULL, NULL);
+ serial = guestfs_send (g, GUESTFS_PROC_AUG_CLOSE, NULL, NULL);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = aug_close_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, aug_close_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_aug_close failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct aug_defvar_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_aug_defvar_ret ret;
static void aug_defvar_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct aug_defvar_state *state = (struct aug_defvar_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_aug_defvar (guestfs_h *g,
{
struct guestfs_aug_defvar_args args;
struct aug_defvar_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_aug_defvar");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_aug_defvar");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_aug_defvar", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_aug_defvar") == -1) return -1;
memset (&state, 0, sizeof state);
args.name = (char *) name;
args.expr = expr ? (char **) &expr : NULL;
- serial = dispatch (g, GUESTFS_PROC_AUG_DEFVAR,
+ serial = guestfs_send (g, GUESTFS_PROC_AUG_DEFVAR,
(xdrproc_t) xdr_guestfs_aug_defvar_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = aug_defvar_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, aug_defvar_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_aug_defvar failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct aug_defnode_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_aug_defnode_ret ret;
static void aug_defnode_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct aug_defnode_state *state = (struct aug_defnode_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
struct guestfs_int_bool *guestfs_aug_defnode (guestfs_h *g,
{
struct guestfs_aug_defnode_args args;
struct aug_defnode_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_aug_defnode");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_aug_defnode");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_aug_defnode", g->state);
- return NULL;
- }
+ if (check_state (g, "guestfs_aug_defnode") == -1) return NULL;
memset (&state, 0, sizeof state);
args.name = (char *) name;
args.expr = (char *) expr;
args.val = (char *) val;
- serial = dispatch (g, GUESTFS_PROC_AUG_DEFNODE,
+ serial = guestfs_send (g, GUESTFS_PROC_AUG_DEFNODE,
(xdrproc_t) xdr_guestfs_aug_defnode_args, (char *) &args);
if (serial == -1)
return NULL;
- state.cb_done = 0;
- g->reply_cb_internal = aug_defnode_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, aug_defnode_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_aug_defnode failed, see earlier error messages");
return NULL;
}
return NULL;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return NULL;
}
}
struct aug_get_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_aug_get_ret ret;
static void aug_get_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct aug_get_state *state = (struct aug_get_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
char *guestfs_aug_get (guestfs_h *g,
{
struct guestfs_aug_get_args args;
struct aug_get_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_aug_get");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_aug_get");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_aug_get", g->state);
- return NULL;
- }
+ if (check_state (g, "guestfs_aug_get") == -1) return NULL;
memset (&state, 0, sizeof state);
args.path = (char *) path;
- serial = dispatch (g, GUESTFS_PROC_AUG_GET,
+ serial = guestfs_send (g, GUESTFS_PROC_AUG_GET,
(xdrproc_t) xdr_guestfs_aug_get_args, (char *) &args);
if (serial == -1)
return NULL;
- state.cb_done = 0;
- g->reply_cb_internal = aug_get_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, aug_get_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_aug_get failed, see earlier error messages");
return NULL;
}
return NULL;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return NULL;
}
}
struct aug_set_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void aug_set_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct aug_set_state *state = (struct aug_set_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_aug_set (guestfs_h *g,
{
struct guestfs_aug_set_args args;
struct aug_set_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_aug_set");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_aug_set");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_aug_set", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_aug_set") == -1) return -1;
memset (&state, 0, sizeof state);
args.path = (char *) path;
args.val = (char *) val;
- serial = dispatch (g, GUESTFS_PROC_AUG_SET,
+ serial = guestfs_send (g, GUESTFS_PROC_AUG_SET,
(xdrproc_t) xdr_guestfs_aug_set_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = aug_set_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, aug_set_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_aug_set failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct aug_insert_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void aug_insert_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct aug_insert_state *state = (struct aug_insert_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_aug_insert (guestfs_h *g,
{
struct guestfs_aug_insert_args args;
struct aug_insert_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_aug_insert");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_aug_insert");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_aug_insert", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_aug_insert") == -1) return -1;
memset (&state, 0, sizeof state);
args.path = (char *) path;
args.label = (char *) label;
args.before = before;
- serial = dispatch (g, GUESTFS_PROC_AUG_INSERT,
+ serial = guestfs_send (g, GUESTFS_PROC_AUG_INSERT,
(xdrproc_t) xdr_guestfs_aug_insert_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = aug_insert_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, aug_insert_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_aug_insert failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct aug_rm_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_aug_rm_ret ret;
static void aug_rm_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct aug_rm_state *state = (struct aug_rm_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_aug_rm (guestfs_h *g,
{
struct guestfs_aug_rm_args args;
struct aug_rm_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_aug_rm");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_aug_rm");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_aug_rm", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_aug_rm") == -1) return -1;
memset (&state, 0, sizeof state);
args.path = (char *) path;
- serial = dispatch (g, GUESTFS_PROC_AUG_RM,
+ serial = guestfs_send (g, GUESTFS_PROC_AUG_RM,
(xdrproc_t) xdr_guestfs_aug_rm_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = aug_rm_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, aug_rm_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_aug_rm failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct aug_mv_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void aug_mv_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct aug_mv_state *state = (struct aug_mv_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_aug_mv (guestfs_h *g,
{
struct guestfs_aug_mv_args args;
struct aug_mv_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_aug_mv");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_aug_mv");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_aug_mv", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_aug_mv") == -1) return -1;
memset (&state, 0, sizeof state);
args.src = (char *) src;
args.dest = (char *) dest;
- serial = dispatch (g, GUESTFS_PROC_AUG_MV,
+ serial = guestfs_send (g, GUESTFS_PROC_AUG_MV,
(xdrproc_t) xdr_guestfs_aug_mv_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = aug_mv_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, aug_mv_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_aug_mv failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct aug_match_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_aug_match_ret ret;
static void aug_match_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct aug_match_state *state = (struct aug_match_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
char **guestfs_aug_match (guestfs_h *g,
{
struct guestfs_aug_match_args args;
struct aug_match_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_aug_match");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_aug_match");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_aug_match", g->state);
- return NULL;
- }
+ if (check_state (g, "guestfs_aug_match") == -1) return NULL;
memset (&state, 0, sizeof state);
args.path = (char *) path;
- serial = dispatch (g, GUESTFS_PROC_AUG_MATCH,
+ serial = guestfs_send (g, GUESTFS_PROC_AUG_MATCH,
(xdrproc_t) xdr_guestfs_aug_match_args, (char *) &args);
if (serial == -1)
return NULL;
- state.cb_done = 0;
- g->reply_cb_internal = aug_match_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, aug_match_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_aug_match failed, see earlier error messages");
return NULL;
}
return NULL;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return NULL;
}
/* caller will free this, but we need to add a NULL entry */
- state.ret.matches.matches_val = safe_realloc (g, state.ret.matches.matches_val,
+ state.ret.matches.matches_val =
+ safe_realloc (g, state.ret.matches.matches_val,
sizeof (char *) * (state.ret.matches.matches_len + 1));
state.ret.matches.matches_val[state.ret.matches.matches_len] = NULL;
return state.ret.matches.matches_val;
}
struct aug_save_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void aug_save_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct aug_save_state *state = (struct aug_save_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_aug_save (guestfs_h *g)
{
struct aug_save_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_aug_save");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_aug_save");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_aug_save", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_aug_save") == -1) return -1;
memset (&state, 0, sizeof state);
- serial = dispatch (g, GUESTFS_PROC_AUG_SAVE, NULL, NULL);
+ serial = guestfs_send (g, GUESTFS_PROC_AUG_SAVE, NULL, NULL);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = aug_save_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, aug_save_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_aug_save failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct aug_load_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void aug_load_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct aug_load_state *state = (struct aug_load_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_aug_load (guestfs_h *g)
{
struct aug_load_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_aug_load");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_aug_load");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_aug_load", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_aug_load") == -1) return -1;
memset (&state, 0, sizeof state);
- serial = dispatch (g, GUESTFS_PROC_AUG_LOAD, NULL, NULL);
+ serial = guestfs_send (g, GUESTFS_PROC_AUG_LOAD, NULL, NULL);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = aug_load_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, aug_load_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_aug_load failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct aug_ls_state {
- int cb_done;
+ int cb_state;
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)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct aug_ls_state *state = (struct aug_ls_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
char **guestfs_aug_ls (guestfs_h *g,
{
struct guestfs_aug_ls_args args;
struct aug_ls_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_aug_ls");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_aug_ls");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_aug_ls", g->state);
- return NULL;
- }
+ if (check_state (g, "guestfs_aug_ls") == -1) return NULL;
memset (&state, 0, sizeof state);
args.path = (char *) path;
- serial = dispatch (g, GUESTFS_PROC_AUG_LS,
+ serial = guestfs_send (g, GUESTFS_PROC_AUG_LS,
(xdrproc_t) xdr_guestfs_aug_ls_args, (char *) &args);
if (serial == -1)
return NULL;
- state.cb_done = 0;
- g->reply_cb_internal = aug_ls_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, aug_ls_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_aug_ls failed, see earlier error messages");
return NULL;
}
return NULL;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return NULL;
}
/* caller will free this, but we need to add a NULL entry */
- state.ret.matches.matches_val = safe_realloc (g, state.ret.matches.matches_val,
+ state.ret.matches.matches_val =
+ safe_realloc (g, state.ret.matches.matches_val,
sizeof (char *) * (state.ret.matches.matches_len + 1));
state.ret.matches.matches_val[state.ret.matches.matches_len] = NULL;
return state.ret.matches.matches_val;
}
struct rm_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void rm_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct rm_state *state = (struct rm_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_rm (guestfs_h *g,
{
struct guestfs_rm_args args;
struct rm_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_rm");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_rm");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_rm", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_rm") == -1) return -1;
memset (&state, 0, sizeof state);
args.path = (char *) path;
- serial = dispatch (g, GUESTFS_PROC_RM,
+ serial = guestfs_send (g, GUESTFS_PROC_RM,
(xdrproc_t) xdr_guestfs_rm_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = rm_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, rm_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_rm failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct rmdir_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void rmdir_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct rmdir_state *state = (struct rmdir_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_rmdir (guestfs_h *g,
{
struct guestfs_rmdir_args args;
struct rmdir_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_rmdir");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_rmdir");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_rmdir", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_rmdir") == -1) return -1;
memset (&state, 0, sizeof state);
args.path = (char *) path;
- serial = dispatch (g, GUESTFS_PROC_RMDIR,
+ serial = guestfs_send (g, GUESTFS_PROC_RMDIR,
(xdrproc_t) xdr_guestfs_rmdir_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = rmdir_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, rmdir_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_rmdir failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct rm_rf_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void rm_rf_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct rm_rf_state *state = (struct rm_rf_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_rm_rf (guestfs_h *g,
{
struct guestfs_rm_rf_args args;
struct rm_rf_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_rm_rf");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_rm_rf");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_rm_rf", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_rm_rf") == -1) return -1;
memset (&state, 0, sizeof state);
args.path = (char *) path;
- serial = dispatch (g, GUESTFS_PROC_RM_RF,
+ serial = guestfs_send (g, GUESTFS_PROC_RM_RF,
(xdrproc_t) xdr_guestfs_rm_rf_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = rm_rf_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, rm_rf_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_rm_rf failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct mkdir_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void mkdir_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct mkdir_state *state = (struct mkdir_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_mkdir (guestfs_h *g,
{
struct guestfs_mkdir_args args;
struct mkdir_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_mkdir");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_mkdir");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_mkdir", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_mkdir") == -1) return -1;
memset (&state, 0, sizeof state);
args.path = (char *) path;
- serial = dispatch (g, GUESTFS_PROC_MKDIR,
+ serial = guestfs_send (g, GUESTFS_PROC_MKDIR,
(xdrproc_t) xdr_guestfs_mkdir_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = mkdir_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, mkdir_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_mkdir failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct mkdir_p_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void mkdir_p_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct mkdir_p_state *state = (struct mkdir_p_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_mkdir_p (guestfs_h *g,
{
struct guestfs_mkdir_p_args args;
struct mkdir_p_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_mkdir_p");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_mkdir_p");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_mkdir_p", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_mkdir_p") == -1) return -1;
memset (&state, 0, sizeof state);
args.path = (char *) path;
- serial = dispatch (g, GUESTFS_PROC_MKDIR_P,
+ serial = guestfs_send (g, GUESTFS_PROC_MKDIR_P,
(xdrproc_t) xdr_guestfs_mkdir_p_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = mkdir_p_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, mkdir_p_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_mkdir_p failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct chmod_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void chmod_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct chmod_state *state = (struct chmod_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_chmod (guestfs_h *g,
{
struct guestfs_chmod_args args;
struct chmod_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_chmod");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_chmod");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_chmod", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_chmod") == -1) return -1;
memset (&state, 0, sizeof state);
args.mode = mode;
args.path = (char *) path;
- serial = dispatch (g, GUESTFS_PROC_CHMOD,
+ serial = guestfs_send (g, GUESTFS_PROC_CHMOD,
(xdrproc_t) xdr_guestfs_chmod_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = chmod_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, chmod_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_chmod failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct chown_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void chown_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct chown_state *state = (struct chown_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_chown (guestfs_h *g,
{
struct guestfs_chown_args args;
struct chown_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_chown");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_chown");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_chown", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_chown") == -1) return -1;
memset (&state, 0, sizeof state);
args.owner = owner;
args.group = group;
args.path = (char *) path;
- serial = dispatch (g, GUESTFS_PROC_CHOWN,
+ serial = guestfs_send (g, GUESTFS_PROC_CHOWN,
(xdrproc_t) xdr_guestfs_chown_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = chown_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, chown_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_chown failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct exists_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_exists_ret ret;
static void exists_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct exists_state *state = (struct exists_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_exists (guestfs_h *g,
{
struct guestfs_exists_args args;
struct exists_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_exists");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_exists");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_exists", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_exists") == -1) return -1;
memset (&state, 0, sizeof state);
args.path = (char *) path;
- serial = dispatch (g, GUESTFS_PROC_EXISTS,
+ serial = guestfs_send (g, GUESTFS_PROC_EXISTS,
(xdrproc_t) xdr_guestfs_exists_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = exists_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, exists_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_exists failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct is_file_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_is_file_ret ret;
static void is_file_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct is_file_state *state = (struct is_file_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_is_file (guestfs_h *g,
{
struct guestfs_is_file_args args;
struct is_file_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_is_file");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_is_file");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_is_file", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_is_file") == -1) return -1;
memset (&state, 0, sizeof state);
args.path = (char *) path;
- serial = dispatch (g, GUESTFS_PROC_IS_FILE,
+ serial = guestfs_send (g, GUESTFS_PROC_IS_FILE,
(xdrproc_t) xdr_guestfs_is_file_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = is_file_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, is_file_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_is_file failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct is_dir_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_is_dir_ret ret;
static void is_dir_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct is_dir_state *state = (struct is_dir_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_is_dir (guestfs_h *g,
{
struct guestfs_is_dir_args args;
struct is_dir_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_is_dir");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_is_dir");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_is_dir", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_is_dir") == -1) return -1;
memset (&state, 0, sizeof state);
args.path = (char *) path;
- serial = dispatch (g, GUESTFS_PROC_IS_DIR,
+ serial = guestfs_send (g, GUESTFS_PROC_IS_DIR,
(xdrproc_t) xdr_guestfs_is_dir_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = is_dir_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, is_dir_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_is_dir failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct pvcreate_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void pvcreate_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct pvcreate_state *state = (struct pvcreate_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_pvcreate (guestfs_h *g,
{
struct guestfs_pvcreate_args args;
struct pvcreate_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_pvcreate");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_pvcreate");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_pvcreate", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_pvcreate") == -1) return -1;
memset (&state, 0, sizeof state);
args.device = (char *) device;
- serial = dispatch (g, GUESTFS_PROC_PVCREATE,
+ serial = guestfs_send (g, GUESTFS_PROC_PVCREATE,
(xdrproc_t) xdr_guestfs_pvcreate_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = pvcreate_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, pvcreate_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_pvcreate failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct vgcreate_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void vgcreate_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct vgcreate_state *state = (struct vgcreate_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_vgcreate (guestfs_h *g,
{
struct guestfs_vgcreate_args args;
struct vgcreate_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_vgcreate");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_vgcreate");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_vgcreate", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_vgcreate") == -1) return -1;
memset (&state, 0, sizeof state);
args.volgroup = (char *) volgroup;
args.physvols.physvols_val = (char **) physvols;
for (args.physvols.physvols_len = 0; physvols[args.physvols.physvols_len]; args.physvols.physvols_len++) ;
- serial = dispatch (g, GUESTFS_PROC_VGCREATE,
+ serial = guestfs_send (g, GUESTFS_PROC_VGCREATE,
(xdrproc_t) xdr_guestfs_vgcreate_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = vgcreate_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, vgcreate_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_vgcreate failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct lvcreate_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void lvcreate_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct lvcreate_state *state = (struct lvcreate_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_lvcreate (guestfs_h *g,
{
struct guestfs_lvcreate_args args;
struct lvcreate_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_lvcreate");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_lvcreate");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_lvcreate", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_lvcreate") == -1) return -1;
memset (&state, 0, sizeof state);
args.logvol = (char *) logvol;
args.volgroup = (char *) volgroup;
args.mbytes = mbytes;
- serial = dispatch (g, GUESTFS_PROC_LVCREATE,
+ serial = guestfs_send (g, GUESTFS_PROC_LVCREATE,
(xdrproc_t) xdr_guestfs_lvcreate_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = lvcreate_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, lvcreate_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_lvcreate failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct mkfs_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void mkfs_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct mkfs_state *state = (struct mkfs_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_mkfs (guestfs_h *g,
{
struct guestfs_mkfs_args args;
struct mkfs_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_mkfs");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_mkfs");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_mkfs", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_mkfs") == -1) return -1;
memset (&state, 0, sizeof state);
args.fstype = (char *) fstype;
args.device = (char *) device;
- serial = dispatch (g, GUESTFS_PROC_MKFS,
+ serial = guestfs_send (g, GUESTFS_PROC_MKFS,
(xdrproc_t) xdr_guestfs_mkfs_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = mkfs_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, mkfs_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_mkfs failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct sfdisk_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void sfdisk_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct sfdisk_state *state = (struct sfdisk_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_sfdisk (guestfs_h *g,
{
struct guestfs_sfdisk_args args;
struct sfdisk_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_sfdisk");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_sfdisk");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_sfdisk", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_sfdisk") == -1) return -1;
memset (&state, 0, sizeof state);
args.sectors = sectors;
args.lines.lines_val = (char **) lines;
for (args.lines.lines_len = 0; lines[args.lines.lines_len]; args.lines.lines_len++) ;
- serial = dispatch (g, GUESTFS_PROC_SFDISK,
+ serial = guestfs_send (g, GUESTFS_PROC_SFDISK,
(xdrproc_t) xdr_guestfs_sfdisk_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = sfdisk_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, sfdisk_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_sfdisk failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct write_file_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void write_file_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct write_file_state *state = (struct write_file_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_write_file (guestfs_h *g,
{
struct guestfs_write_file_args args;
struct write_file_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_write_file");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_write_file");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_write_file", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_write_file") == -1) return -1;
memset (&state, 0, sizeof state);
args.path = (char *) path;
args.content = (char *) content;
args.size = size;
- serial = dispatch (g, GUESTFS_PROC_WRITE_FILE,
+ serial = guestfs_send (g, GUESTFS_PROC_WRITE_FILE,
(xdrproc_t) xdr_guestfs_write_file_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = write_file_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, write_file_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_write_file failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct umount_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void umount_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct umount_state *state = (struct umount_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_umount (guestfs_h *g,
{
struct guestfs_umount_args args;
struct umount_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_umount");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_umount");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_umount", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_umount") == -1) return -1;
memset (&state, 0, sizeof state);
args.pathordevice = (char *) pathordevice;
- serial = dispatch (g, GUESTFS_PROC_UMOUNT,
+ serial = guestfs_send (g, GUESTFS_PROC_UMOUNT,
(xdrproc_t) xdr_guestfs_umount_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = umount_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, umount_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_umount failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct mounts_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_mounts_ret ret;
static void mounts_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct mounts_state *state = (struct mounts_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
char **guestfs_mounts (guestfs_h *g)
{
struct mounts_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_mounts");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_mounts");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_mounts", g->state);
- return NULL;
- }
+ if (check_state (g, "guestfs_mounts") == -1) return NULL;
memset (&state, 0, sizeof state);
- serial = dispatch (g, GUESTFS_PROC_MOUNTS, NULL, NULL);
+ serial = guestfs_send (g, GUESTFS_PROC_MOUNTS, NULL, NULL);
if (serial == -1)
return NULL;
- state.cb_done = 0;
- g->reply_cb_internal = mounts_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, mounts_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_mounts failed, see earlier error messages");
return NULL;
}
return NULL;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return NULL;
}
/* caller will free this, but we need to add a NULL entry */
- state.ret.devices.devices_val = safe_realloc (g, state.ret.devices.devices_val,
+ state.ret.devices.devices_val =
+ safe_realloc (g, state.ret.devices.devices_val,
sizeof (char *) * (state.ret.devices.devices_len + 1));
state.ret.devices.devices_val[state.ret.devices.devices_len] = NULL;
return state.ret.devices.devices_val;
}
struct umount_all_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void umount_all_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct umount_all_state *state = (struct umount_all_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_umount_all (guestfs_h *g)
{
struct umount_all_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_umount_all");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_umount_all");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_umount_all", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_umount_all") == -1) return -1;
memset (&state, 0, sizeof state);
- serial = dispatch (g, GUESTFS_PROC_UMOUNT_ALL, NULL, NULL);
+ serial = guestfs_send (g, GUESTFS_PROC_UMOUNT_ALL, NULL, NULL);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = umount_all_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, umount_all_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_umount_all failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct lvm_remove_all_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void lvm_remove_all_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct lvm_remove_all_state *state = (struct lvm_remove_all_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_lvm_remove_all (guestfs_h *g)
{
struct lvm_remove_all_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_lvm_remove_all");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_lvm_remove_all");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_lvm_remove_all", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_lvm_remove_all") == -1) return -1;
memset (&state, 0, sizeof state);
- serial = dispatch (g, GUESTFS_PROC_LVM_REMOVE_ALL, NULL, NULL);
+ serial = guestfs_send (g, GUESTFS_PROC_LVM_REMOVE_ALL, NULL, NULL);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = lvm_remove_all_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, lvm_remove_all_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_lvm_remove_all failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct file_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_file_ret ret;
static void file_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct file_state *state = (struct file_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
char *guestfs_file (guestfs_h *g,
{
struct guestfs_file_args args;
struct file_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_file");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_file");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_file", g->state);
- return NULL;
- }
+ if (check_state (g, "guestfs_file") == -1) return NULL;
memset (&state, 0, sizeof state);
args.path = (char *) path;
- serial = dispatch (g, GUESTFS_PROC_FILE,
+ serial = guestfs_send (g, GUESTFS_PROC_FILE,
(xdrproc_t) xdr_guestfs_file_args, (char *) &args);
if (serial == -1)
return NULL;
- state.cb_done = 0;
- g->reply_cb_internal = file_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, file_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_file failed, see earlier error messages");
return NULL;
}
return NULL;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return NULL;
}
}
struct command_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_command_ret ret;
static void command_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct command_state *state = (struct command_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
char *guestfs_command (guestfs_h *g,
{
struct guestfs_command_args args;
struct command_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_command");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_command");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_command", g->state);
- return NULL;
- }
+ if (check_state (g, "guestfs_command") == -1) return NULL;
memset (&state, 0, sizeof state);
args.arguments.arguments_val = (char **) arguments;
for (args.arguments.arguments_len = 0; arguments[args.arguments.arguments_len]; args.arguments.arguments_len++) ;
- serial = dispatch (g, GUESTFS_PROC_COMMAND,
+ serial = guestfs_send (g, GUESTFS_PROC_COMMAND,
(xdrproc_t) xdr_guestfs_command_args, (char *) &args);
if (serial == -1)
return NULL;
- state.cb_done = 0;
- g->reply_cb_internal = command_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, command_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_command failed, see earlier error messages");
return NULL;
}
return NULL;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return NULL;
}
}
struct command_lines_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_command_lines_ret ret;
static void command_lines_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct command_lines_state *state = (struct command_lines_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
char **guestfs_command_lines (guestfs_h *g,
{
struct guestfs_command_lines_args args;
struct command_lines_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_command_lines");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_command_lines");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_command_lines", g->state);
- return NULL;
- }
+ if (check_state (g, "guestfs_command_lines") == -1) return NULL;
memset (&state, 0, sizeof state);
args.arguments.arguments_val = (char **) arguments;
for (args.arguments.arguments_len = 0; arguments[args.arguments.arguments_len]; args.arguments.arguments_len++) ;
- serial = dispatch (g, GUESTFS_PROC_COMMAND_LINES,
+ serial = guestfs_send (g, GUESTFS_PROC_COMMAND_LINES,
(xdrproc_t) xdr_guestfs_command_lines_args, (char *) &args);
if (serial == -1)
return NULL;
- state.cb_done = 0;
- g->reply_cb_internal = command_lines_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, command_lines_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_command_lines failed, see earlier error messages");
return NULL;
}
return NULL;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return NULL;
}
/* caller will free this, but we need to add a NULL entry */
- state.ret.lines.lines_val = safe_realloc (g, state.ret.lines.lines_val,
+ state.ret.lines.lines_val =
+ safe_realloc (g, state.ret.lines.lines_val,
sizeof (char *) * (state.ret.lines.lines_len + 1));
state.ret.lines.lines_val[state.ret.lines.lines_len] = NULL;
return state.ret.lines.lines_val;
}
struct stat_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_stat_ret ret;
static void stat_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct stat_state *state = (struct stat_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
struct guestfs_stat *guestfs_stat (guestfs_h *g,
{
struct guestfs_stat_args args;
struct stat_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_stat");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_stat");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_stat", g->state);
- return NULL;
- }
+ if (check_state (g, "guestfs_stat") == -1) return NULL;
memset (&state, 0, sizeof state);
args.path = (char *) path;
- serial = dispatch (g, GUESTFS_PROC_STAT,
+ serial = guestfs_send (g, GUESTFS_PROC_STAT,
(xdrproc_t) xdr_guestfs_stat_args, (char *) &args);
if (serial == -1)
return NULL;
- state.cb_done = 0;
- g->reply_cb_internal = stat_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, stat_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_stat failed, see earlier error messages");
return NULL;
}
return NULL;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return NULL;
}
}
struct lstat_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_lstat_ret ret;
static void lstat_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct lstat_state *state = (struct lstat_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
struct guestfs_stat *guestfs_lstat (guestfs_h *g,
{
struct guestfs_lstat_args args;
struct lstat_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_lstat");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_lstat");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_lstat", g->state);
- return NULL;
- }
+ if (check_state (g, "guestfs_lstat") == -1) return NULL;
memset (&state, 0, sizeof state);
args.path = (char *) path;
- serial = dispatch (g, GUESTFS_PROC_LSTAT,
+ serial = guestfs_send (g, GUESTFS_PROC_LSTAT,
(xdrproc_t) xdr_guestfs_lstat_args, (char *) &args);
if (serial == -1)
return NULL;
- state.cb_done = 0;
- g->reply_cb_internal = lstat_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, lstat_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_lstat failed, see earlier error messages");
return NULL;
}
return NULL;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return NULL;
}
}
struct statvfs_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_statvfs_ret ret;
static void statvfs_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct statvfs_state *state = (struct statvfs_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
struct guestfs_statvfs *guestfs_statvfs (guestfs_h *g,
{
struct guestfs_statvfs_args args;
struct statvfs_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_statvfs");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_statvfs");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_statvfs", g->state);
- return NULL;
- }
+ if (check_state (g, "guestfs_statvfs") == -1) return NULL;
memset (&state, 0, sizeof state);
args.path = (char *) path;
- serial = dispatch (g, GUESTFS_PROC_STATVFS,
+ serial = guestfs_send (g, GUESTFS_PROC_STATVFS,
(xdrproc_t) xdr_guestfs_statvfs_args, (char *) &args);
if (serial == -1)
return NULL;
- state.cb_done = 0;
- g->reply_cb_internal = statvfs_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, statvfs_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_statvfs failed, see earlier error messages");
return NULL;
}
return NULL;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return NULL;
}
}
struct tune2fs_l_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_tune2fs_l_ret ret;
static void tune2fs_l_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct tune2fs_l_state *state = (struct tune2fs_l_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
char **guestfs_tune2fs_l (guestfs_h *g,
{
struct guestfs_tune2fs_l_args args;
struct tune2fs_l_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_tune2fs_l");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_tune2fs_l");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_tune2fs_l", g->state);
- return NULL;
- }
+ if (check_state (g, "guestfs_tune2fs_l") == -1) return NULL;
memset (&state, 0, sizeof state);
args.device = (char *) device;
- serial = dispatch (g, GUESTFS_PROC_TUNE2FS_L,
+ serial = guestfs_send (g, GUESTFS_PROC_TUNE2FS_L,
(xdrproc_t) xdr_guestfs_tune2fs_l_args, (char *) &args);
if (serial == -1)
return NULL;
- state.cb_done = 0;
- g->reply_cb_internal = tune2fs_l_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, tune2fs_l_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_tune2fs_l failed, see earlier error messages");
return NULL;
}
return NULL;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return NULL;
}
/* caller will free this, but we need to add a NULL entry */
- state.ret.superblock.superblock_val = safe_realloc (g, state.ret.superblock.superblock_val,
+ state.ret.superblock.superblock_val =
+ safe_realloc (g, state.ret.superblock.superblock_val,
sizeof (char *) * (state.ret.superblock.superblock_len + 1));
state.ret.superblock.superblock_val[state.ret.superblock.superblock_len] = NULL;
return state.ret.superblock.superblock_val;
}
struct blockdev_setro_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void blockdev_setro_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct blockdev_setro_state *state = (struct blockdev_setro_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_blockdev_setro (guestfs_h *g,
{
struct guestfs_blockdev_setro_args args;
struct blockdev_setro_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_blockdev_setro");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_blockdev_setro");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_blockdev_setro", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_blockdev_setro") == -1) return -1;
memset (&state, 0, sizeof state);
args.device = (char *) device;
- serial = dispatch (g, GUESTFS_PROC_BLOCKDEV_SETRO,
+ serial = guestfs_send (g, GUESTFS_PROC_BLOCKDEV_SETRO,
(xdrproc_t) xdr_guestfs_blockdev_setro_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = blockdev_setro_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, blockdev_setro_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_blockdev_setro failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct blockdev_setrw_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void blockdev_setrw_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct blockdev_setrw_state *state = (struct blockdev_setrw_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_blockdev_setrw (guestfs_h *g,
{
struct guestfs_blockdev_setrw_args args;
struct blockdev_setrw_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_blockdev_setrw");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_blockdev_setrw");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_blockdev_setrw", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_blockdev_setrw") == -1) return -1;
memset (&state, 0, sizeof state);
args.device = (char *) device;
- serial = dispatch (g, GUESTFS_PROC_BLOCKDEV_SETRW,
+ serial = guestfs_send (g, GUESTFS_PROC_BLOCKDEV_SETRW,
(xdrproc_t) xdr_guestfs_blockdev_setrw_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = blockdev_setrw_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, blockdev_setrw_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_blockdev_setrw failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct blockdev_getro_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_blockdev_getro_ret ret;
static void blockdev_getro_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct blockdev_getro_state *state = (struct blockdev_getro_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_blockdev_getro (guestfs_h *g,
{
struct guestfs_blockdev_getro_args args;
struct blockdev_getro_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_blockdev_getro");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_blockdev_getro");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_blockdev_getro", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_blockdev_getro") == -1) return -1;
memset (&state, 0, sizeof state);
args.device = (char *) device;
- serial = dispatch (g, GUESTFS_PROC_BLOCKDEV_GETRO,
+ serial = guestfs_send (g, GUESTFS_PROC_BLOCKDEV_GETRO,
(xdrproc_t) xdr_guestfs_blockdev_getro_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = blockdev_getro_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, blockdev_getro_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_blockdev_getro failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct blockdev_getss_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_blockdev_getss_ret ret;
static void blockdev_getss_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct blockdev_getss_state *state = (struct blockdev_getss_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_blockdev_getss (guestfs_h *g,
{
struct guestfs_blockdev_getss_args args;
struct blockdev_getss_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_blockdev_getss");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_blockdev_getss");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_blockdev_getss", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_blockdev_getss") == -1) return -1;
memset (&state, 0, sizeof state);
args.device = (char *) device;
- serial = dispatch (g, GUESTFS_PROC_BLOCKDEV_GETSS,
+ serial = guestfs_send (g, GUESTFS_PROC_BLOCKDEV_GETSS,
(xdrproc_t) xdr_guestfs_blockdev_getss_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = blockdev_getss_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, blockdev_getss_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_blockdev_getss failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct blockdev_getbsz_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_blockdev_getbsz_ret ret;
static void blockdev_getbsz_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct blockdev_getbsz_state *state = (struct blockdev_getbsz_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_blockdev_getbsz (guestfs_h *g,
{
struct guestfs_blockdev_getbsz_args args;
struct blockdev_getbsz_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_blockdev_getbsz");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_blockdev_getbsz");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_blockdev_getbsz", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_blockdev_getbsz") == -1) return -1;
memset (&state, 0, sizeof state);
args.device = (char *) device;
- serial = dispatch (g, GUESTFS_PROC_BLOCKDEV_GETBSZ,
+ serial = guestfs_send (g, GUESTFS_PROC_BLOCKDEV_GETBSZ,
(xdrproc_t) xdr_guestfs_blockdev_getbsz_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = blockdev_getbsz_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, blockdev_getbsz_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_blockdev_getbsz failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct blockdev_setbsz_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void blockdev_setbsz_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct blockdev_setbsz_state *state = (struct blockdev_setbsz_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_blockdev_setbsz (guestfs_h *g,
{
struct guestfs_blockdev_setbsz_args args;
struct blockdev_setbsz_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_blockdev_setbsz");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_blockdev_setbsz");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_blockdev_setbsz", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_blockdev_setbsz") == -1) return -1;
memset (&state, 0, sizeof state);
args.device = (char *) device;
args.blocksize = blocksize;
- serial = dispatch (g, GUESTFS_PROC_BLOCKDEV_SETBSZ,
+ serial = guestfs_send (g, GUESTFS_PROC_BLOCKDEV_SETBSZ,
(xdrproc_t) xdr_guestfs_blockdev_setbsz_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = blockdev_setbsz_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, blockdev_setbsz_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_blockdev_setbsz failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct blockdev_getsz_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_blockdev_getsz_ret ret;
static void blockdev_getsz_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct blockdev_getsz_state *state = (struct blockdev_getsz_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int64_t guestfs_blockdev_getsz (guestfs_h *g,
{
struct guestfs_blockdev_getsz_args args;
struct blockdev_getsz_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_blockdev_getsz");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_blockdev_getsz");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_blockdev_getsz", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_blockdev_getsz") == -1) return -1;
memset (&state, 0, sizeof state);
args.device = (char *) device;
- serial = dispatch (g, GUESTFS_PROC_BLOCKDEV_GETSZ,
+ serial = guestfs_send (g, GUESTFS_PROC_BLOCKDEV_GETSZ,
(xdrproc_t) xdr_guestfs_blockdev_getsz_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = blockdev_getsz_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, blockdev_getsz_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_blockdev_getsz failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct blockdev_getsize64_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
struct guestfs_blockdev_getsize64_ret ret;
static void blockdev_getsize64_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct blockdev_getsize64_state *state = (struct blockdev_getsize64_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
return;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int64_t guestfs_blockdev_getsize64 (guestfs_h *g,
{
struct guestfs_blockdev_getsize64_args args;
struct blockdev_getsize64_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_blockdev_getsize64");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_blockdev_getsize64");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_blockdev_getsize64", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_blockdev_getsize64") == -1) return -1;
memset (&state, 0, sizeof state);
args.device = (char *) device;
- serial = dispatch (g, GUESTFS_PROC_BLOCKDEV_GETSIZE64,
+ serial = guestfs_send (g, GUESTFS_PROC_BLOCKDEV_GETSIZE64,
(xdrproc_t) xdr_guestfs_blockdev_getsize64_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = blockdev_getsize64_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, blockdev_getsize64_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_blockdev_getsize64 failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct blockdev_flushbufs_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void blockdev_flushbufs_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct blockdev_flushbufs_state *state = (struct blockdev_flushbufs_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_blockdev_flushbufs (guestfs_h *g,
{
struct guestfs_blockdev_flushbufs_args args;
struct blockdev_flushbufs_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_blockdev_flushbufs");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_blockdev_flushbufs");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_blockdev_flushbufs", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_blockdev_flushbufs") == -1) return -1;
memset (&state, 0, sizeof state);
args.device = (char *) device;
- serial = dispatch (g, GUESTFS_PROC_BLOCKDEV_FLUSHBUFS,
+ serial = guestfs_send (g, GUESTFS_PROC_BLOCKDEV_FLUSHBUFS,
(xdrproc_t) xdr_guestfs_blockdev_flushbufs_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = blockdev_flushbufs_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, blockdev_flushbufs_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_blockdev_flushbufs failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}
}
struct blockdev_rereadpt_state {
- int cb_done;
+ int cb_state;
struct guestfs_message_header hdr;
struct guestfs_message_error err;
};
static void blockdev_rereadpt_cb (guestfs_h *g, void *data, XDR *xdr)
{
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
struct blockdev_rereadpt_state *state = (struct blockdev_rereadpt_state *) data;
if (!xdr_guestfs_message_header (xdr, &state->hdr)) {
goto done;
}
done:
- state->cb_done = 1;
- g->main_loop->main_loop_quit (g->main_loop, g);
+ state->cb_state = 1;
+ ml->main_loop_quit (ml, g);
}
int guestfs_blockdev_rereadpt (guestfs_h *g,
{
struct guestfs_blockdev_rereadpt_args args;
struct blockdev_rereadpt_state state;
+ guestfs_main_loop *ml = guestfs_get_main_loop (g);
int serial;
- if (g->state != READY) {
- if (g->state == CONFIG)
- error (g, "%s: call launch() before using this function",
- "guestfs_blockdev_rereadpt");
- else if (g->state == LAUNCHING)
- error (g, "%s: call wait_ready() before using this function",
- "guestfs_blockdev_rereadpt");
- else
- error (g, "%s called from the wrong state, %d != READY",
- "guestfs_blockdev_rereadpt", g->state);
- return -1;
- }
+ if (check_state (g, "guestfs_blockdev_rereadpt") == -1) return -1;
memset (&state, 0, sizeof state);
args.device = (char *) device;
- serial = dispatch (g, GUESTFS_PROC_BLOCKDEV_REREADPT,
+ serial = guestfs_send (g, GUESTFS_PROC_BLOCKDEV_REREADPT,
(xdrproc_t) xdr_guestfs_blockdev_rereadpt_args, (char *) &args);
if (serial == -1)
return -1;
- state.cb_done = 0;
- g->reply_cb_internal = blockdev_rereadpt_cb;
- g->reply_cb_internal_data = &state;
- (void) g->main_loop->main_loop_run (g->main_loop, g);
- g->reply_cb_internal = NULL;
- g->reply_cb_internal_data = NULL;
- if (!state.cb_done) {
+ state.cb_state = 0;
+ guestfs_set_reply_callback (g, blockdev_rereadpt_cb, &state);
+ (void) ml->main_loop_run (ml, g);
+ guestfs_set_reply_callback (g, NULL, NULL);
+ if (!state.cb_state) {
error (g, "guestfs_blockdev_rereadpt failed, see earlier error messages");
return -1;
}
return -1;
if (state.hdr.status == GUESTFS_STATUS_ERROR) {
- error (g, "%s", state.err.error);
+ error (g, "%s", state.err.error_message);
return -1;
}