Bug 1685225 - Use state bits to determine the color for non-native theme meter chunks...
[gecko.git] / gfx / graphite2 / src / json.cpp
blob25f2190f71afa42bd0a2539f1f725e7be950c77b
1 /* GRAPHITE2 LICENSING
3 Copyright 2011, SIL International
4 All rights reserved.
6 This library is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as published
8 by the Free Software Foundation; either version 2.1 of License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should also have received a copy of the GNU Lesser General Public
17 License along with this library in the file named "LICENSE".
18 If not, write to the Free Software Foundation, 51 Franklin Street,
19 Suite 500, Boston, MA 02110-1335, USA or visit their web page on the
20 internet at http://www.fsf.org/licenses/lgpl.html.
22 Alternatively, the contents of this file may be used under the terms of the
23 Mozilla Public License (http://mozilla.org/MPL) or the GNU General Public
24 License, as published by the Free Software Foundation, either version 2
25 of the License or (at your option) any later version.
27 // JSON debug logging
28 // Author: Tim Eves
30 #if !defined GRAPHITE2_NTRACING
32 #include <cstdio>
33 #include <limits>
34 #include "inc/json.h"
36 #if defined(_MSC_VER)
37 #define FORMAT_INTMAX "%lli"
38 #define FORMAT_UINTMAX "%llu"
39 #else
40 #define FORMAT_INTMAX "%ji"
41 #define FORMAT_UINTMAX "%ju"
42 #endif
44 using namespace graphite2;
46 namespace
48 enum
50 seq = ',',
51 obj='}', member=':', empty_obj='{',
52 arr=']', empty_arr='['
56 const std::nullptr_t json::null = nullptr;
58 inline
59 void json::context(const char current) throw()
61 fprintf(_stream, "%c", *_context);
62 indent();
63 *_context = current;
67 void json::indent(const int d) throw()
69 if (*_context == member || (_flatten && _flatten < _context))
70 fputc(' ', _stream);
71 else
72 fprintf(_stream, "\n%*s", 4*int(_context - _contexts + d), "");
76 inline
77 void json::push_context(const char prefix, const char suffix) throw()
79 assert(_context - _contexts < ptrdiff_t(sizeof _contexts));
81 if (_context == _contexts)
82 *_context = suffix;
83 else
84 context(suffix);
85 *++_context = prefix;
89 void json::pop_context() throw()
91 assert(_context > _contexts);
93 if (*_context == seq) indent(-1);
94 else fputc(*_context, _stream);
96 fputc(*--_context, _stream);
97 if (_context == _contexts) fputc('\n', _stream);
98 fflush(_stream);
100 if (_flatten >= _context) _flatten = 0;
101 *_context = seq;
105 // These four functions cannot be inlined as pointers to these
106 // functions are needed for operator << (_context_t) to work.
107 void json::flat(json & j) throw() { if (!j._flatten) j._flatten = j._context; }
108 void json::close(json & j) throw() { j.pop_context(); }
109 void json::object(json & j) throw() { j.push_context('{', '}'); }
110 void json::array(json & j) throw() { j.push_context('[', ']'); }
111 void json::item(json & j) throw()
113 while (j._context > j._contexts+1 && j._context[-1] != arr)
114 j.pop_context();
118 json & json::operator << (json::string s) throw()
120 const char ctxt = _context[-1] == obj ? *_context == member ? seq : member : seq;
121 context(ctxt);
122 fprintf(_stream, "\"%s\"", s);
123 if (ctxt == member) fputc(' ', _stream);
125 return *this;
128 json & json::operator << (json::number f) throw()
130 context(seq);
131 if (std::numeric_limits<json::number>::infinity() == f)
132 fputs("Infinity", _stream);
133 else if (-std::numeric_limits<json::number>::infinity() == f)
134 fputs("-Infinity", _stream);
135 else if (std::numeric_limits<json::number>::quiet_NaN() == f ||
136 std::numeric_limits<json::number>::signaling_NaN() == f)
137 fputs("NaN", _stream);
138 else
139 fprintf(_stream, "%g", f);
140 return *this;
142 json & json::operator << (json::integer d) throw() { context(seq); fprintf(_stream, FORMAT_INTMAX, intmax_t(d)); return *this; }
143 json & json::operator << (json::integer_u d) throw() { context(seq); fprintf(_stream, FORMAT_UINTMAX, uintmax_t(d)); return *this; }
144 json & json::operator << (json::boolean b) throw() { context(seq); fputs(b ? "true" : "false", _stream); return *this; }
145 json & json::operator << (std::nullptr_t) throw() { context(seq); fputs("null",_stream); return *this; }
147 #endif