1 | /* $Id: VRDPServerImpl.h 19239 2009-04-28 13:19:14Z vboxsync $ */
|
---|
2 |
|
---|
3 | /** @file
|
---|
4 | *
|
---|
5 | * VirtualBox COM class implementation
|
---|
6 | */
|
---|
7 |
|
---|
8 | /*
|
---|
9 | * Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
10 | *
|
---|
11 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
12 | * available from http://www.virtualbox.org. This file is free software;
|
---|
13 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
14 | * General Public License (GPL) as published by the Free Software
|
---|
15 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
16 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
17 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
18 | *
|
---|
19 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
20 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
21 | * additional information or have any questions.
|
---|
22 | */
|
---|
23 |
|
---|
24 | #ifndef ____H_VRDPSERVER
|
---|
25 | #define ____H_VRDPSERVER
|
---|
26 |
|
---|
27 | #include "VirtualBoxBase.h"
|
---|
28 |
|
---|
29 | #include <VBox/VRDPAuth.h>
|
---|
30 |
|
---|
31 | class Machine;
|
---|
32 |
|
---|
33 | class ATL_NO_VTABLE VRDPServer :
|
---|
34 | public VirtualBoxBaseNEXT,
|
---|
35 | public VirtualBoxSupportErrorInfoImpl <VRDPServer, IVRDPServer>,
|
---|
36 | public VirtualBoxSupportTranslation <VRDPServer>,
|
---|
37 | VBOX_SCRIPTABLE_IMPL(IVRDPServer)
|
---|
38 | {
|
---|
39 | public:
|
---|
40 |
|
---|
41 | struct Data
|
---|
42 | {
|
---|
43 | bool operator== (const Data &that) const
|
---|
44 | {
|
---|
45 | return this == &that ||
|
---|
46 | (mEnabled == that.mEnabled &&
|
---|
47 | mVRDPPort == that.mVRDPPort &&
|
---|
48 | mVRDPAddress == that.mVRDPAddress &&
|
---|
49 | mAuthType == that.mAuthType &&
|
---|
50 | mAuthTimeout == that.mAuthTimeout &&
|
---|
51 | mAllowMultiConnection == that.mAllowMultiConnection &&
|
---|
52 | mReuseSingleConnection == that.mReuseSingleConnection);
|
---|
53 | }
|
---|
54 |
|
---|
55 | BOOL mEnabled;
|
---|
56 | ULONG mVRDPPort;
|
---|
57 | Bstr mVRDPAddress;
|
---|
58 | VRDPAuthType_T mAuthType;
|
---|
59 | ULONG mAuthTimeout;
|
---|
60 | BOOL mAllowMultiConnection;
|
---|
61 | BOOL mReuseSingleConnection;
|
---|
62 | };
|
---|
63 |
|
---|
64 | VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT (VRDPServer)
|
---|
65 |
|
---|
66 | DECLARE_NOT_AGGREGATABLE(VRDPServer)
|
---|
67 |
|
---|
68 | DECLARE_PROTECT_FINAL_CONSTRUCT()
|
---|
69 |
|
---|
70 | BEGIN_COM_MAP(VRDPServer)
|
---|
71 | COM_INTERFACE_ENTRY (ISupportErrorInfo)
|
---|
72 | COM_INTERFACE_ENTRY (IVRDPServer)
|
---|
73 | COM_INTERFACE_ENTRY2 (IDispatch, IVRDPServer)
|
---|
74 | END_COM_MAP()
|
---|
75 |
|
---|
76 | NS_DECL_ISUPPORTS
|
---|
77 |
|
---|
78 | DECLARE_EMPTY_CTOR_DTOR (VRDPServer)
|
---|
79 |
|
---|
80 | HRESULT FinalConstruct();
|
---|
81 | void FinalRelease();
|
---|
82 |
|
---|
83 | // public initializer/uninitializer for internal purposes only
|
---|
84 | HRESULT init(Machine *aParent);
|
---|
85 | HRESULT init(Machine *aParent, VRDPServer *aThat);
|
---|
86 | HRESULT initCopy (Machine *aParent, VRDPServer *aThat);
|
---|
87 | void uninit();
|
---|
88 |
|
---|
89 | // IVRDPServer properties
|
---|
90 | STDMETHOD(COMGETTER(Enabled)) (BOOL *aEnabled);
|
---|
91 | STDMETHOD(COMSETTER(Enabled)) (BOOL aEnable);
|
---|
92 | STDMETHOD(COMGETTER(Port)) (ULONG *aPort);
|
---|
93 | STDMETHOD(COMSETTER(Port)) (ULONG aPort);
|
---|
94 | STDMETHOD(COMGETTER(NetAddress)) (BSTR *aAddress);
|
---|
95 | STDMETHOD(COMSETTER(NetAddress)) (IN_BSTR aAddress);
|
---|
96 | STDMETHOD(COMGETTER(AuthType)) (VRDPAuthType_T *aType);
|
---|
97 | STDMETHOD(COMSETTER(AuthType)) (VRDPAuthType_T aType);
|
---|
98 | STDMETHOD(COMGETTER(AuthTimeout)) (ULONG *aTimeout);
|
---|
99 | STDMETHOD(COMSETTER(AuthTimeout)) (ULONG aTimeout);
|
---|
100 | STDMETHOD(COMGETTER(AllowMultiConnection)) (BOOL *aAllowMultiConnection);
|
---|
101 | STDMETHOD(COMSETTER(AllowMultiConnection)) (BOOL aAllowMultiConnection);
|
---|
102 | STDMETHOD(COMGETTER(ReuseSingleConnection)) (BOOL *aReuseSingleConnection);
|
---|
103 | STDMETHOD(COMSETTER(ReuseSingleConnection)) (BOOL aReuseSingleConnection);
|
---|
104 |
|
---|
105 | // IVRDPServer methods
|
---|
106 |
|
---|
107 | // public methods only for internal purposes
|
---|
108 |
|
---|
109 | HRESULT loadSettings (const settings::Key &aMachineNode);
|
---|
110 | HRESULT saveSettings (settings::Key &aMachineNode);
|
---|
111 |
|
---|
112 | bool isModified() { AutoWriteLock alock (this); return mData.isBackedUp(); }
|
---|
113 | bool isReallyModified() { AutoWriteLock alock (this); return mData.hasActualChanges(); }
|
---|
114 | bool rollback();
|
---|
115 | void commit();
|
---|
116 | void copyFrom (VRDPServer *aThat);
|
---|
117 |
|
---|
118 | // public methods for internal purposes only
|
---|
119 | // (ensure there is a caller and a read lock before calling them!)
|
---|
120 |
|
---|
121 | const Backupable <Data> &data() const { return mData; }
|
---|
122 |
|
---|
123 | // for VirtualBoxSupportErrorInfoImpl
|
---|
124 | static const wchar_t *getComponentName() { return L"VRDPServer"; }
|
---|
125 |
|
---|
126 | private:
|
---|
127 |
|
---|
128 | const ComObjPtr <Machine, ComWeakRef> mParent;
|
---|
129 | const ComObjPtr <VRDPServer> mPeer;
|
---|
130 |
|
---|
131 | Backupable <Data> mData;
|
---|
132 | };
|
---|
133 |
|
---|
134 | #endif // ____H_VRDPSERVER
|
---|
135 | /* vi: set tabstop=4 shiftwidth=4 expandtab: */
|
---|