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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
|
#include <vcpkg/base/system_headers.h>
#include <catch2/catch.hpp>
#include <vcpkg/base/checks.h>
#include <vcpkg/base/files.h>
#include <vcpkg/base/util.h>
#include <vcpkg/statusparagraph.h>
#include <vcpkg-test/util.h>
// used to get the implementation specific compiler flags (i.e., __cpp_lib_filesystem)
#include <ciso646>
#include <iostream>
#include <memory>
#if defined(_WIN32)
#include <windows.h>
#endif
#define FILESYSTEM_SYMLINK_STD 0
#define FILESYSTEM_SYMLINK_UNIX 1
#define FILESYSTEM_SYMLINK_NONE 2
#if VCPKG_USE_STD_FILESYSTEM
#define FILESYSTEM_SYMLINK FILESYSTEM_SYMLINK_STD
#elif !defined(_MSC_VER)
#define FILESYSTEM_SYMLINK FILESYSTEM_SYMLINK_UNIX
#else
#define FILESYSTEM_SYMLINK FILESYSTEM_SYMLINK_NONE
#endif
namespace vcpkg::Test
{
const Triplet X86_WINDOWS = Triplet::from_canonical_name("x86-windows");
const Triplet X64_WINDOWS = Triplet::from_canonical_name("x64-windows");
const Triplet X86_UWP = Triplet::from_canonical_name("x86-uwp");
const Triplet ARM_UWP = Triplet::from_canonical_name("arm-uwp");
const Triplet X64_ANDROID = Triplet::from_canonical_name("x64-android");
std::unique_ptr<SourceControlFile> make_control_file(
const char* name,
const char* depends,
const std::vector<std::pair<const char*, const char*>>& features,
const std::vector<const char*>& default_features)
{
using Pgh = std::unordered_map<std::string, std::string>;
std::vector<Pgh> scf_pghs;
scf_pghs.push_back(Pgh{{"Source", name},
{"Version", "0"},
{"Build-Depends", depends},
{"Default-Features", Strings::join(", ", default_features)}});
for (auto&& feature : features)
{
scf_pghs.push_back(Pgh{
{"Feature", feature.first},
{"Description", "feature"},
{"Build-Depends", feature.second},
});
}
auto m_pgh = test_parse_control_file(std::move(scf_pghs));
REQUIRE(m_pgh.has_value());
return std::move(*m_pgh.get());
}
std::unique_ptr<vcpkg::StatusParagraph> make_status_pgh(const char* name,
const char* depends,
const char* default_features,
const char* triplet)
{
return std::make_unique<StatusParagraph>(Parse::Paragraph{{"Package", {name, {}}},
{"Version", {"1", {}}},
{"Architecture", {triplet, {}}},
{"Multi-Arch", {"same", {}}},
{"Depends", {depends, {}}},
{"Default-Features", {default_features, {}}},
{"Status", {"install ok installed", {}}}});
}
std::unique_ptr<StatusParagraph> make_status_feature_pgh(const char* name,
const char* feature,
const char* depends,
const char* triplet)
{
return std::make_unique<StatusParagraph>(Parse::Paragraph{{"Package", {name, {}}},
{"Feature", {feature, {}}},
{"Architecture", {triplet, {}}},
{"Multi-Arch", {"same", {}}},
{"Depends", {depends, {}}},
{"Status", {"install ok installed", {}}}});
}
PackageSpec PackageSpecMap::emplace(const char* name,
const char* depends,
const std::vector<std::pair<const char*, const char*>>& features,
const std::vector<const char*>& default_features)
{
auto scfl = SourceControlFileLocation{make_control_file(name, depends, features, default_features), ""};
return emplace(std::move(scfl));
}
PackageSpec PackageSpecMap::emplace(vcpkg::SourceControlFileLocation&& scfl)
{
map.emplace(scfl.source_control_file->core_paragraph->name, std::move(scfl));
return {scfl.source_control_file->core_paragraph->name, triplet};
}
static AllowSymlinks internal_can_create_symlinks() noexcept
{
#if FILESYSTEM_SYMLINK == FILESYSTEM_SYMLINK_NONE
return AllowSymlinks::No;
#elif FILESYSTEM_SYMLINK == FILESYSTEM_SYMLINK_UNIX
return AllowSymlinks::Yes;
#elif !defined(_WIN32) // FILESYSTEM_SYMLINK == FILESYSTEM_SYMLINK_STD
return AllowSymlinks::Yes;
#else
constexpr static const wchar_t regkey[] = LR"(SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock)";
constexpr static const wchar_t regkey_member[] = LR"(AllowDevelopmentWithoutDevLicense)";
DWORD data;
DWORD dataSize = sizeof(data);
const auto status =
RegGetValueW(HKEY_LOCAL_MACHINE, regkey, regkey_member, RRF_RT_DWORD, nullptr, &data, &dataSize);
if (status == ERROR_SUCCESS && data == 1)
{
return AllowSymlinks::Yes;
}
else
{
std::cout << "Symlinks are not allowed on this system\n";
return AllowSymlinks::No;
}
#endif
}
const static AllowSymlinks CAN_CREATE_SYMLINKS = internal_can_create_symlinks();
AllowSymlinks can_create_symlinks() noexcept { return CAN_CREATE_SYMLINKS; }
static fs::path internal_base_temporary_directory()
{
#if defined(_WIN32)
wchar_t* tmp = static_cast<wchar_t*>(std::calloc(32'767, 2));
if (!GetEnvironmentVariableW(L"TEMP", tmp, 32'767))
{
std::cerr << "No temporary directory found.\n";
std::abort();
}
fs::path result = tmp;
std::free(tmp);
return result / L"vcpkg-test";
#else
return "/tmp/vcpkg-test";
#endif
}
const fs::path& base_temporary_directory() noexcept
{
const static fs::path BASE_TEMPORARY_DIRECTORY = internal_base_temporary_directory();
return BASE_TEMPORARY_DIRECTORY;
}
#if FILESYSTEM_SYMLINK == FILESYSTEM_SYMLINK_NONE
constexpr char no_filesystem_message[] =
"<filesystem> doesn't exist; on windows, we don't attempt to use the win32 calls to create symlinks";
#endif
void create_symlink(const fs::path& target, const fs::path& file, std::error_code& ec)
{
#if FILESYSTEM_SYMLINK == FILESYSTEM_SYMLINK_STD
if (can_create_symlinks())
{
fs::path targetp = target.native();
fs::path filep = file.native();
fs::stdfs::create_symlink(targetp, filep, ec);
}
else
{
vcpkg::Checks::exit_with_message(VCPKG_LINE_INFO, "Symlinks are not allowed on this system");
}
#elif FILESYSTEM_SYMLINK == FILESYSTEM_SYMLINK_UNIX
if (symlink(target.c_str(), file.c_str()) != 0)
{
ec.assign(errno, std::system_category());
}
#else
(void)target;
(void)file;
(void)ec;
vcpkg::Checks::exit_with_message(VCPKG_LINE_INFO, no_filesystem_message);
#endif
}
void create_directory_symlink(const fs::path& target, const fs::path& file, std::error_code& ec)
{
#if FILESYSTEM_SYMLINK == FILESYSTEM_SYMLINK_STD
if (can_create_symlinks())
{
std::filesystem::path targetp = target.native();
std::filesystem::path filep = file.native();
std::filesystem::create_directory_symlink(targetp, filep, ec);
}
else
{
vcpkg::Checks::exit_with_message(VCPKG_LINE_INFO, "Symlinks are not allowed on this system");
}
#elif FILESYSTEM_SYMLINK == FILESYSTEM_SYMLINK_UNIX
::vcpkg::Test::create_symlink(target, file, ec);
#else
(void)target;
(void)file;
(void)ec;
vcpkg::Checks::exit_with_message(VCPKG_LINE_INFO, no_filesystem_message);
#endif
}
}
|