2 Copyright (C) 2017-2021 Free Software Foundation, Inc.
3 Contributed by David Malcolm <dmalcolm@redhat.com>.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
24 /* Implementation of JSON, a lightweight data-interchange format.
26 See http://www.json.org/
27 and http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf
28 and https://tools.ietf.org/html/rfc7159
30 Supports creating a DOM-like tree of json::value *, and then dumping
31 json::value * to text. */
36 /* Forward decls of json::value and its subclasses (using indentation
37 to denote inheritance. */
47 /* An enum for discriminating the subclasses of json::value. */
51 /* class json::object. */
54 /* class json::array. */
57 /* class json::integer_number. */
60 /* class json::float_number. */
63 /* class json::string. */
66 /* class json::literal uses these three values to identify the
67 particular literal. */
73 /* Base class of JSON value. */
79 virtual enum kind get_kind () const = 0;
80 virtual void print (pretty_printer *pp) const = 0;
82 void dump (FILE *) const;
85 /* Subclass of value for objects: an unordered collection of
88 class object : public value
93 enum kind get_kind () const FINAL OVERRIDE { return JSON_OBJECT; }
94 void print (pretty_printer *pp) const FINAL OVERRIDE;
96 void set (const char *key, value *v);
97 value *get (const char *key) const;
100 typedef hash_map <char *, value *,
101 simple_hashmap_traits<nofree_string_hash, value *> > map_t;
105 /* Subclass of value for arrays. */
107 class array : public value
112 enum kind get_kind () const FINAL OVERRIDE { return JSON_ARRAY; }
113 void print (pretty_printer *pp) const FINAL OVERRIDE;
115 void append (value *v);
118 auto_vec<value *> m_elements;
121 /* Subclass of value for floating-point numbers. */
123 class float_number : public value
126 float_number (double value) : m_value (value) {}
128 enum kind get_kind () const FINAL OVERRIDE { return JSON_FLOAT; }
129 void print (pretty_printer *pp) const FINAL OVERRIDE;
131 double get () const { return m_value; }
137 /* Subclass of value for integer-valued numbers. */
139 class integer_number : public value
142 integer_number (long value) : m_value (value) {}
144 enum kind get_kind () const FINAL OVERRIDE { return JSON_INTEGER; }
145 void print (pretty_printer *pp) const FINAL OVERRIDE;
147 long get () const { return m_value; }
154 /* Subclass of value for strings. */
156 class string : public value
159 string (const char *utf8);
160 ~string () { free (m_utf8); }
162 enum kind get_kind () const FINAL OVERRIDE { return JSON_STRING; }
163 void print (pretty_printer *pp) const FINAL OVERRIDE;
165 const char *get_string () const { return m_utf8; }
171 /* Subclass of value for the three JSON literals "true", "false",
174 class literal : public value
177 literal (enum kind kind) : m_kind (kind) {}
179 /* Construct literal for a boolean value. */
180 literal (bool value): m_kind (value ? JSON_TRUE : JSON_FALSE) {}
182 enum kind get_kind () const FINAL OVERRIDE { return m_kind; }
183 void print (pretty_printer *pp) const FINAL OVERRIDE;
191 #endif /* GCC_JSON_H */