1 | /* $Id: SessionImpl.h 75488 2018-11-15 16:12:07Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBox Client Session COM Class definition
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2017 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 "SessionWrap.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
|
---|
31 | class ATL_NO_VTABLE Session :
|
---|
32 | public SessionWrap
|
---|
33 | #ifdef RT_OS_WINDOWS
|
---|
34 | , public ATL::CComCoClass<Session, &CLSID_Session>
|
---|
35 | #endif
|
---|
36 | {
|
---|
37 | public:
|
---|
38 |
|
---|
39 | DECLARE_CLASSFACTORY()
|
---|
40 |
|
---|
41 | // Do not use any ATL registry support.
|
---|
42 | //DECLARE_REGISTRY_RESOURCEID(IDR_VIRTUALBOX)
|
---|
43 |
|
---|
44 | DECLARE_NOT_AGGREGATABLE(Session)
|
---|
45 |
|
---|
46 | DECLARE_EMPTY_CTOR_DTOR(Session)
|
---|
47 |
|
---|
48 | HRESULT FinalConstruct();
|
---|
49 | void FinalRelease();
|
---|
50 |
|
---|
51 | // public initializers/uninitializers only for internal purposes
|
---|
52 | HRESULT init();
|
---|
53 | void uninit();
|
---|
54 |
|
---|
55 | private:
|
---|
56 |
|
---|
57 | // Wrapped ISession properties
|
---|
58 | HRESULT getState(SessionState_T *aState);
|
---|
59 | HRESULT getType(SessionType_T *aType);
|
---|
60 | HRESULT getName(com::Utf8Str &aName);
|
---|
61 | HRESULT setName(const com::Utf8Str &aName);
|
---|
62 | HRESULT getMachine(ComPtr<IMachine> &aMachine);
|
---|
63 | HRESULT getConsole(ComPtr<IConsole> &aConsole);
|
---|
64 |
|
---|
65 | // Wrapped ISession methods
|
---|
66 | HRESULT unlockMachine();
|
---|
67 |
|
---|
68 | // Wrapped IInternalSessionControl properties
|
---|
69 | HRESULT getPID(ULONG *aPid);
|
---|
70 | HRESULT getRemoteConsole(ComPtr<IConsole> &aRemoteConsole);
|
---|
71 | HRESULT getNominalState(MachineState_T *aNominalState);
|
---|
72 |
|
---|
73 | // Wrapped IInternalSessionControl methods
|
---|
74 | #ifndef VBOX_WITH_GENERIC_SESSION_WATCHER
|
---|
75 | HRESULT assignMachine(const ComPtr<IMachine> &aMachine,
|
---|
76 | LockType_T aLockType,
|
---|
77 | const com::Utf8Str &aTokenId);
|
---|
78 | #else
|
---|
79 | HRESULT assignMachine(const ComPtr<IMachine> &aMachine,
|
---|
80 | LockType_T aLockType,
|
---|
81 | const ComPtr<IToken> &aToken);
|
---|
82 | #endif /* !VBOX_WITH_GENERIC_SESSION_WATCHER */
|
---|
83 | HRESULT assignRemoteMachine(const ComPtr<IMachine> &aMachine,
|
---|
84 | const ComPtr<IConsole> &aConsole);
|
---|
85 | HRESULT updateMachineState(MachineState_T aMachineState);
|
---|
86 | HRESULT uninitialize();
|
---|
87 | HRESULT onNetworkAdapterChange(const ComPtr<INetworkAdapter> &aNetworkAdapter,
|
---|
88 | BOOL aChangeAdapter);
|
---|
89 | HRESULT onAudioAdapterChange(const ComPtr<IAudioAdapter> &aAudioAdapter);
|
---|
90 | HRESULT onSerialPortChange(const ComPtr<ISerialPort> &aSerialPort);
|
---|
91 | HRESULT onParallelPortChange(const ComPtr<IParallelPort> &aParallelPort);
|
---|
92 | HRESULT onStorageControllerChange();
|
---|
93 | HRESULT onMediumChange(const ComPtr<IMediumAttachment> &aMediumAttachment,
|
---|
94 | BOOL aForce);
|
---|
95 | HRESULT onStorageDeviceChange(const ComPtr<IMediumAttachment> &aMediumAttachment,
|
---|
96 | BOOL aRemove,
|
---|
97 | BOOL aSilent);
|
---|
98 | HRESULT onClipboardModeChange(ClipboardMode_T aClipboardMode);
|
---|
99 | HRESULT onDnDModeChange(DnDMode_T aDndMode);
|
---|
100 | HRESULT onCPUChange(ULONG aCpu,
|
---|
101 | BOOL aAdd);
|
---|
102 | HRESULT onCPUExecutionCapChange(ULONG aExecutionCap);
|
---|
103 | HRESULT onVRDEServerChange(BOOL aRestart);
|
---|
104 | HRESULT onRecordingChange(BOOL aEnable);
|
---|
105 | HRESULT onUSBControllerChange();
|
---|
106 | HRESULT onSharedFolderChange(BOOL aGlobal);
|
---|
107 | HRESULT onUSBDeviceAttach(const ComPtr<IUSBDevice> &aDevice,
|
---|
108 | const ComPtr<IVirtualBoxErrorInfo> &aError,
|
---|
109 | ULONG aMaskedInterfaces,
|
---|
110 | const com::Utf8Str &aCaptureFilename);
|
---|
111 | HRESULT onUSBDeviceDetach(const com::Guid &aId,
|
---|
112 | const ComPtr<IVirtualBoxErrorInfo> &aError);
|
---|
113 | HRESULT onShowWindow(BOOL aCheck,
|
---|
114 | BOOL *aCanShow,
|
---|
115 | LONG64 *aWinId);
|
---|
116 | HRESULT onBandwidthGroupChange(const ComPtr<IBandwidthGroup> &aBandwidthGroup);
|
---|
117 | HRESULT accessGuestProperty(const com::Utf8Str &aName,
|
---|
118 | const com::Utf8Str &aValue,
|
---|
119 | const com::Utf8Str &aFlags,
|
---|
120 | ULONG aAccessMode,
|
---|
121 | com::Utf8Str &aRetValue,
|
---|
122 | LONG64 *aRetTimestamp,
|
---|
123 | com::Utf8Str &aRetFlags);
|
---|
124 | HRESULT enumerateGuestProperties(const com::Utf8Str &aPatterns,
|
---|
125 | std::vector<com::Utf8Str> &aKeys,
|
---|
126 | std::vector<com::Utf8Str> &aValues,
|
---|
127 | std::vector<LONG64> &aTimestamps,
|
---|
128 | std::vector<com::Utf8Str> &aFlags);
|
---|
129 | HRESULT onlineMergeMedium(const ComPtr<IMediumAttachment> &aMediumAttachment,
|
---|
130 | ULONG aSourceIdx,
|
---|
131 | ULONG aTargetIdx,
|
---|
132 | const ComPtr<IProgress> &aProgress);
|
---|
133 | HRESULT reconfigureMediumAttachments(const std::vector<ComPtr<IMediumAttachment> > &aAttachments);
|
---|
134 | HRESULT enableVMMStatistics(BOOL aEnable);
|
---|
135 | HRESULT pauseWithReason(Reason_T aReason);
|
---|
136 | HRESULT resumeWithReason(Reason_T aReason);
|
---|
137 | HRESULT saveStateWithReason(Reason_T aReason,
|
---|
138 | const ComPtr<IProgress> &aProgress,
|
---|
139 | const ComPtr<ISnapshot> &aSnapshot,
|
---|
140 | const Utf8Str &aStateFilePath,
|
---|
141 | BOOL aPauseVM,
|
---|
142 | BOOL *aLeftPaused);
|
---|
143 | HRESULT cancelSaveStateWithReason();
|
---|
144 |
|
---|
145 |
|
---|
146 | HRESULT i_unlockMachine(bool aFinalRelease, bool aFromServer, AutoWriteLock &aLockW);
|
---|
147 |
|
---|
148 | SessionState_T mState;
|
---|
149 | SessionType_T mType;
|
---|
150 | Utf8Str mName;
|
---|
151 |
|
---|
152 | ComPtr<IInternalMachineControl> mControl;
|
---|
153 |
|
---|
154 | #ifndef VBOX_COM_INPROC_API_CLIENT
|
---|
155 | ComObjPtr<Console> mConsole;
|
---|
156 | #endif
|
---|
157 |
|
---|
158 | ComPtr<IMachine> mRemoteMachine;
|
---|
159 | ComPtr<IConsole> mRemoteConsole;
|
---|
160 |
|
---|
161 | ComPtr<IVirtualBox> mVirtualBox;
|
---|
162 |
|
---|
163 | class ClientTokenHolder;
|
---|
164 |
|
---|
165 | ClientTokenHolder *mClientTokenHolder;
|
---|
166 | };
|
---|
167 |
|
---|
168 | #endif // !____H_SESSIONIMPL
|
---|
169 | /* vi: set tabstop=4 shiftwidth=4 expandtab: */
|
---|