forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathnode_config_file.h
More file actions
45 lines (32 loc) · 1.22 KB
/
Copy pathnode_config_file.h
File metadata and controls
45 lines (32 loc) · 1.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
#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 <variant>
#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(
const std::vector<std::string>& args);
std::string AssignNodeOptions();
size_t GetFlagsSize();
private:
ParseResult ParseNodeOptions(simdjson::ondemand::object* node_options_object);
std::vector<std::string> node_options_;
};
} // namespace node
#endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
#endif // SRC_NODE_CONFIG_FILE_H_