VirtualBox

source: vbox/trunk/src/VBox/Main/xpcom/module.cpp@ 30379

Last change on this file since 30379 was 30345, checked in by vboxsync, 15 years ago

Main: more events

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.5 KB
Line 
1/** @file
2 *
3 * XPCOM module implementation functions
4 */
5
6/*
7 * Copyright (C) 2006-2009 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/* Make sure all the stdint.h macros are included - must come first! */
19#ifndef __STDC_LIMIT_MACROS
20# define __STDC_LIMIT_MACROS
21#endif
22#ifndef __STDC_CONSTANT_MACROS
23# define __STDC_CONSTANT_MACROS
24#endif
25
26#include <nsIGenericFactory.h>
27
28// generated file
29#include "VirtualBox_XPCOM.h"
30
31#include "GuestImpl.h"
32#include "KeyboardImpl.h"
33#include "MouseImpl.h"
34#include "DisplayImpl.h"
35#include "ProgressCombinedImpl.h"
36#include "MachineDebuggerImpl.h"
37#include "USBDeviceImpl.h"
38#include "RemoteUSBDeviceImpl.h"
39#include "SharedFolderImpl.h"
40#include "ProgressImpl.h"
41#include "NetworkAdapterImpl.h"
42#include "NATEngineImpl.h"
43
44#include "SessionImpl.h"
45#include "ConsoleImpl.h"
46#include "ConsoleVRDPServer.h"
47#include "VirtualBoxCallbackImpl.h"
48#include "EventImpl.h"
49
50#include "Logging.h"
51
52// XPCOM glue code unfolding
53
54NS_DECL_CLASSINFO(Guest)
55NS_IMPL_THREADSAFE_ISUPPORTS1_CI(Guest, IGuest)
56NS_DECL_CLASSINFO(Keyboard)
57NS_IMPL_THREADSAFE_ISUPPORTS1_CI(Keyboard, IKeyboard)
58NS_DECL_CLASSINFO(Mouse)
59NS_IMPL_THREADSAFE_ISUPPORTS1_CI(Mouse, IMouse)
60NS_DECL_CLASSINFO(Display)
61NS_IMPL_THREADSAFE_ISUPPORTS2_CI(Display, IDisplay, IConsoleCallback)
62NS_DECL_CLASSINFO(MachineDebugger)
63NS_IMPL_THREADSAFE_ISUPPORTS1_CI(MachineDebugger, IMachineDebugger)
64NS_DECL_CLASSINFO(Progress)
65NS_IMPL_THREADSAFE_ISUPPORTS1_CI(Progress, IProgress)
66NS_DECL_CLASSINFO(CombinedProgress)
67NS_IMPL_THREADSAFE_ISUPPORTS1_CI(CombinedProgress, IProgress)
68NS_DECL_CLASSINFO(OUSBDevice)
69NS_IMPL_THREADSAFE_ISUPPORTS1_CI(OUSBDevice, IUSBDevice)
70NS_DECL_CLASSINFO(RemoteUSBDevice)
71NS_IMPL_THREADSAFE_ISUPPORTS1_CI(RemoteUSBDevice, IHostUSBDevice)
72NS_DECL_CLASSINFO(SharedFolder)
73NS_IMPL_THREADSAFE_ISUPPORTS1_CI(SharedFolder, ISharedFolder)
74NS_DECL_CLASSINFO(RemoteDisplayInfo)
75NS_IMPL_THREADSAFE_ISUPPORTS1_CI(RemoteDisplayInfo, IRemoteDisplayInfo)
76NS_DECL_CLASSINFO(EventSource)
77NS_IMPL_THREADSAFE_ISUPPORTS1_CI(EventSource, IEventSource)
78
79NS_DECL_CLASSINFO(Session)
80NS_IMPL_THREADSAFE_ISUPPORTS2_CI(Session, ISession, IInternalSessionControl)
81NS_DECL_CLASSINFO(Console)
82NS_IMPL_THREADSAFE_ISUPPORTS1_CI(Console, IConsole)
83NS_DECL_CLASSINFO(CallbackWrapper)
84NS_IMPL_THREADSAFE_ISUPPORTS3_CI(CallbackWrapper, IVirtualBoxCallback, IConsoleCallback, ILocalOwner)
85
86/**
87 * Singleton class factory that holds a reference to the created instance
88 * (preventing it from being destroyed) until the module is explicitly
89 * unloaded by the XPCOM shutdown code.
90 *
91 * Suitable for IN-PROC components.
92 */
93class SessionClassFactory : public Session
94{
95public:
96 virtual ~SessionClassFactory() {
97 FinalRelease();
98 instance = 0;
99 }
100 static nsresult getInstance (Session **inst) {
101 int rv = NS_OK;
102 if (instance == 0) {
103 instance = new SessionClassFactory();
104 if (instance) {
105 instance->AddRef(); // protect FinalConstruct()
106 rv = instance->FinalConstruct();
107 if (NS_FAILED(rv))
108 instance->Release();
109 else
110 instance->AddRef(); // self-reference
111 } else {
112 rv = NS_ERROR_OUT_OF_MEMORY;
113 }
114 } else {
115 instance->AddRef();
116 }
117 *inst = instance;
118 return rv;
119 }
120 static nsresult releaseInstance () {
121 if (instance)
122 instance->Release();
123 return NS_OK;
124 }
125
126private:
127 static Session *instance;
128};
129
130/** @note this is for singleton; disabled for now */
131//
132//Session *SessionClassFactory::instance = 0;
133//
134//NS_GENERIC_FACTORY_SINGLETON_CONSTRUCTOR_WITH_RC (
135// Session, SessionClassFactory::getInstance
136//)
137
138NS_GENERIC_FACTORY_CONSTRUCTOR_WITH_RC (Session)
139
140NS_GENERIC_FACTORY_CONSTRUCTOR_WITH_RC (CallbackWrapper)
141
142
143/**
144 * Component definition table.
145 * Lists all components defined in this module.
146 */
147static const nsModuleComponentInfo components[] =
148{
149 {
150 "Session component", // description
151 NS_SESSION_CID, NS_SESSION_CONTRACTID, // CID/ContractID
152 SessionConstructor, // constructor function
153 NULL, // registration function
154 NULL, // deregistration function
155/** @note this is for singleton; disabled for now */
156// SessionClassFactory::releaseInstance,
157 NULL, // destructor function
158 NS_CI_INTERFACE_GETTER_NAME(Session), // interfaces function
159 NULL, // language helper
160 &NS_CLASSINFO_NAME(Session) // global class info & flags
161 },
162 {
163 "CallbackWrapper component", // description
164 NS_CALLBACKWRAPPER_CID, NS_CALLBACKWRAPPER_CONTRACTID, // CID/ContractID
165 CallbackWrapperConstructor, // constructor function
166 NULL, // registration function
167 NULL, // deregistration function
168 NULL, // destructor function
169 NS_CI_INTERFACE_GETTER_NAME(CallbackWrapper), // interfaces function
170 NULL, // language helper
171 &NS_CLASSINFO_NAME(CallbackWrapper) // global class info & flags
172 }
173
174};
175
176NS_IMPL_NSGETMODULE (VirtualBox_Client_Module, components)
177/* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note: See TracBrowser for help on using the repository browser.

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