VirtualBox

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

Last change on this file since 76542 was 76487, checked in by vboxsync, 6 years ago

Main/include: Slapped #pragma once on all headers in prep for GCC precompiled headers. Won't catch repeat includes of an already precompiled header otherwise, i.e. killing most of the PCH gain.

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