added example for sorting keys

This commit is contained in:
seky 2018-12-04 22:40:40 +01:00
parent 30d92a6399
commit c9060b4a5c
2 changed files with 71 additions and 0 deletions

View File

@ -21,6 +21,7 @@ set(EXAMPLES
simplereader
simplepullreader
simplewriter
sortkeys
tutorial)
include_directories("../include/")

View File

@ -0,0 +1,70 @@
#define RAPIDJSON_HAS_STDSTRING 1
#include "rapidjson/document.h"
#include <rapidjson/prettywriter.h>
#include <rapidjson/stringbuffer.h>
#include <algorithm>
#include <iostream>
using namespace rapidjson;
using namespace std;
void printIt(Document &doc)
{
string output;
StringBuffer buffer;
PrettyWriter<StringBuffer> writer(buffer);
doc.Accept(writer);
output = buffer.GetString();
cout << output << endl;
}
struct ValueNameComparator
{
bool
operator()(const GenericMember<UTF8<>, MemoryPoolAllocator<>> &lhs,
const GenericMember<UTF8<>, MemoryPoolAllocator<>> &rhs) const
{
string lhss = string(lhs.name.GetString());
string rhss = string(rhs.name.GetString());
return lhss < rhss;
}
};
int main()
{
Document d = Document(kObjectType);
Document::AllocatorType &allocator = d.GetAllocator();
d.AddMember("zeta", Value().SetBool(false), allocator);
d.AddMember("gama", Value().SetString("test string", allocator), allocator);
d.AddMember("delta", Value().SetInt(123), allocator);
Value a(kArrayType);
d.AddMember("alpha", a, allocator);
printIt(d);
/**
{
"zeta": false,
"gama": "test string",
"delta": 123,
"alpha": []
}
**/
std::sort(d.MemberBegin(), d.MemberEnd(), ValueNameComparator());
printIt(d);
/**
{
"alpha": [],
"delta": 123,
"gama": "test string",
"zeta": false
}
**/
return 0;
}