-
Notifications
You must be signed in to change notification settings - Fork 6
/
fsinfo.cpp
122 lines (106 loc) · 3.05 KB
/
fsinfo.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
/* This file is part of libvbox
* Copyright (C) 2022 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"
#if VirtualBoxSDK_VERSION >= VBox_MAKE_VERSION(7, 0, 0)
COM_WRAP_IFC(IFsInfo)
COM_WRAP_IFC(IGuestFsInfo)
int64_t VBox::IFsInfo::freeSize() const
{
COM_Long64 result;
COM_GetValue(get_IFC(), FreeSize, result);
return static_cast<int64_t>(result);
}
int64_t VBox::IFsInfo::totalSize() const
{
COM_Long64 result;
COM_GetValue(get_IFC(), TotalSize, result);
return static_cast<int64_t>(result);
}
uint32_t VBox::IFsInfo::blockSize() const
{
COM_ULong result;
COM_GetValue(get_IFC(), BlockSize, result);
return static_cast<uint32_t>(result);
}
uint32_t VBox::IFsInfo::sectorSize() const
{
COM_ULong result;
COM_GetValue(get_IFC(), SectorSize, result);
return static_cast<uint32_t>(result);
}
uint32_t VBox::IFsInfo::serialNumber() const
{
COM_ULong result;
COM_GetValue(get_IFC(), SerialNumber, result);
return static_cast<uint32_t>(result);
}
bool VBox::IFsInfo::isRemote() const
{
COM_Bool result;
COM_GetValue(get_IFC(), IsRemote, result);
return static_cast<bool>(result);
}
bool VBox::IFsInfo::isCaseSensitive() const
{
COM_Bool result;
COM_GetValue(get_IFC(), IsCaseSensitive, result);
return static_cast<bool>(result);
}
bool VBox::IFsInfo::isReadOnly() const
{
COM_Bool result;
COM_GetValue(get_IFC(), IsReadOnly, result);
return static_cast<bool>(result);
}
bool VBox::IFsInfo::isCompressed() const
{
COM_Bool result;
COM_GetValue(get_IFC(), IsCompressed, result);
return static_cast<bool>(result);
}
bool VBox::IFsInfo::supportsFileCompression() const
{
COM_Bool result;
COM_GetValue(get_IFC(), SupportsFileCompression, result);
return static_cast<bool>(result);
}
uint32_t VBox::IFsInfo::maxComponent() const
{
COM_ULong result;
COM_GetValue(get_IFC(), MaxComponent, result);
return static_cast<uint32_t>(result);
}
std::u16string VBox::IFsInfo::type() const
{
std::u16string result;
COM_GetString(get_IFC(), Type, result);
return result;
}
std::u16string VBox::IFsInfo::label() const
{
std::u16string result;
COM_GetString(get_IFC(), Label, result);
return result;
}
std::u16string VBox::IFsInfo::mountPoint() const
{
std::u16string result;
COM_GetString(get_IFC(), MountPoint, result);
return result;
}
#endif