Updates with respect to migration
[handlervirt.git] / handler_virt.h
blob8d5f37b68a773897ae2b2139608ee7ca3a4e5c0a
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
3 /* Cherokee
5 * Authors:
6 * Alvaro Lopez Ortega <alvaro@alobbs.com>
7 * Stefan de Konink <stefan@konink.de>
9 * Copyright (C) 2001-2008 Alvaro Lopez Ortega
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of version 2 of the GNU General Public
13 * License as published by the Free Software Foundation.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
23 * USA
26 #ifndef CHEROKEE_HANDLER_VIRT_H
27 #define CHEROKEE_HANDLER_VIRT_H
30 #include "common.h"
31 #include "buffer.h"
32 #include "handler.h"
33 #include "connection.h"
34 #include "plugin_loader.h"
37 #include <libvirt/libvirt.h>
38 #include <cherokee/cherokee.h>
39 #include "handler_clusterstats.h"
41 /* Data types
43 typedef struct {
44 cherokee_handler_clusterstats_t base;
46 /* Configuration parameters */
47 cherokee_boolean_t authenticate;
48 cherokee_boolean_t read_only;
49 cherokee_buffer_t xsl;
50 cherokee_buffer_t virt;
51 } cherokee_handler_virt_props_t;
53 typedef struct {
54 cherokee_handler_t base;
55 cherokee_buffer_t buffer;
56 cherokee_buffer_t user;
57 cherokee_buffer_t vm;
58 enum {
59 not_authenticated = -2,
60 not_implemented = -1,
61 nothing = 0,
62 domainAttachDevice,
63 domainAttachDevice_args,
64 domainDetachDevice,
65 domainGetID,
66 domainGetMaxMemory,
67 domainGetMaxVcpus,
68 domainGetName,
69 domainGetOSType,
70 domainGetSchedulerParameters,
71 domainGetSchedulerType,
72 domainGetUUID,
73 domainGetUUIDString,
74 domainGetVcpus,
75 domainCreate,
76 domainDestroy,
77 domainReboot,
78 domainRestore,
79 domainMigrate_args,
80 domainSave,
81 domainShutdown,
82 domainInterfaceStats,
83 domainUndefine,
84 storageVolCreateXML,
85 storageVolCreateXML_args,
86 storageVolCloneXML_args,
87 storageVolCloneStatus_args,
88 storageVolDelete_args,
89 storageVolSetPassword_args,
90 graph,
91 graphLoad_args,
92 graphInterface_args,
93 xml,
94 domainDefineXML_args,
95 domainDefineXML,
96 domainGetXMLDesc,
97 domainGetXMLSnapshots,
98 storageVolGetXMLDesc_args,
99 showall,
100 showuservms
101 } action;
102 } cherokee_handler_virt_t;
104 #define HDL_VIRT(x) ((cherokee_handler_virt_t *)(x))
105 #define PROP_VIRT(x) ((cherokee_handler_virt_props_t *)(x))
106 #define HDL_VIRT_PROPS(x) (PROP_VIRT(MODULE(x)->props))
108 /* Library init function
110 void PLUGIN_INIT_NAME(virt) (cherokee_plugin_loader_t *loader);
111 ret_t cherokee_handler_virt_new (cherokee_handler_t **hdl, cherokee_connection_t *cnt, cherokee_module_props_t *props);
113 /* virtual methods implementation
115 ret_t cherokee_handler_virt_init (cherokee_handler_virt_t *hdl);
117 static ret_t virt_build_page (cherokee_handler_virt_t *hdl);
119 static virStorageVolPtr virt_get_vol_by_args(cherokee_handler_virt_t *hdl, virConnectPtr virConn, unsigned short int prefix);
121 static ret_t load_xml(cherokee_handler_virt_t *hdl, cherokee_buffer_t *xmlDesc);
122 static ret_t save_xml(cherokee_handler_virt_t *hdl, virDomainPtr result, cherokee_buffer_t *buf);
124 #endif /* CHEROKEE_HANDLER_VIRT_H */