Skip to content

Commit 4882d0a

Browse files
committed
Added rought roadmap.
1 parent 452ccb3 commit 4882d0a

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

doc/roadmap.dox

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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+
- Fix doxygen build issue (discard doxygen dependency check, always rebuild)
6+
- Add enable/disable flag for static and shared library build
7+
- Enhance help
8+
- Test with recent Scons checkpoint
9+
- Platform portability check:
10+
- linux/gcc,
11+
- solaris/cc,
12+
- windows/msvc678,
13+
- aix/vacpp
14+
- Add JsonCpp version to header as numeric for use in preprocessor test
15+
- Remove buggy experimental hash stuff
16+
- Release on sourceforge download
17+
\section ms_unicode Clean-up unicode handling
18+
- Ensure reader properly convert \u and \U unicode sequence to UTF8
19+
- Ensure writer emit only UTF8 string.
20+
- Provides hook to convert string to/from utf8/other encoding.
21+
- look into iconv, icu and windows API
22+
\section ms_strict Adds a strict mode to reader/parser
23+
Strict JSON support as specific in RFC 4627 (http://www.ietf.org/rfc/rfc4627.txt?number=4627).
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+
- Performance oriented parser/writer:
27+
- Provides an event based parser. Should allow pulling & skipping events for ease of use.
28+
- Provides a JSON document builder: fast only.
29+
\section ms_perfo Performance tuning
30+
- Provides support for static property name definition avoiding allocation
31+
- Static property dictionnary can be provided to JSON reader
32+
- Performance scenario & benchmarking
33+
*/

0 commit comments

Comments
 (0)