├── LICENSE ├── Makefile ├── README.md ├── README_ZH.md ├── bin └── README.txt ├── doc ├── en │ ├── FAQ.md │ ├── design.md │ ├── index.md │ ├── schema.md │ └── schema │ │ ├── default_value.md │ │ ├── field_name.md │ │ ├── field_type.md │ │ ├── member.md │ │ ├── members.md │ │ ├── struct.md │ │ ├── structs.md │ │ ├── type.md │ │ └── types.md └── zh │ ├── FAQ.md │ ├── design.md │ ├── index.md │ ├── schema.md │ └── schema │ ├── default_value.md │ ├── field_name.md │ ├── field_type.md │ ├── member.md │ ├── members.md │ ├── struct.md │ ├── structs.md │ ├── type.md │ └── types.md ├── generator └── slothjson.py ├── include ├── rapidjson │ ├── allocators.h │ ├── document.h │ ├── encodedstream.h │ ├── encodings.h │ ├── error │ │ ├── en.h │ │ └── error.h │ ├── filereadstream.h │ ├── filewritestream.h │ ├── fwd.h │ ├── internal │ │ ├── biginteger.h │ │ ├── diyfp.h │ │ ├── dtoa.h │ │ ├── ieee754.h │ │ ├── itoa.h │ │ ├── meta.h │ │ ├── pow10.h │ │ ├── regex.h │ │ ├── stack.h │ │ ├── strfunc.h │ │ ├── strtod.h │ │ └── swap.h │ ├── istreamwrapper.h │ ├── memorybuffer.h │ ├── memorystream.h │ ├── msinttypes │ │ ├── inttypes.h │ │ └── stdint.h │ ├── ostreamwrapper.h │ ├── pointer.h │ ├── prettywriter.h │ ├── rapidjson.h │ ├── reader.h │ ├── schema.h │ ├── stream.h │ ├── stringbuffer.h │ └── writer.h ├── slothjson.cpp └── slothjson.h ├── makedoc.py ├── res ├── design.png ├── design.vsd ├── json.png ├── logo.png └── slothjson.jpg ├── src ├── main.cpp ├── perf_test.cpp ├── perf_test.h ├── perf_test.json ├── sample_test.cpp ├── sample_test.h └── sample_test.json └── vs2010 ├── slothjson.vcxproj └── slothjson.vcxproj.filters /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/README.md -------------------------------------------------------------------------------- /README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/README_ZH.md -------------------------------------------------------------------------------- /bin/README.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/en/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/doc/en/FAQ.md -------------------------------------------------------------------------------- /doc/en/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/doc/en/design.md -------------------------------------------------------------------------------- /doc/en/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/doc/en/index.md -------------------------------------------------------------------------------- /doc/en/schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/doc/en/schema.md -------------------------------------------------------------------------------- /doc/en/schema/default_value.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/doc/en/schema/default_value.md -------------------------------------------------------------------------------- /doc/en/schema/field_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/doc/en/schema/field_name.md -------------------------------------------------------------------------------- /doc/en/schema/field_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/doc/en/schema/field_type.md -------------------------------------------------------------------------------- /doc/en/schema/member.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/doc/en/schema/member.md -------------------------------------------------------------------------------- /doc/en/schema/members.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/doc/en/schema/members.md -------------------------------------------------------------------------------- /doc/en/schema/struct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/doc/en/schema/struct.md -------------------------------------------------------------------------------- /doc/en/schema/structs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/doc/en/schema/structs.md -------------------------------------------------------------------------------- /doc/en/schema/type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/doc/en/schema/type.md -------------------------------------------------------------------------------- /doc/en/schema/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/doc/en/schema/types.md -------------------------------------------------------------------------------- /doc/zh/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/doc/zh/FAQ.md -------------------------------------------------------------------------------- /doc/zh/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/doc/zh/design.md -------------------------------------------------------------------------------- /doc/zh/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/doc/zh/index.md -------------------------------------------------------------------------------- /doc/zh/schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/doc/zh/schema.md -------------------------------------------------------------------------------- /doc/zh/schema/default_value.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/doc/zh/schema/default_value.md -------------------------------------------------------------------------------- /doc/zh/schema/field_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/doc/zh/schema/field_name.md -------------------------------------------------------------------------------- /doc/zh/schema/field_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/doc/zh/schema/field_type.md -------------------------------------------------------------------------------- /doc/zh/schema/member.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/doc/zh/schema/member.md -------------------------------------------------------------------------------- /doc/zh/schema/members.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/doc/zh/schema/members.md -------------------------------------------------------------------------------- /doc/zh/schema/struct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/doc/zh/schema/struct.md -------------------------------------------------------------------------------- /doc/zh/schema/structs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/doc/zh/schema/structs.md -------------------------------------------------------------------------------- /doc/zh/schema/type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/doc/zh/schema/type.md -------------------------------------------------------------------------------- /doc/zh/schema/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/doc/zh/schema/types.md -------------------------------------------------------------------------------- /generator/slothjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/generator/slothjson.py -------------------------------------------------------------------------------- /include/rapidjson/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/allocators.h -------------------------------------------------------------------------------- /include/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/document.h -------------------------------------------------------------------------------- /include/rapidjson/encodedstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/encodedstream.h -------------------------------------------------------------------------------- /include/rapidjson/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/encodings.h -------------------------------------------------------------------------------- /include/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/error/en.h -------------------------------------------------------------------------------- /include/rapidjson/error/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/error/error.h -------------------------------------------------------------------------------- /include/rapidjson/filereadstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/filereadstream.h -------------------------------------------------------------------------------- /include/rapidjson/filewritestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/filewritestream.h -------------------------------------------------------------------------------- /include/rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/fwd.h -------------------------------------------------------------------------------- /include/rapidjson/internal/biginteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/internal/biginteger.h -------------------------------------------------------------------------------- /include/rapidjson/internal/diyfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/internal/diyfp.h -------------------------------------------------------------------------------- /include/rapidjson/internal/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/internal/dtoa.h -------------------------------------------------------------------------------- /include/rapidjson/internal/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/internal/ieee754.h -------------------------------------------------------------------------------- /include/rapidjson/internal/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/internal/itoa.h -------------------------------------------------------------------------------- /include/rapidjson/internal/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/internal/meta.h -------------------------------------------------------------------------------- /include/rapidjson/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/internal/pow10.h -------------------------------------------------------------------------------- /include/rapidjson/internal/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/internal/regex.h -------------------------------------------------------------------------------- /include/rapidjson/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/internal/stack.h -------------------------------------------------------------------------------- /include/rapidjson/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/internal/strfunc.h -------------------------------------------------------------------------------- /include/rapidjson/internal/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/internal/strtod.h -------------------------------------------------------------------------------- /include/rapidjson/internal/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/internal/swap.h -------------------------------------------------------------------------------- /include/rapidjson/istreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/istreamwrapper.h -------------------------------------------------------------------------------- /include/rapidjson/memorybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/memorybuffer.h -------------------------------------------------------------------------------- /include/rapidjson/memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/memorystream.h -------------------------------------------------------------------------------- /include/rapidjson/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/msinttypes/inttypes.h -------------------------------------------------------------------------------- /include/rapidjson/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/msinttypes/stdint.h -------------------------------------------------------------------------------- /include/rapidjson/ostreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/ostreamwrapper.h -------------------------------------------------------------------------------- /include/rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/pointer.h -------------------------------------------------------------------------------- /include/rapidjson/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/prettywriter.h -------------------------------------------------------------------------------- /include/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /include/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/reader.h -------------------------------------------------------------------------------- /include/rapidjson/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/schema.h -------------------------------------------------------------------------------- /include/rapidjson/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/stream.h -------------------------------------------------------------------------------- /include/rapidjson/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/stringbuffer.h -------------------------------------------------------------------------------- /include/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/rapidjson/writer.h -------------------------------------------------------------------------------- /include/slothjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/slothjson.cpp -------------------------------------------------------------------------------- /include/slothjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/include/slothjson.h -------------------------------------------------------------------------------- /makedoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/makedoc.py -------------------------------------------------------------------------------- /res/design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/res/design.png -------------------------------------------------------------------------------- /res/design.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/res/design.vsd -------------------------------------------------------------------------------- /res/json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/res/json.png -------------------------------------------------------------------------------- /res/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/res/logo.png -------------------------------------------------------------------------------- /res/slothjson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/res/slothjson.jpg -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/perf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/src/perf_test.cpp -------------------------------------------------------------------------------- /src/perf_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/src/perf_test.h -------------------------------------------------------------------------------- /src/perf_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/src/perf_test.json -------------------------------------------------------------------------------- /src/sample_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/src/sample_test.cpp -------------------------------------------------------------------------------- /src/sample_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/src/sample_test.h -------------------------------------------------------------------------------- /src/sample_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/src/sample_test.json -------------------------------------------------------------------------------- /vs2010/slothjson.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/vs2010/slothjson.vcxproj -------------------------------------------------------------------------------- /vs2010/slothjson.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobs-github/slothjson/HEAD/vs2010/slothjson.vcxproj.filters --------------------------------------------------------------------------------