blob: 0c29a90889281996d634ca995fe2477fa1a23026 [file] [log] [blame]
Baptiste Lepilleur4882d0a2008-01-19 12:12:35 +00001/*! \page roadmap JsonCpp roadmap
2 \section ms_release Makes JsonCpp ready for release
3 - Build system clean-up:
4 - Fix build on Windows (shared-library build is broken)
Baptiste Lepilleura8afdd42013-04-12 14:10:13 +00005 - Compile and run tests using shared library on Windows to ensure no JSON_API macro is missing.
Baptiste Lepilleur4882d0a2008-01-19 12:12:35 +00006 - Add enable/disable flag for static and shared library build
7 - Enhance help
Baptiste Lepilleur8c2f18c2010-02-21 14:24:52 +00008 - Platform portability check: (Notes: was ok on last check)
Baptiste Lepilleur4882d0a2008-01-19 12:12:35 +00009 - linux/gcc,
10 - solaris/cc,
11 - windows/msvc678,
12 - aix/vacpp
13 - Add JsonCpp version to header as numeric for use in preprocessor test
14 - Remove buggy experimental hash stuff
Baptiste Lepilleur4882d0a2008-01-19 12:12:35 +000015 \section ms_strict Adds a strict mode to reader/parser
16 Strict JSON support as specific in RFC 4627 (http://www.ietf.org/rfc/rfc4627.txt?number=4627).
Baptiste Lepilleurf66d3702008-01-20 16:49:53 +000017 - Enforce only object or array as root element
18 - Disable comment support
Baptiste Lepilleur8c2f18c2010-02-21 14:24:52 +000019 - Get jsonchecker failing tests to pass in strict mode
Baptiste Lepilleur402c13e2010-04-27 16:37:50 +000020 \section ms_writer Writter control
21 Provides more control to determine how specific items are serialized when JSON allow choice:
22 - Optionally allow escaping of non-ASCII characters using unicode escape sequence "\\u".
23 - Optionally allow escaping of "/" using "\/".
Baptiste Lepilleur4882d0a2008-01-19 12:12:35 +000024 \section ms_separation Expose json reader/writer API that do not impose using Json::Value.
25 Some typical use-case involve an application specific structure to/from a JSON document.
Baptiste Lepilleur8c2f18c2010-02-21 14:24:52 +000026 - Event base parser to allow unserializing a Json document directly in datastructure instead of
27 using the intermediate Json::Value.
Baptiste Lepilleur40388492011-05-01 20:50:44 +000028 - Stream based parser to serialized a Json document without using Json::Value as input.
Baptiste Lepilleur4882d0a2008-01-19 12:12:35 +000029 - Performance oriented parser/writer:
30 - Provides an event based parser. Should allow pulling & skipping events for ease of use.
31 - Provides a JSON document builder: fast only.
32 \section ms_perfo Performance tuning
Baptiste Lepilleur402c13e2010-04-27 16:37:50 +000033 - Provides support for static property name definition avoiding allocation
Baptiste Lepilleur4882d0a2008-01-19 12:12:35 +000034 - Static property dictionnary can be provided to JSON reader
35 - Performance scenario & benchmarking
Baptiste Lepilleurdf4de552011-05-02 07:06:33 +000036 \section testing Testing
37 - Adds more tests for unicode parsing (e.g. including surrogate and error detection).
Baptiste Lepilleur4882d0a2008-01-19 12:12:35 +000038*/