Baptiste Lepilleur | 4882d0a | 2008-01-19 12:12:35 +0000 | [diff] [blame] | 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) |
Baptiste Lepilleur | 4882d0a | 2008-01-19 12:12:35 +0000 | [diff] [blame] | 5 | - Add enable/disable flag for static and shared library build |
| 6 | - Enhance help |
Baptiste Lepilleur | 8c2f18c | 2010-02-21 14:24:52 +0000 | [diff] [blame] | 7 | - Platform portability check: (Notes: was ok on last check) |
Baptiste Lepilleur | 4882d0a | 2008-01-19 12:12:35 +0000 | [diff] [blame] | 8 | - linux/gcc, |
| 9 | - solaris/cc, |
| 10 | - windows/msvc678, |
| 11 | - aix/vacpp |
| 12 | - Add JsonCpp version to header as numeric for use in preprocessor test |
| 13 | - Remove buggy experimental hash stuff |
| 14 | - Release on sourceforge download |
Baptiste Lepilleur | 4882d0a | 2008-01-19 12:12:35 +0000 | [diff] [blame] | 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). |
Baptiste Lepilleur | f66d370 | 2008-01-20 16:49:53 +0000 | [diff] [blame] | 17 | - Enforce only object or array as root element |
| 18 | - Disable comment support |
Baptiste Lepilleur | 8c2f18c | 2010-02-21 14:24:52 +0000 | [diff] [blame] | 19 | - Get jsonchecker failing tests to pass in strict mode |
Baptiste Lepilleur | 4882d0a | 2008-01-19 12:12:35 +0000 | [diff] [blame] | 20 | \section ms_separation Expose json reader/writer API that do not impose using Json::Value. |
| 21 | Some typical use-case involve an application specific structure to/from a JSON document. |
Baptiste Lepilleur | 8c2f18c | 2010-02-21 14:24:52 +0000 | [diff] [blame] | 22 | - Event base parser to allow unserializing a Json document directly in datastructure instead of |
| 23 | using the intermediate Json::Value. |
| 24 | - "Stream" based parser to serialized a Json document without using Json::Value as input. |
Baptiste Lepilleur | 4882d0a | 2008-01-19 12:12:35 +0000 | [diff] [blame] | 25 | - Performance oriented parser/writer: |
| 26 | - Provides an event based parser. Should allow pulling & skipping events for ease of use. |
| 27 | - Provides a JSON document builder: fast only. |
| 28 | \section ms_perfo Performance tuning |
| 29 | - Provides support for static property name definition avoiding allocation |
| 30 | - Static property dictionnary can be provided to JSON reader |
| 31 | - Performance scenario & benchmarking |
| 32 | */ |