Changeset 69734 in vbox for trunk/src/VBox/Main
- Timestamp:
- Nov 18, 2017 2:06:23 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 119130
- Location:
- trunk/src/VBox/Main
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r69729 r69734 24380 24380 --> 24381 24381 <interface 24382 name="IVBoxSVC" extends=" $unknown"24383 uuid=" 8876e618-8936-4b2c-3015-aaebe6d479b9"24384 wsmap="suppress" 24385 reservedMethods=" 2" reservedAttributes="4"24382 name="IVBoxSVC" extends="IUnknown" 24383 uuid="902659ea-d14e-4444-4bc1-40b0d01ae9b3" 24384 wsmap="suppress" internal="yes" notdual="yes" 24385 reservedMethods="0" reservedAttributes="0" 24386 24386 > 24387 24387 <desc> -
trunk/src/VBox/Main/idl/midl.xsl
r69379 r69734 219 219 uuid(<xsl:value-of select="@uuid"/>), 220 220 object, 221 <xsl:if test="@notdual != 'yes'"> 221 222 dual, 223 </xsl:if> 222 224 oleautomation 223 225 <xsl:if test="$g_fGenProxy = 'yes'"> -
trunk/src/VBox/Main/include/VirtualBoxSDSImpl.h
r69729 r69734 139 139 static VirtualBoxCache m_cache; 140 140 friend VirtualBoxToken; 141 142 #ifdef VBOX_WITH_SDS_PLAN_B 143 // quick and dirty for checking the concept. 144 IVBoxSVC *m_pVBoxSVC; 145 uint32_t m_pidVBoxSVC; 146 #endif 141 147 }; 142 148 -
trunk/src/VBox/Main/src-server/win/svcmain.cpp
r69731 r69734 1 1 /* $Id$ */ 2 2 /** @file 3 *4 3 * SVCMAIN - COM out-of-proc server main entry 5 4 */ … … 17 16 */ 18 17 18 19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 22 #define RTMEM_WRAP_SOME_NEW_AND_DELETE_TO_EF // DONT COMMIT 23 #define RTMEM_WRAP_TO_EF_APIS 24 #include <iprt/mem.h> 19 25 #include <iprt/win/windows.h> 20 26 #include <stdio.h> … … 27 33 28 34 #include "VirtualBoxImpl.h" 29 #ifdef VBOX_WITH_SDS_PLAN_B30 # include "VBoxSVCWrap.h"31 #endif35 //#ifdef VBOX_WITH_SDS_PLAN_B 36 //# include "VBoxSVCWrap.h" 37 //#endif 32 38 #include "Logging.h" 33 39 … … 44 50 #include <iprt/asm.h> 45 51 52 53 /********************************************************************************************************************************* 54 * Defined Constants And Macros * 55 *********************************************************************************************************************************/ 56 #define MAIN_WND_CLASS L"VirtualBox Interface" 57 58 59 /********************************************************************************************************************************* 60 * Structures and Typedefs * 61 *********************************************************************************************************************************/ 46 62 class CExeModule : public ATL::CComModule 47 63 { … … 54 70 bool HasActiveConnection(); 55 71 bool bActivity; 72 static bool isIdleLockCount(LONG cLocks); 56 73 }; 74 75 76 /********************************************************************************************************************************* 77 * Global Variables * 78 *********************************************************************************************************************************/ 79 BEGIN_OBJECT_MAP(ObjectMap) 80 OBJECT_ENTRY(CLSID_VirtualBox, VirtualBox) 81 END_OBJECT_MAP() 82 83 CExeModule *g_pModule = NULL; 84 HWND g_hMainWindow = NULL; 85 HINSTANCE g_hInstance = NULL; 86 #ifdef VBOX_WITH_SDS_PLAN_B 87 /** This is set if we're connected to SDS and should discount a server lock 88 * that it is holding when deciding whether we're idle or not. */ 89 bool g_fRegisteredWithVBoxSDS = false; 90 #endif 57 91 58 92 /* Normal timeout usually used in Shutdown Monitor */ … … 60 94 volatile uint32_t dwTimeOut = dwNormalTimeout; /* time for EXE to be idle before shutting down. Can be decreased at system shutdown phase. */ 61 95 96 97 62 98 /* Passed to CreateThread to monitor the shutdown event */ 63 99 static DWORD WINAPI MonitorProc(void* pv) … … 70 106 LONG CExeModule::Unlock() 71 107 { 72 LONG l= ATL::CComModule::Unlock();73 if ( l == 0)108 LONG cLocks = ATL::CComModule::Unlock(); 109 if (isIdleLockCount(cLocks)) 74 110 { 75 111 bActivity = true; 76 112 SetEvent(hEventShutdown); /* tell monitor that we transitioned to zero */ 77 113 } 78 return l;114 return cLocks; 79 115 } 80 116 81 117 bool CExeModule::HasActiveConnection() 82 118 { 83 return bActivity || GetLockCount() > 0; 119 return bActivity || !isIdleLockCount(GetLockCount()); 120 } 121 122 /** 123 * Checks if @a cLocks signifies an IDLE server lock load. 124 * 125 * This takes VBoxSDS into account (i.e. ignores it). 126 */ 127 /*static*/ bool CExeModule::isIdleLockCount(LONG cLocks) 128 { 129 #ifdef VBOX_WITH_SDS_PLAN_B 130 if (g_fRegisteredWithVBoxSDS) 131 return cLocks <= 1; 132 #endif 133 return cLocks <= 0; 84 134 } 85 135 … … 90 140 { 91 141 WaitForSingleObject(hEventShutdown, INFINITE); 92 DWORD dwWait =0;142 DWORD dwWait; 93 143 do 94 144 { … … 160 210 IUnknown *m_pObj; 161 211 /** Pointer to the IVBoxSVC implementation that VBoxSDS works with. */ 162 ComObjPtr<VBoxSVC> m_ptrVBoxSVC;212 VBoxSVC *m_pVBoxSVC; 163 213 /** The VBoxSDS interface. */ 164 214 ComPtr<IVirtualBoxSDS> m_ptrVirtualBoxSDS; 165 215 166 216 public: 167 VirtualBoxClassFactory() : m_iState(0), m_hrcCreate(S_OK), m_pObj(NULL) { } 217 VirtualBoxClassFactory() : m_iState(0), m_hrcCreate(S_OK), m_pObj(NULL), m_pVBoxSVC(NULL) 218 { } 219 168 220 virtual ~VirtualBoxClassFactory() 169 221 { … … 173 225 m_pObj = NULL; 174 226 } 227 175 228 /** @todo Need to check if this is okay wrt COM termination. */ 176 229 i_deregisterWithSds(); … … 181 234 182 235 /** Worker for VBoxSVC::getVirtualBox. */ 183 HRESULT i_getVirtualBox( ComPtr<IUnknown> &aResult);236 HRESULT i_getVirtualBox(IUnknown **ppResult); 184 237 185 238 private: 186 239 HRESULT VirtualBoxClassFactory::i_registerWithSds(IUnknown **ppOtherVirtualBox); 187 240 void VirtualBoxClassFactory::i_deregisterWithSds(void); 241 242 friend VBoxSVC; 188 243 }; 189 244 … … 193 248 * VirtualBox object when the next VBoxSVC for this user registers itself. 194 249 */ 195 class ATL_NO_VTABLE VBoxSVC : public VBoxSVCWrap 196 { 197 public: 198 DECLARE_EMPTY_CTOR_DTOR(VBoxSVC) 199 200 HRESULT FinalConstruct() 201 { 202 return BaseFinalConstruct(); 203 } 204 205 void FinalRelease() 206 { 207 uninit(); 208 BaseFinalRelease(); 209 } 210 211 // public initializer/uninitializer for internal purposes only 212 HRESULT init(VirtualBoxClassFactory *pFactory) 213 { 214 AutoInitSpan autoInitSpan(this); 215 AssertReturn(autoInitSpan.isOk(), E_FAIL); 216 217 m_pFactory = pFactory; 218 219 autoInitSpan.setSucceeded(); 220 return S_OK; 221 } 222 223 void uninit() 224 { 225 AutoUninitSpan autoUninitSpan(this); 226 if (!autoUninitSpan.uninitDone()) 227 m_pFactory = NULL; 228 } 229 250 class VBoxSVC : public IVBoxSVC 251 { 230 252 private: 231 // Wrapped IVBoxSVC method. 232 HRESULT getVirtualBox(ComPtr<IUnknown> &aResult) 233 { 234 if (m_pFactory) 235 return m_pFactory->i_getVirtualBox(aResult); 236 return E_FAIL; 237 } 253 /** Number of references. */ 254 uint32_t volatile m_cRefs; 238 255 239 256 public: 240 257 /** Pointer to the factory. */ 241 258 VirtualBoxClassFactory *m_pFactory; 259 260 public: 261 VBoxSVC(VirtualBoxClassFactory *pFactory) 262 : m_cRefs(1), m_pFactory(pFactory) 263 { } 264 virtual ~VBoxSVC() 265 { 266 if (m_pFactory) 267 { 268 if (m_pFactory->m_pVBoxSVC) 269 m_pFactory->m_pVBoxSVC = NULL; 270 m_pFactory = NULL; 271 } 272 } 273 RTMEMEF_NEW_AND_DELETE_OPERATORS(); 274 275 // IUnknown 276 STDMETHOD(QueryInterface)(REFIID riid, void **ppvObject) 277 { 278 if (riid == __uuidof(IUnknown)) 279 *ppvObject = (void *)(IUnknown *)this; 280 else if (riid == __uuidof(IVBoxSVC)) 281 *ppvObject = (void *)(IVBoxSVC *)this; 282 else 283 { 284 return E_NOINTERFACE; 285 } 286 AddRef(); 287 return S_OK; 288 289 } 290 291 STDMETHOD_(ULONG,AddRef)(void) 292 { 293 uint32_t cRefs = ASMAtomicIncU32(&m_cRefs); 294 return cRefs; 295 } 296 297 STDMETHOD_(ULONG,Release)(void) 298 { 299 uint32_t cRefs = ASMAtomicDecU32(&m_cRefs); 300 if (cRefs == 0) 301 delete this; 302 return cRefs; 303 } 304 305 // IVBoxSVC 306 STDMETHOD(GetVirtualBox)(IUnknown **ppResult) 307 { 308 if (m_pFactory) 309 return m_pFactory->i_getVirtualBox(ppResult); 310 return E_FAIL; 311 } 242 312 }; 243 244 DEFINE_EMPTY_CTOR_DTOR(VBoxSVC);245 313 246 314 … … 250 318 * Connect to VBoxSDS. 251 319 */ 252 ComPtr<IVirtualBoxSDS> m_ptrVirtualBoxSDS;253 320 HRESULT hrc = CoCreateInstance(CLSID_VirtualBoxSDS, NULL, CLSCTX_LOCAL_SERVER, IID_IVirtualBoxSDS, 254 321 (void **)m_ptrVirtualBoxSDS.asOutParam()); … … 258 325 * Create VBoxSVC object and hand that to VBoxSDS. 259 326 */ 260 hrc = m_ptrVBoxSVC.createObject(); 327 m_pVBoxSVC = new VBoxSVC(this); 328 hrc = m_ptrVirtualBoxSDS->RegisterVBoxSVC(m_pVBoxSVC, GetCurrentProcessId(), ppOtherVirtualBox); 261 329 if (SUCCEEDED(hrc)) 262 330 { 263 hrc = m_ptrVBoxSVC->init(this); 264 if (SUCCEEDED(hrc)) 265 { 266 hrc = m_ptrVirtualBoxSDS->RegisterVBoxSVC(m_ptrVBoxSVC, GetCurrentProcessId(), ppOtherVirtualBox); 267 if (SUCCEEDED(hrc)) 268 { 269 return hrc; 270 } 271 } 272 } 331 g_fRegisteredWithVBoxSDS = true; 332 return hrc; 333 } 334 m_pVBoxSVC->Release(); 273 335 } 274 336 m_ptrVirtualBoxSDS.setNull(); 275 m_p trVBoxSVC.setNull();337 m_pVBoxSVC = NULL; 276 338 *ppOtherVirtualBox = NULL; 277 339 return hrc; … … 282 344 { 283 345 Log(("VirtualBoxClassFactory::i_deregisterWithSds\n")); 284 } 285 286 287 HRESULT VirtualBoxClassFactory::i_getVirtualBox(ComPtr<IUnknown> &aResult) 346 347 if (m_ptrVirtualBoxSDS.isNotNull()) 348 { 349 if (m_pVBoxSVC) 350 { 351 HRESULT hrc = m_ptrVirtualBoxSDS->DeregisterVBoxSVC(m_pVBoxSVC, GetCurrentProcessId()); 352 NOREF(hrc); 353 } 354 m_ptrVirtualBoxSDS.setNull(); 355 g_fRegisteredWithVBoxSDS = false; 356 } 357 if (m_pVBoxSVC) 358 { 359 m_pVBoxSVC->m_pFactory = NULL; 360 m_pVBoxSVC->Release(); 361 m_pVBoxSVC = NULL; 362 } 363 } 364 365 366 HRESULT VirtualBoxClassFactory::i_getVirtualBox(IUnknown **ppResult) 288 367 { 289 368 IUnknown *pObj = m_pObj; … … 292 371 /** @todo Do we need to do something regarding server locking? Hopefully COM 293 372 * deals with that........... */ 294 aResult = pObj; 373 pObj->AddRef(); 374 *ppResult = pObj; 295 375 Log(("VirtualBoxClassFactory::GetVirtualBox: S_OK - %p\n", pObj)); 296 376 return S_OK; 297 377 } 298 aResult.setNull();378 *ppResult = NULL; 299 379 Log(("VirtualBoxClassFactory::GetVirtualBox: E_FAIL\n")); 300 380 return E_FAIL; … … 400 480 401 481 402 BEGIN_OBJECT_MAP(ObjectMap)403 OBJECT_ENTRY(CLSID_VirtualBox, VirtualBox)404 END_OBJECT_MAP()405 406 CExeModule* g_pModule = NULL;407 HWND g_hMainWindow = NULL;408 HINSTANCE g_hInstance = NULL;409 #define MAIN_WND_CLASS L"VirtualBox Interface"410 411 412 482 /* 413 483 * Wrapper for Win API function ShutdownBlockReasonCreate
Note:
See TracChangeset
for help on using the changeset viewer.