1 | /** @file
|
---|
2 | *
|
---|
3 | * VBox Client Session COM Class definition
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006 InnoTek Systemberatung GmbH
|
---|
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 as published by the Free Software Foundation,
|
---|
13 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
14 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
15 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * If you received this file as part of a commercial VirtualBox
|
---|
18 | * distribution, then only the terms of your commercial VirtualBox
|
---|
19 | * license agreement apply instead of the previous paragraph.
|
---|
20 | */
|
---|
21 |
|
---|
22 | #ifndef ____H_SESSIONIMPL
|
---|
23 | #define ____H_SESSIONIMPL
|
---|
24 |
|
---|
25 | #include "VirtualBoxBase.h"
|
---|
26 | #include "ConsoleImpl.h"
|
---|
27 |
|
---|
28 | #ifdef __WIN__
|
---|
29 | #include "win32/resource.h"
|
---|
30 | #endif
|
---|
31 |
|
---|
32 | /** @def VBOX_WITH_SYS_V_IPC_SESSION_WATCHER
|
---|
33 | * Use SYS V IPC for watching a session.
|
---|
34 | * This is defined in the Makefile since it's also used by MachineImpl.h/cpp.
|
---|
35 | *
|
---|
36 | * @todo Dmitry, feel free to completely change this (and/or write a better description).
|
---|
37 | * (The same goes for the other darwin changes.)
|
---|
38 | */
|
---|
39 | #ifdef __DOXYGEN__
|
---|
40 | # define VBOX_WITH_SYS_V_IPC_SESSION_WATCHER
|
---|
41 | #endif
|
---|
42 |
|
---|
43 | class ATL_NO_VTABLE Session :
|
---|
44 | public VirtualBoxBaseNEXT,
|
---|
45 | public VirtualBoxSupportErrorInfoImpl <Session, ISession>,
|
---|
46 | public VirtualBoxSupportTranslation <Session>,
|
---|
47 | #ifdef __WIN__
|
---|
48 | public IDispatchImpl<ISession, &IID_ISession, &LIBID_VirtualBox,
|
---|
49 | kTypeLibraryMajorVersion, kTypeLibraryMinorVersion>,
|
---|
50 | public CComCoClass<Session, &CLSID_Session>,
|
---|
51 | #else
|
---|
52 | public ISession,
|
---|
53 | #endif
|
---|
54 | public IInternalSessionControl
|
---|
55 | {
|
---|
56 | public:
|
---|
57 |
|
---|
58 | DECLARE_CLASSFACTORY()
|
---|
59 |
|
---|
60 | DECLARE_REGISTRY_RESOURCEID(IDR_VIRTUALBOX)
|
---|
61 | DECLARE_NOT_AGGREGATABLE(Session)
|
---|
62 |
|
---|
63 | DECLARE_PROTECT_FINAL_CONSTRUCT()
|
---|
64 |
|
---|
65 | BEGIN_COM_MAP(Session)
|
---|
66 | COM_INTERFACE_ENTRY(IDispatch)
|
---|
67 | COM_INTERFACE_ENTRY(IInternalSessionControl)
|
---|
68 | COM_INTERFACE_ENTRY(ISupportErrorInfo)
|
---|
69 | COM_INTERFACE_ENTRY(ISession)
|
---|
70 | END_COM_MAP()
|
---|
71 |
|
---|
72 | NS_DECL_ISUPPORTS
|
---|
73 |
|
---|
74 | HRESULT FinalConstruct();
|
---|
75 | void FinalRelease();
|
---|
76 |
|
---|
77 | // public initializers/uninitializers only for internal purposes
|
---|
78 | HRESULT init();
|
---|
79 | void uninit (bool aFinalRelease);
|
---|
80 |
|
---|
81 | // ISession properties
|
---|
82 | STDMETHOD(COMGETTER(State)) (SessionState_T *aState);
|
---|
83 | STDMETHOD(COMGETTER(Type)) (SessionType_T *aType);
|
---|
84 | STDMETHOD(COMGETTER(Machine)) (IMachine **aMachine);
|
---|
85 | STDMETHOD(COMGETTER(Console)) (IConsole **aConsole);
|
---|
86 |
|
---|
87 | // ISession methods
|
---|
88 | STDMETHOD(Close)();
|
---|
89 |
|
---|
90 | // IInternalSessionControl methods
|
---|
91 | STDMETHOD(GetPID) (ULONG *aPid);
|
---|
92 | STDMETHOD(GetRemoteConsole) (IConsole **aConsole);
|
---|
93 | STDMETHOD(AssignMachine) (IMachine *aMachine);
|
---|
94 | STDMETHOD(AssignRemoteMachine) (IMachine *aMachine, IConsole *aConsole);
|
---|
95 | STDMETHOD(UpdateMachineState) (MachineState_T aMachineState);
|
---|
96 | STDMETHOD(Uninitialize)();
|
---|
97 | STDMETHOD(OnDVDDriveChange)();
|
---|
98 | STDMETHOD(OnFloppyDriveChange)();
|
---|
99 | STDMETHOD(OnNetworkAdapterChange)(INetworkAdapter *networkAdapter);
|
---|
100 | STDMETHOD(OnVRDPServerChange)();
|
---|
101 | STDMETHOD(OnUSBControllerChange)();
|
---|
102 | STDMETHOD(OnUSBDeviceAttach) (IUSBDevice *aDevice);
|
---|
103 | STDMETHOD(OnUSBDeviceDetach) (INPTR GUIDPARAM aId);
|
---|
104 |
|
---|
105 | // for VirtualBoxSupportErrorInfoImpl
|
---|
106 | static const wchar_t *getComponentName() { return L"Session"; }
|
---|
107 |
|
---|
108 | private:
|
---|
109 |
|
---|
110 | HRESULT close (bool aFinalRelease, bool aFromServer);
|
---|
111 | HRESULT grabIPCSemaphore();
|
---|
112 | void releaseIPCSemaphore();
|
---|
113 |
|
---|
114 | SessionState_T mState;
|
---|
115 | SessionType_T mType;
|
---|
116 |
|
---|
117 | ComPtr <IInternalMachineControl> mControl;
|
---|
118 |
|
---|
119 | ComObjPtr <Console> mConsole;
|
---|
120 |
|
---|
121 | ComPtr <IMachine> mRemoteMachine;
|
---|
122 | ComPtr <IConsole> mRemoteConsole;
|
---|
123 |
|
---|
124 | ComPtr <IVirtualBox> mVirtualBox;
|
---|
125 |
|
---|
126 | // the interprocess semaphore handle (id) for the opened machine
|
---|
127 | #if defined(__WIN__)
|
---|
128 | HANDLE mIPCSem;
|
---|
129 | HANDLE mIPCThreadSem;
|
---|
130 | #elif defined(VBOX_WITH_SYS_V_IPC_SESSION_WATCHER)
|
---|
131 | int mIPCSem;
|
---|
132 | #else
|
---|
133 | # error "PORTME"
|
---|
134 | #endif
|
---|
135 | };
|
---|
136 |
|
---|
137 | #endif // ____H_SESSIONIMPL
|
---|