VirtualBox

source: vbox/trunk/src/VBox/Main/include/SessionImpl.h@ 2988

Last change on this file since 2988 was 2981, checked in by vboxsync, 17 years ago

InnoTek -> innotek: all the headers and comments.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.1 KB
Line 
1/** @file
2 *
3 * VBox Client Session COM Class definition
4 */
5
6/*
7 * Copyright (C) 2006-2007 innotek 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
43class 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{
56public:
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 STDMETHOD(OnShowWindow) (BOOL aCheck, BOOL *aCanShow, ULONG64 *aWinId);
105
106 // for VirtualBoxSupportErrorInfoImpl
107 static const wchar_t *getComponentName() { return L"Session"; }
108
109private:
110
111 HRESULT close (bool aFinalRelease, bool aFromServer);
112 HRESULT grabIPCSemaphore();
113 void releaseIPCSemaphore();
114
115 SessionState_T mState;
116 SessionType_T mType;
117
118 ComPtr <IInternalMachineControl> mControl;
119
120 ComObjPtr <Console> mConsole;
121
122 ComPtr <IMachine> mRemoteMachine;
123 ComPtr <IConsole> mRemoteConsole;
124
125 ComPtr <IVirtualBox> mVirtualBox;
126
127 // the interprocess semaphore handle (id) for the opened machine
128#if defined(__WIN__)
129 HANDLE mIPCSem;
130 HANDLE mIPCThreadSem;
131#elif defined(VBOX_WITH_SYS_V_IPC_SESSION_WATCHER)
132 int mIPCSem;
133#else
134# error "PORTME"
135#endif
136};
137
138#endif // ____H_SESSIONIMPL
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