VirtualBox

source: vbox/trunk/src/VBox/Main/src-client/AdditionsFacilityImpl.cpp@ 51612

Last change on this file since 51612 was 50370, checked in by vboxsync, 11 years ago

6813 src-client/AdditionsFacilityImpl.cpp

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.8 KB
Line 
1/** @file
2 *
3 * VirtualBox COM class implementation
4 */
5
6/*
7 * Copyright (C) 2014 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#include "AdditionsFacilityImpl.h"
19#include "Global.h"
20
21#include "AutoCaller.h"
22#include "Logging.h"
23
24/* static */
25const AdditionsFacility::FacilityInfo AdditionsFacility::s_aFacilityInfo[8] =
26{
27 /* NOTE: We assume that unknown is always the first entry! */
28 { "Unknown", AdditionsFacilityType_None, AdditionsFacilityClass_None },
29 { "VirtualBox Base Driver", AdditionsFacilityType_VBoxGuestDriver, AdditionsFacilityClass_Driver },
30 { "Auto Logon", AdditionsFacilityType_AutoLogon, AdditionsFacilityClass_Feature },
31 { "VirtualBox System Service", AdditionsFacilityType_VBoxService, AdditionsFacilityClass_Service },
32 { "VirtualBox Desktop Integration", AdditionsFacilityType_VBoxTrayClient, AdditionsFacilityClass_Program },
33 { "Seamless Mode", AdditionsFacilityType_Seamless, AdditionsFacilityClass_Feature },
34 { "Graphics Mode", AdditionsFacilityType_Graphics, AdditionsFacilityClass_Feature },
35};
36
37// constructor / destructor
38/////////////////////////////////////////////////////////////////////////////
39
40DEFINE_EMPTY_CTOR_DTOR(AdditionsFacility)
41
42HRESULT AdditionsFacility::FinalConstruct()
43{
44 LogFlowThisFunc(("\n"));
45 return BaseFinalConstruct();
46}
47
48void AdditionsFacility::FinalRelease()
49{
50 LogFlowThisFuncEnter();
51 uninit();
52 BaseFinalRelease();
53 LogFlowThisFuncLeave();
54}
55
56// public initializer/uninitializer for internal purposes only
57/////////////////////////////////////////////////////////////////////////////
58
59HRESULT AdditionsFacility::init(Guest *a_pParent, AdditionsFacilityType_T a_enmFacility, AdditionsFacilityStatus_T a_enmStatus,
60 uint32_t a_fFlags, PCRTTIMESPEC a_pTimeSpecTS)
61{
62 LogFlowThisFunc(("a_pParent=%p\n", a_pParent));
63
64 /* Enclose the state transition NotReady->InInit->Ready. */
65 AutoInitSpan autoInitSpan(this);
66 AssertReturn(autoInitSpan.isOk(), E_FAIL);
67
68 FacilityState state;
69 state.mStatus = a_enmStatus;
70 state.mTimestamp = *a_pTimeSpecTS;
71 NOREF(a_fFlags);
72
73 Assert(mData.mStates.size() == 0);
74 mData.mStates.push_back(state);
75 mData.mType = a_enmFacility;
76 /** @todo mClass is not initialized here. */
77 NOREF(a_fFlags);
78
79 /* Confirm a successful initialization when it's the case. */
80 autoInitSpan.setSucceeded();
81
82 return S_OK;
83}
84
85/**
86 * Uninitializes the instance.
87 * Called from FinalRelease().
88 */
89void AdditionsFacility::uninit()
90{
91 LogFlowThisFunc(("\n"));
92
93 /* Enclose the state transition Ready->InUninit->NotReady. */
94 AutoUninitSpan autoUninitSpan(this);
95 if (autoUninitSpan.uninitDone())
96 return;
97
98 mData.mStates.clear();
99}
100
101HRESULT AdditionsFacility::getClassType(AdditionsFacilityClass_T *aClassType)
102{
103 LogFlowThisFuncEnter();
104
105 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
106
107 *aClassType = i_getClass();
108
109 return S_OK;
110}
111
112HRESULT AdditionsFacility::getName(com::Utf8Str &aName)
113{
114 LogFlowThisFuncEnter();
115
116 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
117
118 aName = i_getName();
119
120 return S_OK;
121}
122
123HRESULT AdditionsFacility::getLastUpdated(LONG64 *aLastUpdated)
124{
125 LogFlowThisFuncEnter();
126
127 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
128
129 *aLastUpdated = i_getLastUpdated();
130
131 return S_OK;
132}
133
134HRESULT AdditionsFacility::getStatus(AdditionsFacilityStatus_T *aStatus)
135{
136 LogFlowThisFuncEnter();
137
138 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
139
140 *aStatus = i_getStatus();
141
142 return S_OK;
143}
144
145HRESULT AdditionsFacility::getType(AdditionsFacilityType_T *aType)
146{
147 LogFlowThisFuncEnter();
148
149 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
150
151 *aType = i_getType();
152
153 return S_OK;
154}
155
156const AdditionsFacility::FacilityInfo &AdditionsFacility::i_typeToInfo(AdditionsFacilityType_T aType)
157{
158 for (size_t i = 0; i < RT_ELEMENTS(s_aFacilityInfo); ++i)
159 {
160 if (s_aFacilityInfo[i].mType == aType)
161 return s_aFacilityInfo[i];
162 }
163 return s_aFacilityInfo[0]; /* Return unknown type. */
164}
165
166AdditionsFacilityClass_T AdditionsFacility::i_getClass() const
167{
168 return AdditionsFacility::i_typeToInfo(mData.mType).mClass;
169}
170
171com::Utf8Str AdditionsFacility::i_getName() const
172{
173 return AdditionsFacility::i_typeToInfo(mData.mType).mName;
174}
175
176LONG64 AdditionsFacility::i_getLastUpdated() const
177{
178 if (mData.mStates.size())
179 return RTTimeSpecGetMilli(&mData.mStates.front().mTimestamp);
180
181 AssertMsgFailed(("Unknown timestamp of facility!\n"));
182 return 0; /* Should never happen! */
183}
184
185AdditionsFacilityStatus_T AdditionsFacility::i_getStatus() const
186{
187 if (mData.mStates.size())
188 return mData.mStates.back().mStatus;
189
190 AssertMsgFailed(("Unknown status of facility!\n"));
191 return AdditionsFacilityStatus_Unknown; /* Should never happen! */
192}
193
194AdditionsFacilityType_T AdditionsFacility::i_getType() const
195{
196 return mData.mType;
197}
198
199/**
200 * Method used by IGuest::facilityUpdate to make updates.
201 */
202void AdditionsFacility::i_update(AdditionsFacilityStatus_T a_enmStatus, uint32_t a_fFlags, PCRTTIMESPEC a_pTimeSpecTS)
203{
204 FacilityState state;
205 state.mStatus = a_enmStatus;
206 state.mTimestamp = *a_pTimeSpecTS;
207 NOREF(a_fFlags);
208
209 mData.mStates.push_back(state);
210 if (mData.mStates.size() > 10) /* Only keep the last 10 states. */
211 mData.mStates.erase(mData.mStates.begin());
212}
213
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