• Stars
    star
    3,504
  • Rank 12,129 (Top 0.3 %)
  • Language
    C
  • License
    MIT License
  • Created over 8 years ago
  • Updated 4 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Jsmn is a world fastest JSON parser/tokenizer. This is the official repo replacing the old one at Bitbucket

JSMN

Build Status

jsmn (pronounced like 'jasmine') is a minimalistic JSON parser in C. It can be easily integrated into resource-limited or embedded projects.

You can find more information about JSON format at json.org

Library sources are available at https://github.com/zserge/jsmn

The web page with some information about jsmn can be found at http://zserge.com/jsmn.html

Philosophy

Most JSON parsers offer you a bunch of functions to load JSON data, parse it and extract any value by its name. jsmn proves that checking the correctness of every JSON packet or allocating temporary objects to store parsed JSON fields often is an overkill.

JSON format itself is extremely simple, so why should we complicate it?

jsmn is designed to be robust (it should work fine even with erroneous data), fast (it should parse data on the fly), portable (no superfluous dependencies or non-standard C extensions). And of course, simplicity is a key feature - simple code style, simple algorithm, simple integration into other projects.

Features

  • compatible with C89
  • no dependencies (even libc!)
  • highly portable (tested on x86/amd64, ARM, AVR)
  • about 200 lines of code
  • extremely small code footprint
  • API contains only 2 functions
  • no dynamic memory allocation
  • incremental single-pass parsing
  • library code is covered with unit-tests

Design

The rudimentary jsmn object is a token. Let's consider a JSON string:

'{ "name" : "Jack", "age" : 27 }'

It holds the following tokens:

  • Object: { "name" : "Jack", "age" : 27} (the whole object)
  • Strings: "name", "Jack", "age" (keys and some values)
  • Number: 27

In jsmn, tokens do not hold any data, but point to token boundaries in JSON string instead. In the example above jsmn will create tokens like: Object [0..31], String [3..7], String [12..16], String [20..23], Number [27..29].

Every jsmn token has a type, which indicates the type of corresponding JSON token. jsmn supports the following token types:

  • Object - a container of key-value pairs, e.g.: { "foo":"bar", "x":0.3 }
  • Array - a sequence of values, e.g.: [ 1, 2, 3 ]
  • String - a quoted sequence of chars, e.g.: "foo"
  • Primitive - a number, a boolean (true, false) or null

Besides start/end positions, jsmn tokens for complex types (like arrays or objects) also contain a number of child items, so you can easily follow object hierarchy.

This approach provides enough information for parsing any JSON data and makes it possible to use zero-copy techniques.

Usage

Download jsmn.h, include it, done.

#include "jsmn.h"

...
jsmn_parser p;
jsmntok_t t[128]; /* We expect no more than 128 JSON tokens */

jsmn_init(&p);
r = jsmn_parse(&p, s, strlen(s), t, 128); // "s" is the char array holding the json content

Since jsmn is a single-header, header-only library, for more complex use cases you might need to define additional macros. #define JSMN_STATIC hides all jsmn API symbols by making them static. Also, if you want to include jsmn.h from multiple C files, to avoid duplication of symbols you may define JSMN_HEADER macro.

/* In every .c file that uses jsmn include only declarations: */
#define JSMN_HEADER
#include "jsmn.h"

/* Additionally, create one jsmn.c file for jsmn implementation: */
#include "jsmn.h"

API

Token types are described by jsmntype_t:

typedef enum {
	JSMN_UNDEFINED = 0,
	JSMN_OBJECT = 1 << 0,
	JSMN_ARRAY = 1 << 1,
	JSMN_STRING = 1 << 2,
	JSMN_PRIMITIVE = 1 << 3
} jsmntype_t;

Note: Unlike JSON data types, primitive tokens are not divided into numbers, booleans and null, because one can easily tell the type using the first character:

  • 't', 'f' - boolean
  • 'n' - null
  • '-', '0'..'9' - number

Token is an object of jsmntok_t type:

typedef struct {
	jsmntype_t type; // Token type
	int start;       // Token start position
	int end;         // Token end position
	int size;        // Number of child (nested) tokens
} jsmntok_t;

Note: string tokens point to the first character after the opening quote and the previous symbol before final quote. This was made to simplify string extraction from JSON data.

All job is done by jsmn_parser object. You can initialize a new parser using:

jsmn_parser parser;
jsmntok_t tokens[10];

jsmn_init(&parser);

// js - pointer to JSON string
// tokens - an array of tokens available
// 10 - number of tokens available
jsmn_parse(&parser, js, strlen(js), tokens, 10);

This will create a parser, and then it tries to parse up to 10 JSON tokens from the js string.

A non-negative return value of jsmn_parse is the number of tokens actually used by the parser. Passing NULL instead of the tokens array would not store parsing results, but instead the function will return the number of tokens needed to parse the given string. This can be useful if you don't know yet how many tokens to allocate.

If something goes wrong, you will get an error. Error will be one of these:

  • JSMN_ERROR_INVAL - bad token, JSON string is corrupted
  • JSMN_ERROR_NOMEM - not enough tokens, JSON string is too large
  • JSMN_ERROR_PART - JSON string is too short, expecting more JSON data

