VirtualBox

source: vbox/trunk/src/VBox/Main/include/VirtualBoxClientImpl.h

Last change on this file was 98103, checked in by vboxsync, 16 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.4 KB
Line 
1/* $Id: VirtualBoxClientImpl.h 98103 2023-01-17 14:15:46Z vboxsync $ */
2/** @file
3 * Header file for the VirtualBoxClient (IVirtualBoxClient) class, VBoxC.
4 */
5
6/*
7 * Copyright (C) 2010-2023 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * SPDX-License-Identifier: GPL-3.0-only
26 */
27
28#ifndef MAIN_INCLUDED_VirtualBoxClientImpl_h
29#define MAIN_INCLUDED_VirtualBoxClientImpl_h
30#ifndef RT_WITHOUT_PRAGMA_ONCE
31# pragma once
32#endif
33
34#include "VirtualBoxClientWrap.h"
35#include "EventImpl.h"
36#include "VirtualBoxTranslator.h"
37
38#ifdef RT_OS_WINDOWS
39# include "win/resource.h"
40#endif
41
42class ATL_NO_VTABLE VirtualBoxClient :
43 public VirtualBoxClientWrap
44#ifdef RT_OS_WINDOWS
45 , public ATL::CComCoClass<VirtualBoxClient, &CLSID_VirtualBoxClient>
46#endif
47{
48public:
49 DECLARE_CLASSFACTORY_SINGLETON(VirtualBoxClient)
50
51 // Do not use any ATL registry support.
52 //DECLARE_REGISTRY_RESOURCEID(IDR_VIRTUALBOX)
53
54 DECLARE_NOT_AGGREGATABLE(VirtualBoxClient)
55
56 HRESULT FinalConstruct();
57 void FinalRelease();
58
59 // public initializer/uninitializer for internal purposes only
60 HRESULT init();
61 void uninit();
62
63#ifdef RT_OS_WINDOWS
64 /* HACK ALERT! Implemented in dllmain.cpp. */
65 ULONG InternalRelease();
66#endif
67
68private:
69 // wrapped IVirtualBoxClient properties
70 virtual HRESULT getVirtualBox(ComPtr<IVirtualBox> &aVirtualBox);
71 virtual HRESULT getSession(ComPtr<ISession> &aSession);
72 virtual HRESULT getEventSource(ComPtr<IEventSource> &aEventSource);
73
74 // wrapped IVirtualBoxClient methods
75 virtual HRESULT checkMachineError(const ComPtr<IMachine> &aMachine);
76
77 /** Instance counter for simulating something similar to a singleton.
78 * Only the first instance will be a usable object, all additional
79 * instances will return a failure at creation time and will not work. */
80 static uint32_t g_cInstances;
81
82#ifdef RT_OS_WINDOWS
83 virtual HRESULT i_investigateVirtualBoxObjectCreationFailure(HRESULT hrc);
84#endif
85
86#ifdef VBOX_WITH_SDS
87 int i_getServiceAccountAndStartType(const wchar_t *pwszServiceName,
88 wchar_t *pwszAccountName, size_t cwcAccountName, uint32_t *puStartType);
89#endif
90
91 static DECLCALLBACK(int) SVCWatcherThread(RTTHREAD ThreadSelf, void *pvUser);
92
93 struct Data
94 {
95 Data()
96 : m_ThreadWatcher(NIL_RTTHREAD)
97 , m_SemEvWatcher(NIL_RTSEMEVENT)
98#ifdef VBOX_WITH_MAIN_NLS
99 , m_pVBoxTranslator(NULL)
100 , m_pTrComponent(NULL)
101#endif
102 {}
103
104 ~Data()
105 {
106 /* HACK ALERT! This is for DllCanUnloadNow(). */
107 if (m_pEventSource.isNotNull())
108 {
109 s_cUnnecessaryAtlModuleLocks--;
110 AssertMsg(s_cUnnecessaryAtlModuleLocks == 0, ("%d\n", s_cUnnecessaryAtlModuleLocks));
111 }
112 }
113
114 ComPtr<IVirtualBox> m_pVirtualBox;
115 ComPtr<IToken> m_pToken;
116 const ComObjPtr<EventSource> m_pEventSource;
117 ComPtr<IEventSource> m_pVBoxEventSource;
118 ComPtr<IEventListener> m_pVBoxEventListener;
119
120 RTTHREAD m_ThreadWatcher;
121 RTSEMEVENT m_SemEvWatcher;
122#ifdef VBOX_WITH_MAIN_NLS
123 VirtualBoxTranslator *m_pVBoxTranslator;
124 PTRCOMPONENT m_pTrComponent;
125#endif
126 };
127
128 Data mData;
129
130public:
131 /** Hack for discounting the AtlModule lock held by Data::m_pEventSource during
132 * DllCanUnloadNow(). This is incremented to 1 when init() initialized
133 * m_pEventSource and is decremented by the Data destructor (above). */
134 static LONG s_cUnnecessaryAtlModuleLocks;
135
136#ifdef VBOX_WITH_MAIN_NLS
137 HRESULT i_reloadApiLanguage();
138 HRESULT i_registerEventListener();
139 void i_unregisterEventListener();
140#endif
141};
142
143#endif /* !MAIN_INCLUDED_VirtualBoxClientImpl_h */
144/* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use