Skip to content

Commit c1dc307

Browse files
authored
src: replace kPathSeparator with std::filesystem
PR-URL: #53063 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Stephen Belanger <[email protected]> Reviewed-By: Rafael Gonzaga <[email protected]>
1 parent dd0e99f commit c1dc307

11 files changed

+34
-46
lines changed

src/compile_cache.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ CompileCacheEntry* CompileCacheHandler::GetOrInsert(
206206
result->code_size = code_utf8.length();
207207
result->cache_key = key;
208208
result->cache_filename =
209-
compile_cache_dir_ + kPathSeparator + Uint32ToHex(result->cache_key);
209+
(compile_cache_dir_ / Uint32ToHex(result->cache_key)).string();
210210
result->source_filename = filename_utf8.ToString();
211211
result->cache = nullptr;
212212
result->type = type;
@@ -380,7 +380,7 @@ bool CompileCacheHandler::InitializeDirectory(Environment* env,
380380
return false;
381381
}
382382

383-
compile_cache_dir_ = cache_dir;
383+
compile_cache_dir_ = std::filesystem::path(cache_dir);
384384
return true;
385385
}
386386

src/compile_cache.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
55

66
#include <cinttypes>
7+
#include <filesystem>
78
#include <memory>
89
#include <string>
910
#include <unordered_map>
@@ -70,7 +71,7 @@ class CompileCacheHandler {
7071
v8::Isolate* isolate_ = nullptr;
7172
bool is_debug_ = false;
7273

73-
std::string compile_cache_dir_;
74+
std::filesystem::path compile_cache_dir_;
7475
// The compile cache is stored in a directory whose name is the hex string of
7576
// compiler_cache_key_.
7677
uint32_t compiler_cache_key_ = 0;

src/env.cc

+4-2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
#include <atomic>
2929
#include <cinttypes>
3030
#include <cstdio>
31+
#include <filesystem>
3132
#include <iostream>
3233
#include <limits>
3334
#include <memory>
@@ -725,7 +726,8 @@ std::string Environment::GetCwd(const std::string& exec_path) {
725726

726727
// This can fail if the cwd is deleted. In that case, fall back to
727728
// exec_path.
728-
return exec_path.substr(0, exec_path.find_last_of(kPathSeparator));
729+
return exec_path.substr(
730+
0, exec_path.find_last_of(std::filesystem::path::preferred_separator));
729731
}
730732

731733
void Environment::add_refs(int64_t diff) {
@@ -2079,7 +2081,7 @@ size_t Environment::NearHeapLimitCallback(void* data,
20792081
dir = Environment::GetCwd(env->exec_path_);
20802082
}
20812083
DiagnosticFilename name(env, "Heap", "heapsnapshot");
2082-
std::string filename = dir + kPathSeparator + (*name);
2084+
std::string filename = (std::filesystem::path(dir) / (*name)).string();
20832085

20842086
Debug(env, DebugCategory::DIAGNOSTICS, "Start generating %s...\n", *name);
20852087

src/inspector_profiler.cc

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#include "v8-inspector.h"
1212

1313
#include <cinttypes>
14+
#include <filesystem>
1415
#include <limits>
1516
#include <sstream>
1617
#include "simdutf.h"
@@ -248,7 +249,7 @@ void V8ProfilerConnection::WriteProfile(simdjson::ondemand::object* result) {
248249

249250
std::string filename = GetFilename();
250251
DCHECK(!filename.empty());
251-
std::string path = directory + kPathSeparator + filename;
252+
std::string path = (std::filesystem::path(directory) / filename).string();
252253

253254
WriteResult(env_, path.c_str(), profile);
254255
}
@@ -304,7 +305,7 @@ void V8CoverageConnection::WriteProfile(simdjson::ondemand::object* result) {
304305

305306
std::string filename = GetFilename();
306307
DCHECK(!filename.empty());
307-
std::string path = directory + kPathSeparator + filename;
308+
std::string path = (std::filesystem::path(directory) / filename).string();
308309

309310
// Only insert source map cache when there's source map data at all.
310311
if (!source_map_cache_v->IsUndefined()) {

src/node_file.cc

+6-12
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,6 @@ using v8::Value;
8282
# define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
8383
#endif
8484

85-
#ifdef __POSIX__
86-
constexpr char kPathSeparator = '/';
87-
#else
88-
const char* const kPathSeparator = "\\/";
89-
#endif
90-
9185
inline int64_t GetOffset(Local<Value> value) {
9286
return IsSafeJsInt(value) ? value.As<Integer>()->Value() : -1;
9387
}
@@ -1639,9 +1633,9 @@ int MKDirpSync(uv_loop_t* loop,
16391633
return err;
16401634
}
16411635
case UV_ENOENT: {
1642-
std::string dirname = next_path.substr(0,
1643-
next_path.find_last_of(kPathSeparator));
1644-
if (dirname != next_path) {
1636+
auto filesystem_path = std::filesystem::path(next_path);
1637+
if (filesystem_path.has_parent_path()) {
1638+
std::string dirname = filesystem_path.parent_path().string();
16451639
req_wrap->continuation_data()->PushPath(std::move(next_path));
16461640
req_wrap->continuation_data()->PushPath(std::move(dirname));
16471641
} else if (req_wrap->continuation_data()->paths().empty()) {
@@ -1719,9 +1713,9 @@ int MKDirpAsync(uv_loop_t* loop,
17191713
break;
17201714
}
17211715
case UV_ENOENT: {
1722-
std::string dirname = path.substr(0,
1723-
path.find_last_of(kPathSeparator));
1724-
if (dirname != path) {
1716+
auto filesystem_path = std::filesystem::path(path);
1717+
if (filesystem_path.has_parent_path()) {
1718+
std::string dirname = filesystem_path.parent_path().string();
17251719
req_wrap->continuation_data()->PushPath(path);
17261720
req_wrap->continuation_data()->PushPath(std::move(dirname));
17271721
} else if (req_wrap->continuation_data()->paths().empty()) {

src/node_report.cc

+4-5
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
#include <dlfcn.h>
1919
#endif
2020

21-
#include <iostream>
2221
#include <cstring>
2322
#include <ctime>
2423
#include <cwctype>
24+
#include <filesystem>
2525
#include <fstream>
2626

2727
constexpr int NODE_REPORT_VERSION = 3;
@@ -887,10 +887,9 @@ std::string TriggerNodeReport(Isolate* isolate,
887887
report_directory = per_process::cli_options->report_directory;
888888
}
889889
// Regular file. Append filename to directory path if one was specified
890-
if (report_directory.length() > 0) {
891-
std::string pathname = report_directory;
892-
pathname += kPathSeparator;
893-
pathname += filename;
890+
if (!report_directory.empty()) {
891+
std::string pathname =
892+
(std::filesystem::path(report_directory) / filename).string();
894893
outfile.open(pathname, std::ios::out | std::ios::binary);
895894
} else {
896895
outfile.open(filename, std::ios::out | std::ios::binary);

src/path.cc

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
namespace node {
88

99
#ifdef _WIN32
10-
bool IsPathSeparator(const char c) noexcept {
11-
return c == kPathSeparator || c == '/';
10+
constexpr bool IsPathSeparator(char c) noexcept {
11+
return c == '\\' || c == '/';
1212
}
1313
#else // POSIX
14-
bool IsPathSeparator(const char c) noexcept {
15-
return c == kPathSeparator;
14+
constexpr bool IsPathSeparator(char c) noexcept {
15+
return c == '/';
1616
}
1717
#endif // _WIN32
1818

src/path.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010

1111
namespace node {
1212

13-
bool IsPathSeparator(const char c) noexcept;
13+
class Environment;
1414

15+
constexpr bool IsPathSeparator(char c) noexcept;
1516
std::string NormalizeString(const std::string_view path,
1617
bool allowAboveRoot,
1718
const std::string_view separator);

src/permission/fs_permission.cc

+5-13
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,12 @@
1717
namespace {
1818

1919
std::string WildcardIfDir(const std::string& res) noexcept {
20-
uv_fs_t req;
21-
int rc = uv_fs_stat(nullptr, &req, res.c_str(), nullptr);
22-
if (rc == 0) {
23-
const uv_stat_t* const s = static_cast<const uv_stat_t*>(req.ptr);
24-
if ((s->st_mode & S_IFMT) == S_IFDIR) {
25-
// add wildcard when directory
26-
if (res.back() == node::kPathSeparator) {
27-
return res + "*";
28-
}
29-
return res + node::kPathSeparator + "*";
30-
}
20+
auto path = std::filesystem::path(res);
21+
auto file_status = std::filesystem::status(path);
22+
if (file_status.type() == std::filesystem::file_type::directory) {
23+
path /= "*";
3124
}
32-
uv_fs_req_cleanup(&req);
33-
return res;
25+
return path.string();
3426
}
3527

3628
void FreeRecursivelyNode(

src/permission/fs_permission.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
#include "v8.h"
77

8+
#include <filesystem>
89
#include <unordered_map>
910
#include "permission/permission_base.h"
1011
#include "util.h"
@@ -106,7 +107,7 @@ class FSPermission final : public PermissionBase {
106107
// path = /home/subdirectory
107108
// child = subdirectory/*
108109
if (idx >= path.length() &&
109-
child->prefix[i] == node::kPathSeparator) {
110+
child->prefix[i] == std::filesystem::path::preferred_separator) {
110111
continue;
111112
}
112113

src/util.h

-3
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,10 @@
5656

5757
namespace node {
5858

59-
// Maybe remove kPathSeparator when cpp17 is ready
6059
#ifdef _WIN32
61-
constexpr char kPathSeparator = '\\';
6260
/* MAX_PATH is in characters, not bytes. Make sure we have enough headroom. */
6361
#define PATH_MAX_BYTES (MAX_PATH * 4)
6462
#else
65-
constexpr char kPathSeparator = '/';
6663
#define PATH_MAX_BYTES (PATH_MAX)
6764
#endif
6865

0 commit comments

Comments
 (0)