VirtualBox

source: vbox/trunk/src/VBox/Frontends/VBoxBalloonCtrl/VBoxWatchdogInternal.h@ 41360

Last change on this file since 41360 was 41286, checked in by vboxsync, 13 years ago

VBoxBalloonCtrl: Added VM grouping support, update on API monitor.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.3 KB
Line 
1/* $Id: VBoxWatchdogInternal.h 41286 2012-05-14 14:46:29Z vboxsync $ */
2/** @file
3 * VBoxWatchdog - VirtualBox Watchdog Service.
4 */
5
6/*
7 * Copyright (C) 2011-2012 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#ifndef ___H_VBOXWATCHDOG
19#define ___H_VBOXWATCHDOG
20
21#ifndef VBOX_ONLY_DOCS
22# include <iprt/getopt.h>
23# include <iprt/time.h>
24
25# include <VBox/err.h>
26# include <VBox/com/com.h>
27# include <VBox/com/string.h>
28# include <VBox/com/Guid.h>
29# include <VBox/com/array.h>
30# include <VBox/com/ErrorInfo.h>
31# include <VBox/com/VirtualBox.h>
32#endif /* !VBOX_ONLY_DOCS */
33
34#include <algorithm>
35#include <map>
36#include <sstream>
37#include <string>
38#include <vector>
39
40using namespace com;
41
42////////////////////////////////////////////////////////////////////////////////
43//
44// definitions
45//
46////////////////////////////////////////////////////////////////////////////////
47
48/** Command handler argument. */
49struct HandlerArg
50{
51 int argc;
52 char **argv;
53};
54
55/**
56 * A module's payload for a machine entry.
57 * The payload data is not (yet) thread safe -- so only
58 * use this in one module at a time only!
59 */
60typedef struct VBOXWATCHDOG_MODULE_PAYLOAD
61{
62 /** Pointer to allocated payload. Can be NULL if
63 * a module doesn't have an own payload. */
64 void *pvData;
65 /** Size of payload (in bytes). */
66 size_t cbData;
67 /** @todo Add mutex for locking + getPayloadLocked(). */
68} VBOXWATCHDOG_MODULE_PAYLOAD, *PVBOXWATCHDOG_MODULE_PAYLOAD;
69
70/**
71 * Map containing a module's individual payload -- the module itself
72 * is responsible for allocating/handling/destroying this payload.
73 * Primary key is the module name.
74 */
75typedef std::map<const char*, VBOXWATCHDOG_MODULE_PAYLOAD> mapPayload;
76typedef std::map<const char*, VBOXWATCHDOG_MODULE_PAYLOAD>::iterator mapPayloadIter;
77typedef std::map<const char*, VBOXWATCHDOG_MODULE_PAYLOAD>::const_iterator mapPayloadIterConst;
78
79/** Group list (plus additional per-group flags, not used yet) for one VM.
80 * Primary key is the group name, secondary specify flags (if any). */
81typedef std::map<Utf8Str, uint32_t> mapGroups;
82typedef std::map<Utf8Str, uint32_t>::iterator mapGroupsIter;
83typedef std::map<Utf8Str, uint32_t>::const_iterator mapGroupsIterConst;
84
85/** A machine's internal entry.
86 * Primary key is the machine's UUID. */
87typedef struct VBOXWATCHDOG_MACHINE
88{
89 ComPtr<IMachine> machine;
90#ifndef VBOX_WATCHDOG_GLOBAL_PERFCOL
91 ComPtr<IPerformanceCollector> collector;
92#endif
93 /** The VM group(s) this machine belongs to.
94 * Contains groups from per-machine "VBoxInternal2/VMGroup". */
95 mapGroups groups;
96 /** Map containing the individual
97 * module payloads. */
98 mapPayload payload;
99} VBOXWATCHDOG_MACHINE, *PVBOXWATCHDOG_MACHINE;
100typedef std::map<Bstr, VBOXWATCHDOG_MACHINE> mapVM;
101typedef std::map<Bstr, VBOXWATCHDOG_MACHINE>::iterator mapVMIter;
102typedef std::map<Bstr, VBOXWATCHDOG_MACHINE>::const_iterator mapVMIterConst;
103
104/** Members of a VM group; currently only represented by the machine's UUID.
105 * Primary key is the machine's UUID. */
106typedef std::vector<Bstr> vecGroupMembers;
107typedef std::vector<Bstr>::iterator vecGroupMembersIter;
108typedef std::vector<Bstr>::const_iterator vecGroupMembersIterConst;
109
110/** A VM group. Can contain none, one or more group members.
111 * Primary key is the group's name. */
112typedef std::map<Utf8Str, vecGroupMembers> mapGroup;
113typedef std::map<Utf8Str, vecGroupMembers>::iterator mapGroupIter;
114typedef std::map<Utf8Str, vecGroupMembers>::const_iterator mapGroupIterConst;
115
116/**
117 * A module descriptor.
118 */
119typedef struct
120{
121 /** The short module name. */
122 const char *pszName;
123 /** The longer module name. */
124 const char *pszDescription;
125 /** A comma-separated list of modules this module
126 * depends on. Might be NULL if no dependencies. */
127 const char *pszDepends;
128 /** Priority (lower is higher, 0 is invalid) of
129 * module execution. */
130 uint32_t uPriority;
131 /** The usage options stuff for the --help screen. */
132 const char *pszUsage;
133 /** The option descriptions for the --help screen. */
134 const char *pszOptions;
135
136 /**
137 * Called before parsing arguments.
138 * @returns VBox status code.
139 */
140 DECLCALLBACKMEMBER(int, pfnPreInit)(void);
141
142 /**
143 * Tries to parse the given command line options.
144 *
145 * @returns 0 if we parsed, -1 if it didn't and anything else means exit.
146 * @param argc Argument count.
147 * @param argv Arguments.
148 */
149 DECLCALLBACKMEMBER(int, pfnOption)(int argc, char **argv);
150
151 /**
152 * Called before parsing arguments.
153 * @returns VBox status code.
154 */
155 DECLCALLBACKMEMBER(int, pfnInit)(void);
156
157 /** Called from the watchdog's main function. Non-blocking.
158 *
159 * @returns VBox status code.
160 */
161 DECLCALLBACKMEMBER(int, pfnMain)(void);
162
163 /**
164 * Stop the module.
165 */
166 DECLCALLBACKMEMBER(int, pfnStop)(void);
167
168 /**
169 * Does termination cleanups.
170 *
171 * @remarks This may be called even if pfnInit hasn't been called!
172 */
173 DECLCALLBACKMEMBER(void, pfnTerm)(void);
174
175 /** @name Callbacks.
176 * @{
177 */
178
179 /**
180 *
181 * @returns VBox status code.
182 */
183 DECLCALLBACKMEMBER(int, pfnOnMachineRegistered)(const Bstr &strUuid);
184
185 /**
186 *
187 * @returns VBox status code.
188 */
189 DECLCALLBACKMEMBER(int, pfnOnMachineUnregistered)(const Bstr &strUuid);
190
191 /**
192 *
193 * @returns VBox status code.
194 */
195 DECLCALLBACKMEMBER(int, pfnOnMachineStateChanged)(const Bstr &strUuid, MachineState_T enmState);
196
197 /**
198 *
199 * @returns VBox status code.
200 */
201 DECLCALLBACKMEMBER(int, pfnOnServiceStateChanged)(bool fAvailable);
202
203 /** @} */
204} VBOXMODULE;
205/** Pointer to a VBOXMODULE. */
206typedef VBOXMODULE *PVBOXMODULE;
207/** Pointer to a const VBOXMODULE. */
208typedef VBOXMODULE const *PCVBOXMODULE;
209
210RT_C_DECLS_BEGIN
211
212extern bool g_fDryrun;
213extern bool g_fVerbose;
214extern ComPtr<IVirtualBox> g_pVirtualBox;
215extern ComPtr<ISession> g_pSession;
216extern mapVM g_mapVM;
217extern mapGroup g_mapGroup;
218# ifdef VBOX_WATCHDOG_GLOBAL_PERFCOL
219extern ComPtr<IPerformanceCollector> g_pPerfCollector;
220# endif
221
222extern VBOXMODULE g_ModBallooning;
223extern VBOXMODULE g_ModAPIMonitor;
224
225extern void serviceLog(const char *pszFormat, ...);
226#define serviceLogVerbose(a) if (g_fVerbose) { serviceLog a; }
227
228int groupAdd(mapGroups &groups, const char *pszGroupsToAdd, uint32_t fFlags);
229
230extern int getMetric(PVBOXWATCHDOG_MACHINE pMachine, const Bstr& strName, LONG *pulData);
231void* payloadFrom(PVBOXWATCHDOG_MACHINE pMachine, const char *pszModule);
232int payloadAlloc(PVBOXWATCHDOG_MACHINE pMachine, const char *pszModule, size_t cbSize, void **ppszPayload);
233void payloadFree(PVBOXWATCHDOG_MACHINE pMachine, const char *pszModule);
234PVBOXWATCHDOG_MACHINE getMachine(const Bstr& strUuid);
235MachineState_T getMachineState(const PVBOXWATCHDOG_MACHINE pMachine);
236
237RT_C_DECLS_END
238
239#endif /* !___H_VBOXWATCHDOG */
240
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette