forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnode_modules.h
More file actions
102 lines (85 loc) Β· 3.22 KB
/
node_modules.h
File metadata and controls
102 lines (85 loc) Β· 3.22 KB
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
#ifndef SRC_NODE_MODULES_H_
#define SRC_NODE_MODULES_H_
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
#include "node.h"
#include "node_snapshotable.h"
#include "simdjson.h"
#include "util.h"
#include "v8-fast-api-calls.h"
#include "v8.h"
#include <filesystem>
#include <optional>
#include <string>
#include <string_view>
#include <unordered_map>
namespace node {
class ExternalReferenceRegistry;
namespace modules {
class BindingData : public SnapshotableObject {
public:
using InternalFieldInfo = InternalFieldInfoBase;
struct PackageConfig {
std::string file_path;
std::optional<std::string> name;
std::optional<std::string> main;
std::string type = "none";
std::optional<std::string> exports;
std::optional<std::string> imports;
std::optional<std::string> scripts;
std::string raw_json;
v8::Local<v8::Array> Serialize(Realm* realm) const;
};
struct ErrorContext {
std::optional<std::string> base;
std::string specifier;
bool is_esm;
};
BindingData(Realm* realm,
v8::Local<v8::Object> obj,
InternalFieldInfo* info = nullptr);
SERIALIZABLE_OBJECT_METHODS()
SET_BINDING_ID(modules_binding_data)
void MemoryInfo(MemoryTracker* tracker) const override;
SET_SELF_SIZE(BindingData)
SET_MEMORY_INFO_NAME(BindingData)
static void ReadPackageJSON(const v8::FunctionCallbackInfo<v8::Value>& args);
static void GetNearestParentPackageJSON(
const v8::FunctionCallbackInfo<v8::Value>& args);
static void GetNearestParentPackageJSONType(
const v8::FunctionCallbackInfo<v8::Value>& args);
template <bool return_only_type>
static void GetPackageScopeConfig(
const v8::FunctionCallbackInfo<v8::Value>& args);
static void GetPackageJSONScripts(
const v8::FunctionCallbackInfo<v8::Value>& args);
static void CreatePerIsolateProperties(IsolateData* isolate_data,
v8::Local<v8::ObjectTemplate> ctor);
static void CreatePerContextProperties(v8::Local<v8::Object> target,
v8::Local<v8::Value> unused,
v8::Local<v8::Context> context,
void* priv);
static void RegisterExternalReferences(ExternalReferenceRegistry* registry);
private:
/*
* This map caches `PackageConfig` values by `package.json` path.
* An empty optional value indicates that no `package.json` file
* at the given path exists, which we cache to avoid repeated
* attempts to open the same non-existent paths.
*/
std::unordered_map<std::string, std::optional<PackageConfig> >
package_configs_;
simdjson::ondemand::parser json_parser;
static const std::filesystem::path NormalizePath(Realm* realm,
BufferValue* path_value);
// returns null on error
static const PackageConfig* GetPackageJSON(
Realm* realm,
std::string_view path,
ErrorContext* error_context = nullptr);
static const PackageConfig* TraverseParent(
Realm* realm, const std::filesystem::path& check_path);
};
} // namespace modules
} // namespace node
#endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
#endif // SRC_NODE_MODULES_H_