VirtualBox

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

Last change on this file since 48009 was 47561, checked in by vboxsync, 11 years ago

Main/VirtualBox+Machine+Session: separate out the client death detection functionality into separate objects

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.1 KB
Line 
1/** @file
2 *
3 * VBox Client Session COM Class definition
4 */
5
6/*
7 * Copyright (C) 2006-2013 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#ifdef RT_OS_WINDOWS
29[threading(free)]
30#endif
31class ATL_NO_VTABLE Session :
32 public VirtualBoxBase,
33 VBOX_SCRIPTABLE_IMPL(ISession),
34 VBOX_SCRIPTABLE_IMPL(IInternalSessionControl)
35#ifdef RT_OS_WINDOWS
36 , public CComCoClass<Session, &CLSID_Session>
37#endif
38{
39public:
40
41 VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT(Session, ISession)
42
43 DECLARE_CLASSFACTORY()
44
45 DECLARE_REGISTRY_RESOURCEID(IDR_VIRTUALBOX)
46 DECLARE_NOT_AGGREGATABLE(Session)
47
48 DECLARE_PROTECT_FINAL_CONSTRUCT()
49
50 BEGIN_COM_MAP(Session)
51 VBOX_DEFAULT_INTERFACE_ENTRIES(ISession)
52 COM_INTERFACE_ENTRY2(IDispatch, IInternalSessionControl)
53 COM_INTERFACE_ENTRY(IInternalSessionControl)
54 END_COM_MAP()
55
56 HRESULT FinalConstruct();
57 void FinalRelease();
58
59 // public initializers/uninitializers only for internal purposes
60 HRESULT init();
61 void uninit();
62
63 // ISession properties
64 STDMETHOD(COMGETTER(State))(SessionState_T *aState);
65 STDMETHOD(COMGETTER(Type))(SessionType_T *aType);
66 STDMETHOD(COMGETTER(Machine))(IMachine **aMachine);
67 STDMETHOD(COMGETTER(Console))(IConsole **aConsole);
68
69 // ISession methods
70 STDMETHOD(UnlockMachine)();
71
72 // IInternalSessionControl methods
73 STDMETHOD(GetPID)(ULONG *aPid);
74 STDMETHOD(GetRemoteConsole)(IConsole **aConsole);
75 STDMETHOD(AssignMachine)(IMachine *aMachine, LockType_T aLockType, IN_BSTR aTokenId);
76 STDMETHOD(AssignRemoteMachine)(IMachine *aMachine, IConsole *aConsole);
77 STDMETHOD(UpdateMachineState)(MachineState_T aMachineState);
78 STDMETHOD(Uninitialize)();
79 STDMETHOD(OnNetworkAdapterChange)(INetworkAdapter *networkAdapter, BOOL changeAdapter);
80 STDMETHOD(OnSerialPortChange)(ISerialPort *serialPort);
81 STDMETHOD(OnParallelPortChange)(IParallelPort *parallelPort);
82 STDMETHOD(OnStorageControllerChange)();
83 STDMETHOD(OnMediumChange)(IMediumAttachment *aMediumAttachment, BOOL aForce);
84 STDMETHOD(OnCPUChange)(ULONG aCPU, BOOL aRemove);
85 STDMETHOD(OnCPUExecutionCapChange)(ULONG aExecutionCap);
86 STDMETHOD(OnVRDEServerChange)(BOOL aRestart);
87 STDMETHOD(OnVideoCaptureChange)();
88 STDMETHOD(OnUSBControllerChange)();
89 STDMETHOD(OnSharedFolderChange)(BOOL aGlobal);
90 STDMETHOD(OnClipboardModeChange)(ClipboardMode_T aClipboardMode);
91 STDMETHOD(OnDragAndDropModeChange)(DragAndDropMode_T aDragAndDropMode);
92 STDMETHOD(OnUSBDeviceAttach)(IUSBDevice *aDevice, IVirtualBoxErrorInfo *aError, ULONG aMaskedIfs);
93 STDMETHOD(OnUSBDeviceDetach)(IN_BSTR aId, IVirtualBoxErrorInfo *aError);
94 STDMETHOD(OnShowWindow)(BOOL aCheck, BOOL *aCanShow, LONG64 *aWinId);
95 STDMETHOD(OnBandwidthGroupChange)(IBandwidthGroup *aBandwidthGroup);
96 STDMETHOD(OnStorageDeviceChange)(IMediumAttachment *aMediumAttachment, BOOL aRemove, BOOL aSilent);
97 STDMETHOD(AccessGuestProperty)(IN_BSTR aName, IN_BSTR aValue, IN_BSTR aFlags,
98 BOOL aIsSetter, BSTR *aRetValue, LONG64 *aRetTimestamp, BSTR *aRetFlags);
99 STDMETHOD(EnumerateGuestProperties)(IN_BSTR aPatterns,
100 ComSafeArrayOut(BSTR, aNames),
101 ComSafeArrayOut(BSTR, aValues),
102 ComSafeArrayOut(LONG64, aTimestamps),
103 ComSafeArrayOut(BSTR, aFlags));
104 STDMETHOD(OnlineMergeMedium)(IMediumAttachment *aMediumAttachment,
105 ULONG aSourceIdx, ULONG aTargetIdx,
106 IMedium *aSource, IMedium *aTarget,
107 BOOL aMergeForward, IMedium *aParentForTarget,
108 ComSafeArrayIn(IMedium *, aChildrenToReparent),
109 IProgress *aProgress);
110 STDMETHOD(EnableVMMStatistics)(BOOL aEnable);
111 STDMETHOD(PauseWithReason)(Reason_T aReason);
112 STDMETHOD(ResumeWithReason)(Reason_T aReason);
113 STDMETHOD(SaveStateWithReason)(Reason_T aReason, IProgress **aProgress);
114
115private:
116
117 HRESULT unlockMachine(bool aFinalRelease, bool aFromServer);
118
119 SessionState_T mState;
120 SessionType_T mType;
121
122 ComPtr<IInternalMachineControl> mControl;
123
124 ComObjPtr<Console> mConsole;
125
126 ComPtr<IMachine> mRemoteMachine;
127 ComPtr<IConsole> mRemoteConsole;
128
129 ComPtr<IVirtualBox> mVirtualBox;
130
131 class ClientTokenHolder;
132
133 ClientTokenHolder *mClientTokenHolder;
134};
135
136#endif // ____H_SESSIONIMPL
137/* 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