P4C
The P4 Compiler
Loading...
Searching...
No Matches
json_parser.h
1#ifndef IR_JSON_PARSER_H_
2#define IR_JSON_PARSER_H_
3
4#include <iosfwd>
5#include <string>
6#include <vector>
7
8#include "lib/big_int_util.h"
9#include "lib/castable.h"
10#include "lib/cstring.h"
11#include "lib/ordered_map.h"
12
13class JsonData : public ICastable {
14 public:
15 JsonData() {}
16 JsonData(const JsonData &) = default;
17 JsonData(JsonData &&) = default;
18 JsonData &operator=(const JsonData &) & = default;
19 JsonData &operator=(JsonData &&) & = default;
20 virtual ~JsonData() {}
21
22 DECLARE_TYPEINFO(JsonData);
23};
24
25class JsonNumber : public JsonData {
26 public:
27 JsonNumber(big_int v) : val(v) {} // NOLINT(runtime/explicit)
28 operator int() const { return int(val); } // Does not handle overflow
29 big_int val;
30
31 DECLARE_TYPEINFO(JsonNumber, JsonData);
32};
33
34class JsonBoolean : public JsonData {
35 public:
36 JsonBoolean(bool v) : val(v) {} // NOLINT(runtime/explicit)
37 operator bool() const { return val; }
38 bool val;
39
40 DECLARE_TYPEINFO(JsonBoolean, JsonData);
41};
42
43class JsonString : public JsonData, public std::string {
44 public:
45 JsonString() {}
46 JsonString(const std::string &s) : std::string(s) {} // NOLINT(runtime/explicit)
47 JsonString(const char *s) : std::string(s) {} // NOLINT(runtime/explicit)
48 JsonString(const JsonString &) = default;
49 JsonString(JsonString &&) = default;
50 JsonString &operator=(const JsonString &) & = default;
51 JsonString &operator=(JsonString &&) & = default;
52 operator cstring() { return cstring(this->c_str()); }
53
54 DECLARE_TYPEINFO(JsonString, JsonData);
55};
56
57class JsonVector : public JsonData, public std::vector<JsonData *> {
58 public:
59 JsonVector() {}
60 JsonVector(const std::vector<JsonData *> &v) // NOLINT(runtime/explicit)
61 : std::vector<JsonData *>(v) {}
62 JsonVector &operator=(const JsonVector &) & = default;
63 JsonVector &operator=(JsonVector &&) & = default;
64
65 DECLARE_TYPEINFO(JsonVector, JsonData);
66};
67
68class JsonObject : public JsonData, public ordered_map<std::string, JsonData *> {
69 bool _hasSrcInfo = true;
70
71 public:
72 JsonObject() {}
73 JsonObject(const JsonObject &obj) = default;
74 JsonObject &operator=(JsonObject &&) & = default;
75 JsonObject(const ordered_map<std::string, JsonData *> &v) // NOLINT(runtime/explicit)
77 int get_id() const;
78 std::string get_type() const;
79 std::string get_filename() const;
80 std::string get_sourceFragment() const;
81 int get_line() const;
82 int get_column() const;
83 JsonObject get_sourceJson() const;
84 bool hasSrcInfo() { return _hasSrcInfo; }
85 void setSrcInfo(bool value) { _hasSrcInfo = value; }
86
87 DECLARE_TYPEINFO(JsonObject, JsonData);
88};
89
90class JsonNull : public JsonData {
91 DECLARE_TYPEINFO(JsonNull, JsonData);
92};
93
94std::string getIndent(int l);
95
96std::ostream &operator<<(std::ostream &out, JsonData *json);
97std::istream &operator>>(std::istream &in, JsonData *&json);
98
99#endif /* IR_JSON_PARSER_H_ */
Definition castable.h:34
Definition json_parser.h:34
Definition json_parser.h:13
Definition json_parser.h:90
Definition json_parser.h:25
Definition json_parser.h:68
Definition json_parser.h:43
Definition json_parser.h:57
Definition cstring.h:80
Definition ordered_map.h:30