VirtualBox

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

Last change on this file since 29281 was 28835, checked in by vboxsync, 15 years ago

Main: live snapshot merging. initially limited to forward merging (i.e. everything but the first snapshot can be deleted)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.3 KB
Line 
1/** @file
2 *
3 * VBox Client Session COM Class definition
4 */
5
6/*
7 * Copyright (C) 2006-2010 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#ifndef ____H_SESSIONIMPL
19#define ____H_SESSIONIMPL
20
21#include "VirtualBoxBase.h"
22#include "ConsoleImpl.h"
23
24#ifdef RT_OS_WINDOWS
25# include "win/resource.h"
26#endif
27
28/** @def VBOX_WITH_SYS_V_IPC_SESSION_WATCHER
29 * Use SYS V IPC for watching a session.
30 * This is defined in the Makefile since it's also used by MachineImpl.h/cpp.
31 *
32 * @todo Dmitry, feel free to completely change this (and/or write a better description).
33 * (The same goes for the other darwin changes.)
34 */
35#ifdef DOXYGEN_RUNNING
36# define VBOX_WITH_SYS_V_IPC_SESSION_WATCHER
37#endif
38
39class ATL_NO_VTABLE Session :
40 public VirtualBoxBase,
41 public VirtualBoxSupportErrorInfoImpl<Session, ISession>,
42 public VirtualBoxSupportTranslation<Session>,
43 VBOX_SCRIPTABLE_IMPL(ISession),
44 VBOX_SCRIPTABLE_IMPL(IInternalSessionControl)
45#ifdef RT_OS_WINDOWS
46 , public CComCoClass<Session, &CLSID_Session>
47#endif
48{
49public:
50
51 DECLARE_CLASSFACTORY()
52
53 DECLARE_REGISTRY_RESOURCEID(IDR_VIRTUALBOX)
54 DECLARE_NOT_AGGREGATABLE(Session)
55
56 DECLARE_PROTECT_FINAL_CONSTRUCT()
57
58 BEGIN_COM_MAP(Session)
59 COM_INTERFACE_ENTRY2(IDispatch, ISession)
60 COM_INTERFACE_ENTRY2(IDispatch, IInternalSessionControl)
61 COM_INTERFACE_ENTRY(IInternalSessionControl)
62 COM_INTERFACE_ENTRY(ISupportErrorInfo)
63 COM_INTERFACE_ENTRY(ISession)
64 END_COM_MAP()
65
66 HRESULT FinalConstruct();
67 void FinalRelease();
68
69 // public initializers/uninitializers only for internal purposes
70 HRESULT init();
71 void uninit(bool aFinalRelease);
72
73 // ISession properties
74 STDMETHOD(COMGETTER(State))(SessionState_T *aState);
75 STDMETHOD(COMGETTER(Type))(SessionType_T *aType);
76 STDMETHOD(COMGETTER(Machine))(IMachine **aMachine);
77 STDMETHOD(COMGETTER(Console))(IConsole **aConsole);
78
79 // ISession methods
80 STDMETHOD(Close)();
81
82 // IInternalSessionControl methods
83 STDMETHOD(GetPID)(ULONG *aPid);
84 STDMETHOD(GetRemoteConsole)(IConsole **aConsole);
85 STDMETHOD(AssignMachine)(IMachine *aMachine);
86 STDMETHOD(AssignRemoteMachine)(IMachine *aMachine, IConsole *aConsole);
87 STDMETHOD(UpdateMachineState)(MachineState_T aMachineState);
88 STDMETHOD(Uninitialize)();
89 STDMETHOD(OnNetworkAdapterChange)(INetworkAdapter *networkAdapter, BOOL changeAdapter);
90 STDMETHOD(OnSerialPortChange)(ISerialPort *serialPort);
91 STDMETHOD(OnParallelPortChange)(IParallelPort *parallelPort);
92 STDMETHOD(OnStorageControllerChange)();
93 STDMETHOD(OnMediumChange)(IMediumAttachment *aMediumAttachment, BOOL aForce);
94 STDMETHOD(OnCPUChange)(ULONG aCPU, BOOL aRemove);
95 STDMETHOD(OnVRDPServerChange)();
96 STDMETHOD(OnUSBControllerChange)();
97 STDMETHOD(OnSharedFolderChange)(BOOL aGlobal);
98 STDMETHOD(OnUSBDeviceAttach)(IUSBDevice *aDevice, IVirtualBoxErrorInfo *aError, ULONG aMaskedIfs);
99 STDMETHOD(OnUSBDeviceDetach)(IN_BSTR aId, IVirtualBoxErrorInfo *aError);
100 STDMETHOD(OnShowWindow)(BOOL aCheck, BOOL *aCanShow, ULONG64 *aWinId);
101 STDMETHOD(AccessGuestProperty)(IN_BSTR aName, IN_BSTR aValue, IN_BSTR aFlags,
102 BOOL aIsSetter, BSTR *aRetValue, ULONG64 *aRetTimestamp, BSTR *aRetFlags);
103 STDMETHOD(EnumerateGuestProperties)(IN_BSTR aPatterns,
104 ComSafeArrayOut(BSTR, aNames),
105 ComSafeArrayOut(BSTR, aValues),
106 ComSafeArrayOut(ULONG64, aTimestamps),
107 ComSafeArrayOut(BSTR, aFlags));
108 STDMETHOD(OnlineMergeMedium)(IMediumAttachment *aMediumAttachment,
109 ULONG aSourceIdx, ULONG aTargetIdx,
110 IMedium *aSource, IMedium *aTarget,
111 BOOL aMergeForward, IMedium *aParentForTarget,
112 ComSafeArrayIn(IMedium *, aChildrenToReparent),
113 IProgress *aProgress);
114
115 // for VirtualBoxSupportErrorInfoImpl
116 static const wchar_t *getComponentName() { return L"Session"; }
117
118private:
119
120 HRESULT close(bool aFinalRelease, bool aFromServer);
121 HRESULT grabIPCSemaphore();
122 void releaseIPCSemaphore();
123
124 SessionState_T mState;
125 SessionType_T mType;
126
127 ComPtr<IInternalMachineControl> mControl;
128
129 ComObjPtr<Console> mConsole;
130
131 ComPtr<IMachine> mRemoteMachine;
132 ComPtr<IConsole> mRemoteConsole;
133
134 ComPtr<IVirtualBox> mVirtualBox;
135
136 /* interprocess semaphore handle (id) for the opened machine */
137#if defined(RT_OS_WINDOWS)
138 HANDLE mIPCSem;
139 HANDLE mIPCThreadSem;
140#elif defined(RT_OS_OS2)
141 RTTHREAD mIPCThread;
142 RTSEMEVENT mIPCThreadSem;
143#elif defined(VBOX_WITH_SYS_V_IPC_SESSION_WATCHER)
144 int mIPCSem;
145#else
146# error "Port me!"
147#endif
148};
149
150#endif // ____H_SESSIONIMPL
151/* vi: set tabstop=4 shiftwidth=4 expandtab: */
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