|
1 | 1 | /*! \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) |
5 | | - - Compile and run tests using shared library on Windows to ensure no JSON_API macro is missing. |
6 | | - - Add enable/disable flag for static and shared library build |
7 | | - - Enhance help |
8 | | - - Platform portability check: (Notes: was ok on last check) |
9 | | - - 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 |
15 | | - \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). |
17 | | - - Enforce only object or array as root element |
18 | | - - Disable comment support |
19 | | - - Get jsonchecker failing tests to pass in strict mode |
20 | | - \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 "\/". |
24 | | - \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. |
26 | | - - Event base parser to allow unserializing a Json document directly in datastructure instead of |
27 | | - using the intermediate Json::Value. |
28 | | - - Stream based parser to serialized a Json document without using Json::Value as input. |
29 | | - - 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 |
33 | | - - Provides support for static property name definition avoiding allocation |
34 | | - - Static property dictionnary can be provided to JSON reader |
35 | | - - Performance scenario & benchmarking |
36 | | - \section testing Testing |
37 | | - - Adds more tests for unicode parsing (e.g. including surrogate and error detection). |
| 2 | + Moved to: https://github.com/jacobsa/jsoncpp/wiki/Roadmap |
38 | 3 | */ |
0 commit comments