public
Description: Yet Another JSON Library - A Portable JSON parsing and serialization library in ANSI C
Homepage: http://lloydforge.org/projects/yajl/
Clone URL: git://github.com/lloyd/yajl.git
yajl /
name age message
file .gitignore Thu May 21 08:56:58 -0700 2009 Preliminary .gitignore [mxcl]
file BUILDING Sat Dec 22 06:19:11 -0800 2007 update build documentation git-svn-id: http:/... [lloydh]
file BUILDING.win32 Thu Sep 24 17:12:19 -0700 2009 win32 building cmd-line w/o the msvs gui Signe... [dougm]
file CMakeLists.txt Thu Oct 29 16:36:39 -0700 2009 bump master to 1.0.8 having tagged 1.0.7 [lloyd]
file COPYING Wed Apr 01 08:05:07 -0700 2009 * BREAKING API CHANGE: allow client to specif... [lloyd]
file ChangeLog Thu Oct 29 16:35:39 -0700 2009 changes in 1.0.6 and 1.0.7 [lloyd]
file README Tue Jan 06 08:09:21 -0800 2009 minor grammar fixes in README [lloyd]
file TODO Wed Apr 01 08:05:07 -0700 2009 * BREAKING API CHANGE: allow client to specif... [lloyd]
file YAJLDoc.cmake Thu May 01 13:31:31 -0700 2008 add dummy doc target if doxygen isn't present ... [llooyd]
file configure Fri Jul 31 21:34:08 -0700 2009 Fix ./configure --prefix Signed-off-by: Brian ... [mxcl]
directory reformatter/ Mon Oct 19 06:33:57 -0700 2009 fix win32 compilation after addition of isnan()... [lloyd]
directory src/ Mon Oct 19 06:33:57 -0700 2009 fix win32 compilation after addition of isnan()... [lloyd]
directory test/ Sat Sep 12 08:22:13 -0700 2009 always use a format string with fprintf, silenc... [lloyd]
directory verify/ Mon Oct 19 06:33:57 -0700 2009 fix win32 compilation after addition of isnan()... [lloyd]
README
Welcome to Yet Another JSON Library (YAJL)

## Why does the world need another C library for parsing JSON?  

Good question.  In a review of current C JSON parsing libraries I was 
unable to find one that satisfies my requirements.  Those are, 
0. written in C
1. portable
2. robust -- as close to "crash proof" as possible
3. data representation independent
4. fast
5. generates verbose, useful error messages including context of where
   the error occurs in the input text.
6. can parse JSON data off a stream, incrementally
7. simple to use
8. tiny

Numbers 3, 5, 6, and 7 where particularly hard to find, and were what 
caused me to ultimately create YAJL.  This document is a tour of some
of the more important aspects of YAJL.

## YAJL is Free.

BSD licensing means you can use it in open source and commercial products
alike.  My request beyond the licensing is that if you find bugs drop
me a email, or better yet, fork me on git and fix it!

Porting YAJL should be trivial, the implementation is ANSI C.  If you
port to new systems I'd love to hear of it and integrate your patches.

## YAJL is data representation independent.

BYODR!  Many JSON libraries impose a structure based data representation
on you.  This is a benefit in some cases and a drawback in others.
YAJL uses callbacks to remain agnostic of the in-memory representation.
So if you wish to build up an in-memory representation, you may do so
using YAJL, but you must bring the code that defines and populates the
in memory structure.

This also means that YAJL can be used by other (higher level) JSON
libraries if so desired.

## YAJL supports stream parsing

This means you do not need to hold the whole JSON representation in
textual form in memory.  This makes YAJL ideal for filtering projects,
where you're converting YAJL from one form to another (i.e. XML).  The
included JSON pretty printer is an example of such a filter program.

## YAJL is fast

Minimal memory copying is performed.  YAJL, when possible, returns
pointers into the client provided text (i.e. for strings that have no
embedded escape chars, hopefully the common case).  I've put a lot of
effort into profiling and tuning performance, but I have ignored a
couple possible performance improvements to keep the interface clean,
small, and flexible.  My hope is that YAJL will perform comparably to
the fastest JSON parser out there.

YAJL should impose both minimal CPU and memory requirements on your
application.

## YAJL is tiny.

Fat free.  No whip.

enjoy,
Lloyd - July, 2007