-
-
Notifications
You must be signed in to change notification settings - Fork 35.4k
Expand file tree
/
Copy pathnode_config_file.h
More file actions
67 lines (52 loc) · 2.08 KB
/
node_config_file.h
File metadata and controls
67 lines (52 loc) · 2.08 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
#ifndef SRC_NODE_CONFIG_FILE_H_
#define SRC_NODE_CONFIG_FILE_H_
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
#include <map>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <variant>
#include <vector>
#include "node_internals.h"
#include "simdjson.h"
#include "util-inl.h"
namespace node {
// When trying to parse the configuration file, we can have three possible
// results:
// - Valid: The file was successfully parsed and the content is valid.
// - FileError: There was an error reading the file.
// - InvalidContent: The file was read, but the content is invalid.
enum ParseResult { Valid, FileError, InvalidContent };
// ConfigReader is the class that parses the configuration JSON file.
// It reads the file provided by --experimental-config-file and
// extracts the flags.
class ConfigReader {
public:
ParseResult ParseConfig(const std::string_view& config_path);
std::optional<std::string_view> GetDataFromArgs(
std::vector<std::string>* args);
std::string GetNodeOptions();
const std::vector<std::string>& GetNamespaceFlags() const;
size_t GetFlagsSize();
private:
// Parse options for a specific namespace (including nodeOptions for backward
// compatibility)
ParseResult ParseOptions(simdjson::ondemand::object* options_object,
std::unordered_set<std::string>* unique_options,
const std::string& namespace_name);
// Process a single option value based on its type
ParseResult ProcessOptionValue(
const std::pair<std::string, options_parser::OptionMappingDetails>&
option_details,
simdjson::ondemand::value* option_value,
std::vector<std::string>* output);
std::vector<std::string> node_options_;
std::vector<std::string> namespace_options_;
// Cache for fast lookup of environment options
std::unordered_map<std::string, options_parser::OptionMappingDetails>
env_options_map_;
bool env_options_initialized_ = false;
};
} // namespace node
#endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
#endif // SRC_NODE_CONFIG_FILE_H_