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
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2014 The CodeLite Team
// file name : json_node.h
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#ifndef ZJSONNODE_H
#define ZJSONNODE_H
#include <wx/string.h>
#include <wx/variant.h>
#include <wx/filename.h>
#include <wx/arrstr.h>
#include <wx/gdicmn.h>
#include "codelite_exports.h"
#include <map>
#include "cJSON.h"
#include <wx/colour.h>
//////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////
class WXDLLIMPEXP_CL JSONElement
{
protected:
cJSON * _json;
int _type;
wxString _name;
// Values
wxVariant _value;
public:
typedef std::map<wxString, wxString> wxStringMap_t;
public:
JSONElement(cJSON *json);
JSONElement(const wxString &name, const wxVariant& val, int type);
virtual ~JSONElement() {}
// Setters
////////////////////////////////////////////////
void setName(const wxString& _name) {
this->_name = _name;
}
void setType(int _type) {
this->_type = _type;
}
int getType() const {
return _type;
}
const wxString& getName() const {
return _name;
}
const wxVariant& getValue() const {
return _value;
}
void setValue(const wxVariant& _value) {
this->_value = _value;
}
// Readers
////////////////////////////////////////////////
JSONElement namedObject(const wxString& name) const ;
bool hasNamedObject(const wxString &name) const;
bool toBool(bool defaultValue = false) const ;
wxString toString(const wxString &defaultValue = wxEmptyString) const ;
wxArrayString toArrayString() const ;
JSONElement arrayItem(int pos) const ;
bool isNull() const ;
bool isBool() const ;
bool isString() const ;
wxString format() const ;
int arraySize() const ;
int toInt(int defaultVal = -1) const ;
size_t toSize_t(size_t defaultVal = 0) const ;
double toDouble(double defaultVal = -1.0) const;
wxSize toSize() const;
wxPoint toPoint() const;
wxColour toColour(const wxColour& defaultColour = wxNullColour) const;
JSONElement::wxStringMap_t toStringMap() const;
// Writers
////////////////////////////////////////////////
/**
* @brief create new named object and append it to this json element
* @return the newly created object
*/
static JSONElement createObject(const wxString &name = wxT(""));
/**
* @brief create new named array and append it to this json element
* @return the newly created array
*/
static JSONElement createArray(const wxString &name = wxT(""));
/**
* @brief append new element to this json element
*/
void append(const JSONElement& element);
JSONElement& addProperty(const wxString &name, const wxString &value);
JSONElement& addProperty(const wxString& name, const wxChar* value);
JSONElement& addProperty(const wxString &name, int value);
JSONElement& addProperty(const wxString &name, size_t value);
JSONElement& addProperty(const wxString &name, bool value);
JSONElement& addProperty(const wxString &name, const wxSize& sz);
JSONElement& addProperty(const wxString &name, const wxPoint& pt);
JSONElement& addProperty(const wxString &name, const wxColour& colour);
JSONElement& addProperty(const wxString &name, const wxArrayString &arr);
JSONElement& addProperty(const wxString &name, const JSONElement::wxStringMap_t& stringMap);
JSONElement& addProperty(const wxString &name, const JSONElement& element);
/**
* @brief delete property by name
*/
void removeProperty(const wxString &name);
//////////////////////////////////////////////////
// Array operations
//////////////////////////////////////////////////
/**
* @brief append new number
* @return the newly added property
*/
void arrayAppend(const JSONElement& element);
void arrayAppend(const wxString &value);
bool isOk() const {
return _json != NULL;
}
};
//////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////
class WXDLLIMPEXP_CL JSONRoot
{
cJSON *_json;
wxString _errorString;
public:
JSONRoot(int type);
JSONRoot(const wxString& text);
JSONRoot(const wxFileName& filename);
virtual ~JSONRoot();
void save(const wxFileName &fn) const;
wxString errorString() const;
bool isOk() const {
return _json != NULL;
}
JSONElement toElement() const;
void clear();
private:
// Make this class not copyable
JSONRoot(const JSONRoot& src);
JSONRoot& operator=(const JSONRoot& src);
};
#endif // ZJSONNODE_H
|