Makes a series of non-trivial calls.
[libguestfs.git] / daemon / stubs.c
1 /* libguestfs generated file
2  * WARNING: THIS FILE IS GENERATED BY 'src/generator.ml'.
3  * ANY CHANGES YOU MAKE TO THIS FILE WILL BE LOST.
4  *
5  * Copyright (C) 2009 Red Hat Inc.
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #include <rpc/types.h>
23 #include <rpc/xdr.h>
24 #include "daemon.h"
25 #include "../src/guestfs_protocol.h"
26 #include "actions.h"
27
28 static void mount_stub (XDR *xdr_in)
29 {
30   int r;
31   struct guestfs_mount_args args;
32   const char *device;
33   const char *mountpoint;
34
35   memset (&args, 0, sizeof args);
36
37   if (!xdr_guestfs_mount_args (xdr_in, &args)) {
38     reply_with_error ("mount: daemon failed to decode procedure arguments");
39     return;
40   }
41   device = args.device;
42   mountpoint = args.mountpoint;
43
44   r = do_mount (device, mountpoint);
45   if (r == -1)
46     /* do_mount has already called reply_with_error, so just return */
47     return;
48
49   reply (NULL, NULL);
50 }
51
52 static void sync_stub (XDR *xdr_in)
53 {
54   int r;
55
56   r = do_sync ();
57   if (r == -1)
58     /* do_sync has already called reply_with_error, so just return */
59     return;
60
61   reply (NULL, NULL);
62 }
63
64 static void touch_stub (XDR *xdr_in)
65 {
66   int r;
67   struct guestfs_touch_args args;
68   const char *path;
69
70   memset (&args, 0, sizeof args);
71
72   if (!xdr_guestfs_touch_args (xdr_in, &args)) {
73     reply_with_error ("touch: daemon failed to decode procedure arguments");
74     return;
75   }
76   path = args.path;
77
78   r = do_touch (path);
79   if (r == -1)
80     /* do_touch has already called reply_with_error, so just return */
81     return;
82
83   reply (NULL, NULL);
84 }
85
86 void dispatch_incoming_message (XDR *xdr_in)
87 {
88   switch (proc_nr) {
89     case GUESTFS_PROC_MOUNT:
90       mount_stub (xdr_in);
91       break;
92     case GUESTFS_PROC_SYNC:
93       sync_stub (xdr_in);
94       break;
95     case GUESTFS_PROC_TOUCH:
96       touch_stub (xdr_in);
97       break;
98     default:
99       reply_with_error ("dispatch_incoming_message: unknown procedure number %d", proc_nr);
100   }
101 }