-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathextpack.cpp
156 lines (132 loc) · 4.14 KB
/
extpack.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/* This file is part of libvbox
* Copyright (C) 2019 Michael Hansen
*
* libvbox is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* libvbox is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with libvbox; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "libvbox_p.h"
COM_WRAP_IFC(IExtPackBase)
COM_WRAP_IFC(IExtPack)
COM_WRAP_IFC(IExtPackFile)
std::u16string VBox::IExtPackBase::name() const
{
std::u16string result;
COM_GetString(get_IFC(), Name, result);
return result;
}
std::u16string VBox::IExtPackBase::description() const
{
std::u16string result;
COM_GetString(get_IFC(), Description, result);
return result;
}
std::u16string VBox::IExtPackBase::version() const
{
std::u16string result;
COM_GetString(get_IFC(), Version, result);
return result;
}
uint32_t VBox::IExtPackBase::revision() const
{
COM_ULong result;
COM_GetValue(get_IFC(), Revision, result);
return static_cast<uint32_t>(result);
}
std::u16string VBox::IExtPackBase::edition() const
{
std::u16string result;
COM_GetString(get_IFC(), Edition, result);
return result;
}
std::u16string VBox::IExtPackBase::VRDEModule() const
{
std::u16string result;
COM_GetString(get_IFC(), VRDEModule, result);
return result;
}
#if VirtualBoxSDK_VERSION >= VBox_MAKE_VERSION(7, 0, 0)
std::u16string VBox::IExtPackBase::CryptoModule() const
{
std::u16string result;
COM_GetString(get_IFC(), CryptoModule, result);
return result;
}
#endif
std::vector<VBox::COMPtr<VBox::IExtPackPlugIn>> VBox::IExtPackBase::plugIns() const
{
std::vector<COMPtr<IExtPackPlugIn>> result;
COM_GetArray_Wrap(get_IFC(), PlugIns, result);
return result;
}
bool VBox::IExtPackBase::usable() const
{
COM_Bool result;
COM_GetValue(get_IFC(), Usable, result);
return static_cast<bool>(result);
}
std::u16string VBox::IExtPackBase::whyUnusable() const
{
std::u16string result;
COM_GetString(get_IFC(), WhyUnusable, result);
return result;
}
bool VBox::IExtPackBase::showLicense() const
{
COM_Bool result;
COM_GetValue(get_IFC(), ShowLicense, result);
return static_cast<bool>(result);
}
std::u16string VBox::IExtPackBase::license() const
{
std::u16string result;
COM_GetString(get_IFC(), License, result);
return result;
}
std::u16string VBox::IExtPackBase::queryLicense(
const std::u16string &preferredLocale,
const std::u16string &preferredLanguage, const std::u16string &format)
{
COM_StringProxy pResult;
COM_StringProxy pPreferredLocale(preferredLocale);
COM_StringProxy pPreferredLanguage(preferredLanguage);
COM_StringProxy pFormat(format);
auto rc = get_IFC()->QueryLicense(pPreferredLocale.m_text,
pPreferredLanguage.m_text, pFormat.m_text, &pResult.m_text);
COM_ERROR_CHECK(rc);
return pResult.toString();
}
VBox::COMPtr<VBox::COMUnknown> VBox::IExtPack::queryObject(
const std::u16string &objUuid)
{
COMUnknown::COM_Ifc *cResult = nullptr;
COM_StringProxy pObjUuid(objUuid);
auto rc = get_IFC()->QueryObject(pObjUuid.m_text, &cResult);
COM_ERROR_CHECK(rc);
return COMPtr<COMUnknown>::wrap(cResult);
}
std::u16string VBox::IExtPackFile::filePath() const
{
std::u16string result;
COM_GetString(get_IFC(), FilePath, result);
return result;
}
VBox::COMPtr<VBox::IProgress> VBox::IExtPackFile::install(bool replace,
const std::u16string &displayInfo)
{
::IProgress *cResult = nullptr;
COM_StringProxy pDisplayInfo(displayInfo);
auto rc = get_IFC()->Install(replace, pDisplayInfo.m_text, &cResult);
COM_ERROR_CHECK(rc);
return COMPtr<IProgress>::wrap(cResult);
}