11#if !defined(_WX_JSONVAL_H)
25#include <wx/hashmap.h>
26#include <wx/dynarray.h>
36#if defined(wxJSON_USE_STL)
40WX_DECLARE_OBJARRAY(
wxJSONValue, wxJSONInternalArray);
41WX_DECLARE_STRING_HASH_MAP(
wxJSONValue, wxJSONInternalMap);
43class WXDLLIMPEXP_JSON wxJSONInternalMap;
44class WXDLLIMPEXP_JSON wxJSONInternalArray;
49 wxJSONTYPE_INVALID = 0,
71 wxJSONVALUE_COMMENT_DEFAULT = 0,
72 wxJSONVALUE_COMMENT_BEFORE,
73 wxJSONVALUE_COMMENT_AFTER,
74 wxJSONVALUE_COMMENT_INLINE,
97#if defined(wxJSON_64BIT_INT)
111 wxJSONType GetType()
const;
112 bool IsValid()
const;
116 bool IsShort()
const;
117 bool IsUShort()
const;
119 bool IsULong()
const;
120#if defined(wxJSON_64BIT_INT)
121 bool IsInt32()
const;
122 bool IsInt64()
const;
123 bool IsUInt32()
const;
124 bool IsUInt64()
const;
127 bool IsDouble()
const;
128 bool IsString()
const;
129 bool IsCString()
const;
130 bool IsArray()
const;
131 bool IsObject()
const;
132 bool IsMemoryBuff()
const;
136 unsigned int AsUInt()
const;
137 short AsShort()
const;
138 unsigned short AsUShort()
const;
139 long int AsLong()
const;
140 unsigned long AsULong()
const;
141 bool AsInt(
int& i)
const;
142 bool AsUInt(
unsigned int& ui)
const;
143 bool AsShort(
short int& s)
const;
144 bool AsUShort(
unsigned short& us)
const;
145 bool AsLong(
long int& l)
const;
146 bool AsULong(
unsigned long& ul)
const;
147#if defined(wxJSON_64BIT_INT)
148 wxInt32 AsInt32()
const;
149 wxUint32 AsUInt32()
const;
150 wxInt64 AsInt64()
const;
151 wxUint64 AsUInt64()
const;
152 bool AsInt32(wxInt32& i32)
const;
153 bool AsUInt32(wxUint32& ui32)
const;
154 bool AsInt64(wxInt64& i64)
const;
155 bool AsUInt64(wxUint64& ui64)
const;
158 double AsDouble()
const;
159 wxString AsString()
const;
160 const wxChar* AsCString()
const;
161 bool AsBool(
bool& b)
const;
162 bool AsDouble(
double& d)
const;
163 bool AsString(wxString& str)
const;
164 bool AsCString(wxChar* ch)
const;
165 wxMemoryBuffer AsMemoryBuff()
const;
166 bool AsMemoryBuff(wxMemoryBuffer& buff)
const;
168 const wxJSONInternalMap* AsMap()
const;
169 const wxJSONInternalArray* AsArray()
const;
172 bool HasMember(
unsigned index)
const;
173 bool HasMember(
const wxString& key)
const;
175 wxArrayString GetMemberNames()
const;
186#if defined(wxJSON_64BIT_INT)
195 bool Remove(
int index);
196 bool Remove(
const wxString& key);
198 bool Cat(
const wxChar* str);
199 bool Cat(
const wxString& str);
200 bool Cat(
const wxMemoryBuffer& buff);
217#if defined(wxJSON_64BIT_INT)
225 wxJSONValue& operator=(
const wxMemoryBuffer& buff);
237 int AddComment(
const wxString& str,
238 int position = wxJSONVALUE_COMMENT_DEFAULT);
239 int AddComment(
const wxArrayString& comments,
240 int position = wxJSONVALUE_COMMENT_DEFAULT);
241 wxString GetComment(
int idx = -1)
const;
242 int GetCommentPos()
const;
243 int GetCommentCount()
const;
244 void ClearComments();
245 const wxArrayString& GetCommentArray()
const;
248 wxString GetInfo()
const;
249 wxString Dump(
bool deep =
false,
int mode = 0)
const;
254 int GetLineNo()
const;
255 void SetLineNo(
int num);
258 static wxString TypeToString(wxJSONType type);
259 static wxString MemoryBuffToString(
const wxMemoryBuffer& buff,
261 static wxString MemoryBuffToString(
const void* buff,
size_t len,
262 size_t actualLen = -1);
263 static int CompareMemoryBuff(
const wxMemoryBuffer& buff1,
264 const wxMemoryBuffer& buff2);
265 static int CompareMemoryBuff(
const wxMemoryBuffer& buff1,
const void* buff2);
266 static wxMemoryBuffer ArrayToMemoryBuff(
const wxJSONValue& value);
284 void AllocExclusive();
290#if defined(WXJSON_USE_VALUE_COUNTER)
296#if !defined(wxJSON_USE_STL)
299WX_DECLARE_OBJARRAY(
wxJSONValue, wxJSONInternalArray);
300WX_DECLARE_STRING_HASH_MAP(
wxJSONValue, wxJSONInternalMap);
322 unsigned int m_valUInt;
323 short int m_valShort;
324 unsigned short m_valUShort;
326 unsigned long m_valULong;
328 const wxChar* m_valCString;
330#if defined(wxJSON_64BIT_INT)
332 wxUint64 m_valUInt64;
341#if defined(wxJSON_64BIT_INT)
342#define VAL_INT m_valInt64
343#define VAL_UINT m_valUInt64
345#define VAL_INT m_valLong
346#define VAL_UINT m_valULong
359 int GetRefCount()
const;
418#if defined(WXJSON_USE_VALUE_COUNTER)
The reference counted JSON value data (internal use).
wxMemoryBuffer * m_memBuff
The pointer to the memory buffer object.
wxJSONInternalMap m_valMap
The JSON object value.
int m_commentPos
The position of the comment line(s), if any.
int m_refCount
the references count
wxJSONInternalArray m_valArray
The JSON array value.
wxJSONType m_type
The actual type of the value held by this object.
int m_lineNo
The line number when this value was read.
wxString m_valString
The JSON string value.
wxJSONValueHolder m_value
The JSON value held by this object.
wxArrayString m_comments
The array of comment lines; may be empty.
The JSON value class implementation.
wxJSONRefData * m_refData
the referenced data
The JSON document writer.
The actual value held by the wxJSONValue class (internal use)