VirtualBox

source: vbox/trunk/src/VBox/Main/include/GuestImpl.h@ 16560

Last change on this file since 16560 was 15051, checked in by vboxsync, 15 years ago

Main: Cleaned up the long standing const BSTR = const (OLECHAR *) on WIn32 vs (const PRunichar) * on XPCOM clash. Cleaned up BSTR/GUID macros (IN_BSTR replaces INPTR BSTR, IN_GUID replaces INPTR GUIDPARAM, OUT_GUID replaces GUIDPARAMOUT).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.5 KB
Line 
1/** @file
2 *
3 * VirtualBox COM class implementation
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22#ifndef ____H_GUESTIMPL
23#define ____H_GUESTIMPL
24
25#include "VirtualBoxBase.h"
26#include <VBox/ostypes.h>
27
28class Console;
29
30#define GUEST_STAT_INVALID (ULONG)-1
31
32class ATL_NO_VTABLE Guest :
33 public VirtualBoxSupportErrorInfoImpl <Guest, IGuest>,
34 public VirtualBoxSupportTranslation <Guest>,
35 public VirtualBoxBaseNEXT,
36 public IGuest
37{
38public:
39
40 DECLARE_NOT_AGGREGATABLE(Guest)
41
42 DECLARE_PROTECT_FINAL_CONSTRUCT()
43
44 BEGIN_COM_MAP(Guest)
45 COM_INTERFACE_ENTRY(ISupportErrorInfo)
46 COM_INTERFACE_ENTRY(IGuest)
47 END_COM_MAP()
48
49 NS_DECL_ISUPPORTS
50
51 DECLARE_EMPTY_CTOR_DTOR (Guest)
52
53 HRESULT FinalConstruct();
54 void FinalRelease();
55
56 // public initializer/uninitializer for internal purposes only
57 HRESULT init (Console *aParent);
58 void uninit();
59
60 // IGuest properties
61 STDMETHOD(COMGETTER(OSTypeId)) (BSTR *aOSTypeId);
62 STDMETHOD(COMGETTER(AdditionsActive)) (BOOL *aAdditionsActive);
63 STDMETHOD(COMGETTER(AdditionsVersion)) (BSTR *aAdditionsVersion);
64 STDMETHOD(COMGETTER(SupportsSeamless)) (BOOL *aSupportsSeamless);
65 STDMETHOD(COMGETTER(SupportsGraphics)) (BOOL *aSupportsGraphics);
66 STDMETHOD(COMGETTER(MemoryBalloonSize)) (ULONG *aMemoryBalloonSize);
67 STDMETHOD(COMSETTER(MemoryBalloonSize)) (ULONG aMemoryBalloonSize);
68 STDMETHOD(COMGETTER(StatisticsUpdateInterval)) (ULONG *aUpdateInterval);
69 STDMETHOD(COMSETTER(StatisticsUpdateInterval)) (ULONG aUpdateInterval);
70
71 // IGuest methods
72 STDMETHOD(SetCredentials)(IN_BSTR aUserName, IN_BSTR aPassword,
73 IN_BSTR aDomain, BOOL aAllowInteractiveLogon);
74 STDMETHOD(GetStatistic)(ULONG aCpuId, GuestStatisticType_T aStatistic, ULONG *aStatVal);
75
76 // public methods that are not in IDL
77 void setAdditionsVersion (Bstr aVersion, VBOXOSTYPE aOsType);
78
79 void setSupportsSeamless (BOOL aSupportsSeamless);
80
81 void setSupportsGraphics (BOOL aSupportsGraphics);
82
83 STDMETHOD(SetStatistic)(ULONG aCpuId, GuestStatisticType_T aStatistic, ULONG aStatVal);
84
85 // for VirtualBoxSupportErrorInfoImpl
86 static const wchar_t *getComponentName() { return L"Guest"; }
87
88private:
89
90 struct Data
91 {
92 Data() : mAdditionsActive (FALSE), mSupportsSeamless (FALSE),
93 /* Windows and OS/2 guests take this for granted */
94 mSupportsGraphics (TRUE) {}
95
96 Bstr mOSTypeId;
97 BOOL mAdditionsActive;
98 Bstr mAdditionsVersion;
99 BOOL mSupportsSeamless;
100 BOOL mSupportsGraphics;
101 };
102
103 ULONG mMemoryBalloonSize;
104 ULONG mStatUpdateInterval;
105
106 ULONG mCurrentGuestStat[GuestStatisticType_MaxVal];
107
108 ComObjPtr <Console, ComWeakRef> mParent;
109 Data mData;
110};
111
112#endif // ____H_GUESTIMPL
113/* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use