VirtualBox

source: vbox/trunk/src/VBox/Main/include/GuestImpl.h@ 33505

Last change on this file since 33505 was 33497, checked in by vboxsync, 14 years ago

Build fix.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 8.7 KB
Line 
1/** @file
2 *
3 * VirtualBox COM class implementation
4 */
5
6/*
7 * Copyright (C) 2006-2010 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_GUESTIMPL
19#define ____H_GUESTIMPL
20
21#include "VirtualBoxBase.h"
22#include <iprt/list.h>
23#include <VBox/ostypes.h>
24
25#ifdef VBOX_WITH_GUEST_CONTROL
26# include <VBox/HostServices/GuestControlSvc.h>
27# include <hgcm/HGCM.h>
28using namespace guestControl;
29#endif
30
31typedef enum
32{
33 GUESTSTATTYPE_CPUUSER = 0,
34 GUESTSTATTYPE_CPUKERNEL = 1,
35 GUESTSTATTYPE_CPUIDLE = 2,
36 GUESTSTATTYPE_MEMTOTAL = 3,
37 GUESTSTATTYPE_MEMFREE = 4,
38 GUESTSTATTYPE_MEMBALLOON = 5,
39 GUESTSTATTYPE_MEMCACHE = 6,
40 GUESTSTATTYPE_PAGETOTAL = 7,
41 GUESTSTATTYPE_PAGEFREE = 8,
42 GUESTSTATTYPE_MAX = 9
43} GUESTSTATTYPE;
44
45class Console;
46#ifdef VBOX_WITH_GUEST_CONTROL
47class Progress;
48#endif
49
50class ATL_NO_VTABLE Guest :
51 public VirtualBoxBase,
52 VBOX_SCRIPTABLE_IMPL(IGuest)
53{
54public:
55 VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT(Guest, IGuest)
56
57 DECLARE_NOT_AGGREGATABLE(Guest)
58
59 DECLARE_PROTECT_FINAL_CONSTRUCT()
60
61 BEGIN_COM_MAP(Guest)
62 COM_INTERFACE_ENTRY(ISupportErrorInfo)
63 COM_INTERFACE_ENTRY(IGuest)
64 COM_INTERFACE_ENTRY(IDispatch)
65 END_COM_MAP()
66
67 DECLARE_EMPTY_CTOR_DTOR (Guest)
68
69 HRESULT FinalConstruct();
70 void FinalRelease();
71
72 // Public initializer/uninitializer for internal purposes only
73 HRESULT init (Console *aParent);
74 void uninit();
75
76 // IGuest properties
77 STDMETHOD(COMGETTER(OSTypeId)) (BSTR *aOSTypeId);
78 STDMETHOD(COMGETTER(AdditionsRunLevel)) (AdditionsRunLevelType_T *aRunLevel);
79 STDMETHOD(COMGETTER(AdditionsVersion)) (BSTR *aAdditionsVersion);
80 /** @todo Remove later by replacing it by AdditionsFeatureAvailable(). */
81 STDMETHOD(COMGETTER(SupportsSeamless)) (BOOL *aSupportsSeamless);
82 STDMETHOD(COMGETTER(SupportsGraphics)) (BOOL *aSupportsGraphics);
83#if 0
84 /** @todo Will replace SupportsSeamless, SupportsGraphics, ... */
85 STDMETHOD(COMGETTER(AdditionsFeatureAvailable)) (LONG64 aFeature, BOOL *aActive, BOOL *aAvailable);
86#endif
87 STDMETHOD(COMGETTER(MemoryBalloonSize)) (ULONG *aMemoryBalloonSize);
88 STDMETHOD(COMSETTER(MemoryBalloonSize)) (ULONG aMemoryBalloonSize);
89 STDMETHOD(COMGETTER(StatisticsUpdateInterval)) (ULONG *aUpdateInterval);
90 STDMETHOD(COMSETTER(StatisticsUpdateInterval)) (ULONG aUpdateInterval);
91
92 // IGuest methods
93 STDMETHOD(GetAdditionsStatus)(AdditionsRunLevelType_T aLevel, BOOL *aActive);
94 STDMETHOD(SetCredentials)(IN_BSTR aUserName, IN_BSTR aPassword,
95 IN_BSTR aDomain, BOOL aAllowInteractiveLogon);
96 STDMETHOD(ExecuteProcess)(IN_BSTR aCommand, ULONG aFlags,
97 ComSafeArrayIn(IN_BSTR, aArguments), ComSafeArrayIn(IN_BSTR, aEnvironment),
98 IN_BSTR aUserName, IN_BSTR aPassword,
99 ULONG aTimeoutMS, ULONG *aPID, IProgress **aProgress);
100 STDMETHOD(GetProcessOutput)(ULONG aPID, ULONG aFlags, ULONG aTimeoutMS, LONG64 aSize, ComSafeArrayOut(BYTE, aData));
101 STDMETHOD(SetProcessInput)(ULONG aPID, ULONG aFlags, ComSafeArrayIn(BYTE, aData), ULONG *aBytesWritten);
102 STDMETHOD(GetProcessStatus)(ULONG aPID, ULONG *aExitCode, ULONG *aFlags, ULONG *aStatus);
103 STDMETHOD(CopyToGuest)(IN_BSTR aSource, IN_BSTR aDest, IN_BSTR aUserName, IN_BSTR aPassword, ULONG aFlags, IProgress **aProgress);
104 STDMETHOD(InternalGetStatistics)(ULONG *aCpuUser, ULONG *aCpuKernel, ULONG *aCpuIdle,
105 ULONG *aMemTotal, ULONG *aMemFree, ULONG *aMemBalloon, ULONG *aMemShared, ULONG *aMemCache,
106 ULONG *aPageTotal, ULONG *aMemAllocTotal, ULONG *aMemFreeTotal, ULONG *aMemBalloonTotal, ULONG *aMemSharedTotal);
107 STDMETHOD(UpdateGuestAdditions)(IN_BSTR aSource, IProgress **aProgress);
108
109 // Public methods that are not in IDL (only called internally).
110 HRESULT executeProcessInternal(IN_BSTR aCommand, ULONG aFlags,
111 ComSafeArrayIn(IN_BSTR, aArguments), ComSafeArrayIn(IN_BSTR, aEnvironment),
112 IN_BSTR aUserName, IN_BSTR aPassword,
113 ULONG aTimeoutMS, ULONG *aPID, IProgress **aProgress);
114 void setAdditionsInfo(Bstr aInterfaceVersion, VBOXOSTYPE aOsType);
115 void setAdditionsInfo2(Bstr aAdditionsVersion, Bstr aVersionName, Bstr aRevision);
116 void setAdditionsStatus(VBoxGuestStatusFacility Facility, VBoxGuestStatusCurrent Status, ULONG ulFlags);
117 void setSupportedFeatures(uint32_t fCaps, uint32_t fActive);
118 HRESULT setStatistic(ULONG aCpuId, GUESTSTATTYPE enmType, ULONG aVal);
119 BOOL isPageFusionEnabled();
120# ifdef VBOX_WITH_GUEST_CONTROL
121 /** Static callback for handling guest notifications. */
122 static DECLCALLBACK(int) doGuestCtrlNotification(void *pvExtension, uint32_t u32Function, void *pvParms, uint32_t cbParms);
123# endif
124 static HRESULT setErrorStatic(HRESULT aResultCode,
125 const Utf8Str &aText)
126 {
127 return setErrorInternal(aResultCode, getStaticClassIID(), getStaticComponentName(), aText, false, true);
128 }
129
130private:
131
132 // Internal tasks
133 struct TaskGuest; /* Worker thread helper. */
134#ifdef VBOX_WITH_GUEST_CONTROL
135 HRESULT taskUpdateGuestAdditions(TaskGuest *aTask);
136
137 struct CallbackContext
138 {
139 eVBoxGuestCtrlCallbackType mType;
140 /** Pointer to user-supplied data. */
141 void *pvData;
142 /** Size of user-supplied data. */
143 uint32_t cbData;
144 /** Pointer to user-supplied IProgress. */
145 ComObjPtr<Progress> pProgress;
146 };
147 /*
148 * The map key is the context ID.
149 */
150 typedef std::map< uint32_t, CallbackContext > CallbackMap;
151 typedef std::map< uint32_t, CallbackContext >::iterator CallbackMapIter;
152 typedef std::map< uint32_t, CallbackContext >::const_iterator CallbackMapIterConst;
153
154 struct GuestProcess
155 {
156 uint32_t mStatus;
157 uint32_t mFlags;
158 uint32_t mExitCode;
159 };
160 /*
161 * The map key is the PID (process identifier).
162 */
163 typedef std::map< uint32_t, GuestProcess > GuestProcessMap;
164 typedef std::map< uint32_t, GuestProcess >::iterator GuestProcessMapIter;
165 typedef std::map< uint32_t, GuestProcess >::const_iterator GuestProcessMapIterConst;
166
167 int directoryEntryAppend(const char *pszPath, PRTLISTNODE pList);
168 int directoryRead(const char *pszDirectory, const char *pszFilter, ULONG uFlags, ULONG *pcObjects, PRTLISTNODE pList);
169
170 int prepareExecuteEnv(const char *pszEnv, void **ppvList, uint32_t *pcbList, uint32_t *pcEnv);
171 /** Handler for guest execution control notifications. */
172 int notifyCtrlClientDisconnected(uint32_t u32Function, PCALLBACKDATACLIENTDISCONNECTED pData);
173 int notifyCtrlExecStatus(uint32_t u32Function, PCALLBACKDATAEXECSTATUS pData);
174 int notifyCtrlExecOut(uint32_t u32Function, PCALLBACKDATAEXECOUT pData);
175 int notifyCtrlExecInStatus(uint32_t u32Function, PCALLBACKDATAEXECINSTATUS pData);
176 CallbackMapIter getCtrlCallbackContextByID(uint32_t u32ContextID);
177 GuestProcessMapIter getProcessByPID(uint32_t u32PID);
178 void destroyCtrlCallbackContext(CallbackMapIter it);
179 uint32_t addCtrlCallbackContext(eVBoxGuestCtrlCallbackType enmType, void *pvData, uint32_t cbData, Progress* pProgress);
180# endif
181
182 struct Data
183 {
184 Data() : mAdditionsRunLevel (AdditionsRunLevelType_None),
185 mSupportsSeamless (FALSE),
186 mSupportsGraphics (FALSE) {}
187
188 Bstr mOSTypeId;
189 AdditionsRunLevelType_T mAdditionsRunLevel;
190 Bstr mAdditionsVersion;
191 Bstr mInterfaceVersion;
192 BOOL mSupportsSeamless;
193 BOOL mSupportsGraphics;
194 };
195
196 ULONG mMemoryBalloonSize;
197 ULONG mStatUpdateInterval;
198 ULONG mCurrentGuestStat[GUESTSTATTYPE_MAX];
199 BOOL mfPageFusionEnabled;
200
201 Console *mParent;
202 Data mData;
203
204# ifdef VBOX_WITH_GUEST_CONTROL
205 /** General extension callback for guest control. */
206 HGCMSVCEXTHANDLE mhExtCtrl;
207
208 volatile uint32_t mNextContextID;
209 CallbackMap mCallbackMap;
210 GuestProcessMap mGuestProcessMap;
211# endif
212};
213
214#endif // ____H_GUESTIMPL
215/* vi: set tabstop=4 shiftwidth=4 expandtab: */
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