GithubHelp home page GithubHelp logo

jstin's Introduction

jstin

JSON {de,}serialization for the working men.

Why?

  • Automagic: compile-time magic makes sure your data is correctly mapped into appropriate json objects.
  • Simple: a set of procedures that know how to handle a particular kind of data are gracefully composed toghether behind your back.
  • Extensible: if you ever need to write your own serializer/deserializer you can do so in a few lines of code.

Quickstart

Let's start with a simple yet complete example.

You've got a bunch of data from a REST API and now you want to wrap it in a neat data structure. Some fields have horrendous and non-descriptive names and there's a timestamp serialized as a string you'd like to turn into a DateTime object but fear not, we'll put an end to this madness very soon.

import jstin
import json
import times

type
  Person = object
    name {.fieldTag(rename="falafel").}: string
    surname {.fieldTag(rename="kebab").}: string
    birthDate {.fieldTag(rename="dob").}: DateTime

proc fromJson(x: var DateTime, n: JsonNode) =
  # Decode the timestamp string
  x = n.getStr().parse("dd-MM-yyyy")

proc toJson(x: DateTime): JsonNode =
  # Encode the timestamp as string
  result = newJString(x.format("dd-MM-yyyy"))

const myData = """
[
 { "falafel": "Mark", "kebab": "Twain", "dob": "30-11-1835" },
 { "falafel": "Pafnutij L'vovič", "kebab": "Čebyšëv", "dob": "16-05-1821" },
 { "falafel": "Harry", "kebab": "Nyquist", "dob": "07-02-1889" }
]
"""

let parsed = parseJson(myData)
# Et-voilá!
let asObj = fromJson[seq[Person]](parsed)
# Let's show that the serialization + deserialization are idempotent
doAssert(parsed == toJson(asObj))

FAQ

I don't want to annotate all my damn object fields!

I hear you, if you have to use the annotations to convert the field names between different cases objTag will save you a lot of time.

type
  CoolObject {.objTag(renameAll = SnakeCase).} = object
    myFieldName: int # Is serialized/deserialized as my_field_name

I get a few ProveInit warnings, is that normal?

Those warnings are shown because the compiler doesn't understand the explicit noinit tag, a patch about this has already been submitted upstream. The whole temporary variable is only needed in order to work-around a bug in the hasCustomPragma implementation and, again, a patch has been submitted upstream.

jstin's People

Contributors

lemonboy avatar ringabout 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.