If you get JSMN_ERROR_NOMEM, you can re-allocate more tokens and call jsmn_parse once more. If you read json data from the stream, you can periodically call jsmn_parse and check if return value is JSMN_ERROR_PART. You will get this error until you reach the end of JSON data.

Other info

This software is distributed under MIT license, so feel free to integrate it in your commercial products.

More Repositories

1

lorca

Build cross-platform modern desktop apps in Go + HTML5
Go
7,899
star
2

awfice

The world smallest office suite
HTML
3,440
star
3

fenster

The most minimal cross-platform GUI library
C++
495
star
4

tray

Cross-platform, super tiny C99 implementation of a system tray icon with a popup menu.
C
465
star
5

partcl

ParTcl - a micro Tcl implementation
C
459
star
6

metric

Minimal metrics for Go (counter/gauge/histogram). No dependencies. Compatible with expvar. Web UI included.
Go
352
star
7

luash

Tiny lua module to write shell scripts with lua (inspired by Python's sh module)
Lua
302
star
8

pt

Protothreads (coroutines) in C99. Highly portable, but work best in low-end embedded systems.
C
262
star
9

o

Tiny and simple React clone
JavaScript
241
star
10

lua-promises

A+ promises in Lua
Lua
214
star
11

log

Ultimately minimal (yet very convenient) logger for Android and Java
Java
158
star
12

tojvm

A toy JVM in Go
Go
155
star
13

bfapi

Resilient, scalable Brainf*ck, in the spirit of modern systems design
Go
144
star
14

webview-python

Python bindings to webview
Objective-C
143
star
15

hid

Simple HID driver for Go (pure golang, no dependencies, no cgo)
Go
119
star
16

nokia-composer

Nokia Composer in 512 bytes
HTML
118
star
17

expr

Fast and lightweight math expression evaluator in C99
C
115
star
18

zs

Absolutely minimal static site generator in Go (powers https://zserge.com)
Go
90
star
19

tinysh

Tiny UNIX shell, de-obfuscated, modernized, and "rewritten in Rust".
C
85
star
20

nanonn

A nano-framework for neural networks
Rust
83
star
21

dotfiles

git clone --bare https://github.com/zserge/dotfiles $HOME/.dotfiles && git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME checkout
Vim Script
79
star
22

lc3-forth

Post-Apocalyptic Computing: bootstrapping Forth environment for LC-3 CPU
C
75
star
23

1bitr

Minimalistic text-based 1-bit music tracker
C
71
star
24

carnatus

A tiny chess engine in Go (sunfish port)
Go
64
star
25

odetoj

Rewrite of Arthur Whitney's one-page J interpreter in Rust
Rust
60
star
26

headline

Ascetic RSS reader in JavaScript, no server required
JavaScript
57
star
27

buckbone

A simple android project generator for the Buck build system
Shell
52
star
28

glob-grep

A little experiment: compare the languages aimed to replace C
Zig
51
star
29

q

Tiny and simple VueJS clone
JavaScript
46
star
30

beep

Cross-platform beep() function
C
42
star
31

slide

An attempt to implement Trikita Slide for desktop
C++
39
star
32

figma-simplify-path

Figma plugin to simplify vector paths
JavaScript
24
star
33

mucks

A tiny terminal session manager for Tmux, Screen and DVTM
Shell
20
star
34

anvil-kotlin-demos

Minimal tutorial/demos for Anvil+Kotlin
Kotlin
18
star
35

zserge.github.io

My static site
HTML
14
star
36

kv

An ultimately minimal persistent key-value store + LRU cache
Go
12
star
37

jsmn.lua

The world fastest JSON parser ported to Lua
Lua
11
star
38

yu

Yu is a tee-like tool, but with rotation feature like logrotate
C
10
star
39

aint

Code for the "AI or AIN'T" blog posts
Go
9
star
40

mdns

Very pragmatic mDNS implementation in Go
Go
8
star
41

kveer

A tiny in-memory key-value storage in Go with optional persistence (atomic backup file, or append-only)
Go
7
star
42

bf

Well, everyone has to write a brainf*ck interpreter at some point
C
7
star
43

toy-java-agent

Toy Java agent
Java
6
star
44

covered

Trello Cover Card Generator
JavaScript
6
star
45

bsoz

One of the most minimal MOS6502 and retro computer emulators!
C
6
star
46

atomicwriter

Atomic file writes in Go (using a unique temporary file and atomic rename)
Go
5
star
47

lex

A library for writing lexers in Go
Go
4
star
48

textizer

Minimal android widgets in Scheme
Java
4
star
49

chess

JavaScript
4
star
50

ping

An ultimately minimal social network, messaging, pub/sub and home automation app
4
star
51

photo

Minimalistic private photo booth
HTML
3
star
52

incr

incr.it backend
JavaScript
3
star
53

one-click-hugo-cms

CSS
2
star
54

grafana-zero

Python
2
star
55

gif

Simple GIF recorder
HTML
2
star
56

protoc-gen-micro

Protobuf code generation for micro
Go
2
star
57

android-open-project

Collect and classify android open source projects 微信公众号:codekk
1
star
58

scaffold

Templates for quick project start
Java
1
star
59

r

Something that rhymes. Or not.
1
star
60

tabs

🎼 A tiny CLI tool to render tabs for music instruments (🎹🎷🎺🎸🪕🪈 and many others!)
C
1
star