src/bookofnim/deepdives/data

Search:
Group by:
Source   Edit  

working with data

bookmark

TLDR

links

json

  • json imports parsejson module; no need to import it twice
  • field axor, throws if not found
  • {} field axor, nil/default value if not found; works?.like?.es6 operator
    • IMO use this over {"cuz", "u", "can", "do", "this"} {to: {dig:{ into: {an: obj }}}
  • JObject preserves key ordering
  • use std/option for maybe keys when marshalling a JsonNode to a custom type
  • use somekey for some key thats some reserved nim keyword
  • %* doesnt support heterogeneous arrays, sets in objects, or not nil annotations
  • may require importing the underlying stdlib (e.g. tables) & jsonutils for extra helpers

json types

  • JsonNodeObj base type
  • JsonNode ref JsonNodeObj object variant representing any json type
  • JsonNodeKind enum
    • all have a newJBlah constructor
    • JArray seqJsonNode
    • JBool bool
    • JFloat float
    • JInt BiggestInt
    • JNull nil
    • JObject OrderedTablestring, JsonNode
    • JString string

json procs

  • kind get json node type
  • parseJson parses string into a json node, i.e. JSON.parse
  • getOrDefault from any j type
  • getInt(defaultValue)
  • getFloat(defaultValue)
  • getStr(defaultValue)
  • getBool(defaultValue)
  • getBiggestInt(defaultValue)
  • getElems(defaultValue) of an array
  • getFields(defaultValue) of an object; requires import std/table
  • to unmarshal a JsonNode to an arbitrary type

jsonutils

  • (de)serialization for arbitrary types

jsonutil types

  • EnumMode enum
    • joptEnumOrd|Symbol|String
  • Joptions controls errors during fromJson serialization
    • allowExtraKeys json string can have more keys than nim object
    • allowMissingKeys json string can have less keys than expected in nim object
  • JsonNodeMode enum controls toJson for JsonNode types
    • joptJsonNodeAsRef|CopyObject
      • ref returned as is
      • copy deep
      • object regular ref
  • ToJsonOptions
    • enumMode: EnumMode
    • jsonNodeMode: JsonNodeMode

jsonutils procs

  • fromJsonHook JsonNode -> any nim type
  • toJsonHook any nim type -> JsonNode

Types

Headers = object
  
Source   Edit  
ResponseType = object
  
Source   Edit  

Vars

reqData = `%`([("tupac", `%`([("quotes", `%`([`%`("dreams are for real")]))]))])
dynamic: instantiate json node Source   Edit  
t = newStringTable(modeCaseSensitive)
will require us to be verbose when serializing if you dont specify Joptions Source   Edit  

Lets

resJson = parseJson(response, false, false)
dynamic: string -> json node Source   Edit  
resType = to(resJson, ResponseType)
fully typed: json node -> arbitrary type Source   Edit  

Consts

opts = (allowExtraKeys: true, allowMissingKeys: true)
more succcint than the strtab example Source   Edit  
response = """{
    "body": ["nim", "lang"],
    "headers": {
        "Content-Type": "application/json",
        "Vary": "Accept-Encoding",
        "Scheme": "https",
        "Host": "www.woop.com",
        "Status": 200,
        "Method": "Get"
      }
    }"""
Source   Edit  

Procs

proc echoReqData(): void {....raises: [ValueError], tags: [], forbids: [].}
Source   Edit