root/src/JsonDrooler.cpp

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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
////////////////////////////////////////////////////////////////////////
// Copyright (c) Nehmulos 2011-2014
// This file is part of N0 Strain Serialization Library.
//
// N0Strain-Serialization-Library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// N0Strain-Serialization-Library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with N0Strain-Serialization-Library.  If not, see https://gnu.org/licenses/lgpl-3.0
////////////////////////////////////////////////////////////////////////




#include "JsonDrooler.h"

namespace nw {


JsonDrooler::JsonDrooler(const String filename) : level(0)
{
        isFirstElement = true;
        level = 0;
        file.open(filename.c_str(), std::fstream::out);
        push("");
}

JsonDrooler::~JsonDrooler()
{
        this->close();
}

void JsonDrooler::describeName(const String name)
{
        writeComma();
        file << tabsForLevel() << '"' << name << '"' << ": ";
}

void JsonDrooler::describeValue( float & ref)
{
        writeValueArrayComma();
        file << ref;
}




bool JsonDrooler::isInWriteMode()
{
        return true;
}



void JsonDrooler::describeValue( unsigned char & ref)
{
        writeValueArrayComma();
        file << (int)ref;
}



void JsonDrooler::describeValue( unsigned int & ref)
{
        writeValueArrayComma();
        file << ref;
}

void JsonDrooler::pop()
{
        --level;
        file << SYSTEM_NEW_LINE << tabsForLevel() << "}";
}

void JsonDrooler::describeValue( char & ref)
{
        writeValueArrayComma();
        file << (int)ref;
}

void JsonDrooler::describeSimpleArray(const String arrayName, unsigned int size)
{
        file << tabsForLevel() << '"' << arrayName << "\": [" << SYSTEM_NEW_LINE;

        JsonWriterArray newArray;
        newArray.size = size;
        newArray.wroteFirstElement = false;
        newArray.nameOfArray = arrayName;
        openArrays.push(newArray);
}

template<class T> void JsonDrooler::pushValueToSimpleArray(T& value)
{
}

void JsonDrooler::describeValueArray(const String arrayName, unsigned int size)
{
        describeArray(arrayName, "", size);
        openArrays.top().isValueArray = true;
}

void JsonDrooler::describeArray(const String arrayName, const String elementsName, unsigned int size)
{
        JsonWriterArray newArray;
        newArray.size = size;
        newArray.nameOfArray = arrayName;
        newArray.isValueArray = false;
        openArrays.push(newArray);

        writeComma();
        file << tabsForLevel() << '"' << arrayName << "\": " << SYSTEM_NEW_LINE << tabsForLevel() << '[' << SYSTEM_NEW_LINE;

        ++level;
        isFirstElement = true;
}


bool JsonDrooler::enterNextElement(unsigned int iterator)
{
        if(!openArrays.empty())
        {
                if(openArrays.top().isValueArray)
                {
                        if(iterator < openArrays.top().size)
                                return true;
                        --level;
                        file << SYSTEM_NEW_LINE << tabsForLevel() <<  "]";
                        openArrays.pop();
                        return false;
                }

                if(iterator != 0 && iterator != openArrays.top().size)
                {
                        pop();
                }

                if(iterator < openArrays.top().size)
                {
                        push("");
                        return true;
                }
                else
                {
                        if(iterator != 0)
                        {
                                pop();
                        }
                        --level;
                        isFirstElement = false;
                        file << SYSTEM_NEW_LINE << tabsForLevel() << ']';
                        openArrays.pop();
                        return false;
                }

        }
        return false; // TODO check
}



void JsonDrooler::describeValue( double & ref)
{
        writeValueArrayComma();
        file << ref;
}



void JsonDrooler::describeValue( int & ref)
{
        writeValueArrayComma();
        file << ref;
}



void JsonDrooler::describeValue( bool & ref)
{
        writeValueArrayComma();
        if(ref == true)
                file << "true";
        else
                file << "false";
}



void JsonDrooler::describeValue( Pointer ref)
{
        writeValueArrayComma();
        unsigned int id = Describer::getIDForSerializedObject(ref);
        file << id;
}



void JsonDrooler::describeValue( String &ref)
{
        writeValueArrayComma();
        file << '"' << ref << '"';
}

void JsonDrooler::describeBlob(const String childName, nw::Pointer blob, unsigned int blobSize)
{
        this->push(childName);
//        const char* tmp = (const char*)blob;
        // FIXME check dat code I'm not using tmp why? wtf is going on here
          String value;

          if(Describer::encodingUsed == N0Slib_BinaryToTextEncoding_Base64)
                  value = utils::toBase64((const char*)blob, blobSize);
          else if(Describer::encodingUsed == N0Slib_BinaryToTextEncoding_Hexadecimal)
                  value = utils::toHex((const char*)blob, blobSize);
          else
                  std::cout << "unknown encoding" << std::endl;

          String encoding = N0Slib_BinaryToTextEncoding_Default;
          this->describe("encoding", encoding);
          this->describe("value", value );
        this->pop();
}

void JsonDrooler::describeValue( signed char& ref)
{
        writeValueArrayComma();
        file << (int)ref;
}
void JsonDrooler::describeValue( short& ref)
{
        writeValueArrayComma();
        file << ref;
}
void JsonDrooler::describeValue( unsigned short& ref)
{
        writeValueArrayComma();
        file << ref;
}
void JsonDrooler::describeValue( long& ref)
{
        writeValueArrayComma();
        file << ref;
}
void JsonDrooler::describeValue( unsigned long& ref)
{
        writeValueArrayComma();
        file << ref;
}
void JsonDrooler::describeValue( long long& ref)
{
        writeValueArrayComma();
        file << ref;
}
void JsonDrooler::describeValue( long double& ref)
{
        writeValueArrayComma();
        file << ref;
}

void JsonDrooler::comment(const String text)
{
        //Json doesn't support comments, may use Javascript comments
//      //write one line C++ Comment
//      if(text.find('\n') == String::npos) //npos == No position (not found)
//      {
//              file << SYSTEM_NEW_LINE << tabsForLevel() << "//" << text << SYSTEM_NEW_LINE;
//      }
//      //write C comment
//      else
//      {
//              file << SYSTEM_NEW_LINE << tabsForLevel() << "/*" << SYSTEM_NEW_LINE << text << SYSTEM_NEW_LINE << "*/" << SYSTEM_NEW_LINE;
//      }
}



bool JsonDrooler::push(const String childName)
{
        writeComma();
        //has a name // workaround for objects in arrays
        if(!childName.empty())
        {
                file << tabsForLevel() << '"' << childName << '"' << ": " << SYSTEM_NEW_LINE;
        }
        file << tabsForLevel() << '{' << SYSTEM_NEW_LINE;
        ++level;
        isFirstElement = true;
        return true;
}



void JsonDrooler::close()
{
        if(file.is_open())
        {
                pop();
                file.close();
        }
}


String JsonDrooler::tabsForLevel()
{
        std::stringstream ss;
        for (unsigned int i = 0; i < level; ++i) {
                ss << '\t';
        }
        return ss.str();
}

void JsonDrooler::writeComma()
{
        if(isFirstElement == false)
        {
                file << ',' << SYSTEM_NEW_LINE;
        }
        else
        {
                isFirstElement = false;
        }
}

void JsonDrooler::writeValueArrayComma()
{
        if(!openArrays.empty() && openArrays.top().isValueArray)
        {
                writeComma();
                file << tabsForLevel();
        }
}

}  // namespace nw