forked from FreeApophis/TrueCrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FavoriteVolume.cpp
94 lines (78 loc) · 2.7 KB
/
FavoriteVolume.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
/*
Copyright (c) 2008-2009 TrueCrypt Developers Association. All rights reserved.
Governed by the TrueCrypt License 3.0 the full text of which is contained in
the file License.txt included in TrueCrypt binary and source code distribution
packages.
*/
#include "System.h"
#include "Application.h"
#include "FavoriteVolume.h"
#include "Xml.h"
namespace TrueCrypt
{
FavoriteVolumeList FavoriteVolume::LoadList ()
{
FavoriteVolumeList favorites;
FilePath path = Application::GetConfigFilePath (GetFileName());
if (path.IsFile())
{
foreach (XmlNode node, XmlParser (path).GetNodes (L"volume"))
{
VolumeSlotNumber slotNumber = 0;
wstring attr = wstring (node.Attributes[L"slotnumber"]);
if (!attr.empty())
slotNumber = StringConverter::ToUInt64 (attr);
bool readOnly = false;
attr = wstring (node.Attributes[L"readonly"]);
if (!attr.empty())
readOnly = (StringConverter::ToUInt32 (attr) != 0 ? true : false);
bool system = false;
attr = wstring (node.Attributes[L"system"]);
if (!attr.empty())
system = (StringConverter::ToUInt32 (attr) != 0 ? true : false);
favorites.push_back (shared_ptr <FavoriteVolume> (
new FavoriteVolume ((wstring) node.InnerText, wstring (node.Attributes[L"mountpoint"]), slotNumber, readOnly, system)));
}
}
return favorites;
}
void FavoriteVolume::SaveList (const FavoriteVolumeList &favorites)
{
FilePath favoritesCfgPath = Application::GetConfigFilePath (GetFileName(), true);
if (favorites.empty())
{
if (favoritesCfgPath.IsFile())
favoritesCfgPath.Delete();
}
else
{
XmlNode favoritesXml (L"favorites");
foreach_ref (const FavoriteVolume &favorite, favorites)
{
XmlNode node (L"volume", wstring (favorite.Path));
node.Attributes[L"mountpoint"] = wstring (favorite.MountPoint);
node.Attributes[L"slotnumber"] = StringConverter::FromNumber (favorite.SlotNumber);
node.Attributes[L"readonly"] = StringConverter::FromNumber (favorite.ReadOnly ? 1 : 0);
node.Attributes[L"system"] = StringConverter::FromNumber (favorite.System ? 1 : 0);
favoritesXml.InnerNodes.push_back (node);
}
XmlWriter favoritesWriter (favoritesCfgPath);
favoritesWriter.WriteNode (favoritesXml);
favoritesWriter.Close();
}
}
void FavoriteVolume::ToMountOptions (MountOptions &options) const
{
if (MountPoint.IsEmpty())
{
options.MountPoint.reset();
options.NoFilesystem = true;
}
else
options.MountPoint.reset (new DirectoryPath (MountPoint));
options.Path.reset (new VolumePath (Path));
options.PartitionInSystemEncryptionScope = System;
options.Protection = (ReadOnly ? VolumeProtection::ReadOnly : VolumeProtection::None);
options.SlotNumber = SlotNumber;
}
}