mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 16:35:33 +00:00
The name json.hpp conflicts with the JSON for Modern C++ library that is also used by Developer. Renames json.hpp and json.cpp to jsonpp.hpp and jsonpp.cpp aka "JSON Pretty Printer".
86 lines
2.2 KiB
C++
86 lines
2.2 KiB
C++
/*
|
|
Copyright: © 2011,2018 SIL International.
|
|
Description: JSON prettyprinter test harness.
|
|
Create Date: 15 Dec 2011
|
|
Authors: Tim Eves (TSE)
|
|
History: 28 Sep 2018 - TSE - Imported from graphite2 project.
|
|
- TSE - Refactored to use C++ std::ostream.
|
|
25 Oct 2018 - TSE - Relicensed under the MIT license for
|
|
inclusion in the Keyman project.
|
|
*/
|
|
|
|
// JSON debug logging very basic test harness
|
|
// Author: Tim Eves
|
|
|
|
#include <iostream>
|
|
#include <fstream>
|
|
#include <jsonpp.hpp>
|
|
|
|
#ifdef __EMSCRIPTEN__
|
|
#include <emscripten.h>
|
|
#endif
|
|
|
|
int main(int argc, char * argv[])
|
|
{
|
|
std::ofstream log;
|
|
|
|
if (argc > 1) {
|
|
#ifdef __EMSCRIPTEN__
|
|
// For WASM we need to mount a virtual folder because we can't
|
|
// write to /; this assumes the input argv[1] is a relative
|
|
// path, which is okay for our unit tests.
|
|
EM_ASM(
|
|
FS.mkdir('/working');
|
|
FS.mount(NODEFS, { root: '.' }, '/working');
|
|
);
|
|
|
|
std::string path("working/");
|
|
path.append(argv[1]);
|
|
log.open(path);
|
|
#else
|
|
log.open(argv[1]);
|
|
#endif
|
|
}
|
|
|
|
json jo(argc == 1 ? std::cout : log);
|
|
|
|
|
|
jo << json::array
|
|
<< "a string"
|
|
<< 0.54
|
|
<< 123
|
|
<< false
|
|
<< json::null
|
|
<< json::close;
|
|
|
|
jo << json::object << "empty object" << json::object << json::close;
|
|
|
|
jo << "primitive types" << json::object
|
|
<< "string" << "a string"
|
|
<< "number" << 0.54
|
|
<< "integer" << 123
|
|
<< "boolean" << false
|
|
<< "null" << json::null
|
|
<< json::close;
|
|
|
|
jo << "complex object" << json::object
|
|
<< "firstName" << "John"
|
|
<< "lastName" << "Smith"
|
|
<< "age" << 25
|
|
<< "address" << json::flat << json::object
|
|
<< "streetAddress" << "21 2nd Street"
|
|
<< "city" << "New York"
|
|
<< "state" << "NY"
|
|
<< "postalCode" << "10021"
|
|
<< json::close
|
|
<< "phoneNmuber" << json::array
|
|
<< json::flat << json::object
|
|
<< "type" << "home"
|
|
<< "number" << "212 555-1234"
|
|
<< json::close
|
|
<< json::object
|
|
<< "type" << "fax"
|
|
<< "number" << "646 555-4567";
|
|
|
|
return 0;
|
|
}
|