Code Monkey home page Code Monkey logo

json-parser's Introduction

jsonparser

This is an implementation of a JSON parser in C++. I built this as a learning project on parsing.

Features

  • Parses any valid JSON into a C++ tree
  • Multiline strings are supported

Differences from JSON Spec

  • Leading zeroes in numbers are allowed
  • Line breaks can appear within strings (multiline strings)
  • Control characters (i.e. tab character) can appear within strings
  • No depth limit

TODO

  • Implement unicode escapes
  • Implement a parameter to limit depth
  • Figure out a way for automatic type conversions
  • Make it more efficient, for example by using move

How to run

Prerequisities: A C++ 17 Compiler

Firstly, install meson and ninja

Clone the repository

$ git clone https://github.com/ananthvk/json-parser
$ cd json-parser

Then build and run the tests

$ meson setup builddir
$ cd builddir
$ ninja -j8 test

On windows

C:\> git clone https://github.com/ananthvk/json-parser
C:\> cd json-parser
C:\> meson setup -Ddefault_library=static builddir
C:\> cd builddir
C:\> meson test -v

Note: When running with MSVC, make sure to specify library type as static.

Notes

I got this idea from this website

json-parser's People

Contributors

ananthvk avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.