# SPDX-FileCopyrightText: 2021 ☭ Emery Hemingway # SPDX-License-Identifier: Unlicense import bigints import std/[base64, endians, hashes, options, sets, sequtils, streams, tables, typetraits] from std/json import escapeJson, escapeJsonUnquoted from std/macros import hasCustomPragma, getCustomPragmaVal import ./preserves/private/dot from std/strutils import parseEnum when defined(tracePreserves): template trace(args: varargs[untyped]) = echo args else: template trace(args: varargs[untyped]) = discard type PreserveKind* = enum pkBoolean, pkFloat, pkDouble, pkSignedInteger, pkBigInteger, pkString, pkByteString, pkSymbol, pkRecord, pkSequence, pkSet, pkDictionary, pkEmbedded const atomKinds* = {pkBoolean, pkFloat, pkDouble, pkSignedInteger, pkBigInteger, pkString, pkByteString, pkSymbol} compoundKinds* = {pkRecord, pkSequence, pkSet, pkDictionary} type Preserve*[E = void] = object case kind*: PreserveKind of pkBoolean: bool*: bool of pkFloat: float*: float32 of pkDouble: double*: float64 of pkSignedInteger: int*: BiggestInt of pkBigInteger: bigint*: BigInt of pkString: string*: string of pkByteString: bytes*: seq[byte] of pkSymbol: symbol*: string of pkRecord: record*: seq[Preserve[E]] # label is last of pkSequence: sequence*: seq[Preserve[E]] of pkSet: set*: seq[Preserve[E]] # TODO: HashSet of pkDictionary: dict*: seq[DictEntry[E]] # TODO: Tables of pkEmbedded: embed*: E embedded*: bool ## Flag to mark embedded Preserves DictEntry[E] = tuple[key: Preserve[E], val: Preserve[E]] proc `==`*[A, B](x: Preserve[A]; y: Preserve[B]): bool = ## Check `x` and `y` for equivalence. if x.kind == y.kind and x.embedded == y.embedded: case x.kind of pkBoolean: result = x.bool == y.bool of pkFloat: result = x.float == y.float of pkDouble: result = x.double == y.double of pkSignedInteger: result = x.int == y.int of pkBigInteger: result = x.bigint == y.bigint of pkString: result = x.string == y.string of pkByteString: result = x.bytes == y.bytes of pkSymbol: result = x.symbol == y.symbol of pkRecord: result = x.record.len == y.record.len for i in 0..x.record.high: if not result: break result = result and (x.record[i] == y.record[i]) of pkSequence: for i, val in x.sequence: if y.sequence[i] != val: return false result = true of pkSet: result = x.set.len == y.set.len for i in 0..x.set.high: if not result: break result = result and (x.set[i] == y.set[i]) of pkDictionary: result = x.dict.len == y.dict.len for i in 0..x.dict.high: if not result: break result = result and (x.dict[i].key == y.dict[i].key) and (x.dict[i].val == y.dict[i].val) of pkEmbedded: when A is B: when A is void: result = true else: result = x.embed == y.embed proc `<`(x, y: string | seq[byte]): bool = for i in 0 .. min(x.high, y.high): if x[i] < y[i]: return true if x[i] != y[i]: return false x.len < y.len proc `<`*[A, B](x: Preserve[A]; y: Preserve[B]): bool = ## Preserves have a total order over values. Check if `x` is ordered before `y`. if x.embedded != y.embedded: result = y.embedded elif x.kind != y.kind: if x.kind == pkSignedInteger and y.kind == pkBigInteger: result = x.int.initBigInt < y.bigint elif x.kind == pkBigInteger and y.kind == pkSignedInteger: result = x.bigint < y.int.initBigInt else: result = x.kind < y.kind else: case x.kind of pkBoolean: result = (not x.bool) and y.bool of pkFloat: result = x.float < y.float of pkDouble: result = x.double < y.double of pkSignedInteger: result = x.int < y.int of pkBigInteger: result = x.bigint < y.bigint of pkString: result = x.string < y.string of pkByteString: result = x.bytes < y.bytes of pkSymbol: result = x.symbol < y.symbol of pkRecord: if x.record[x.record.high] < y.record[y.record.high]: return true for i in 0.. 0) ## Check if ``pr`` is a Preserves record. proc isSequence*(pr: Preserve): bool {.inline.} = pr.kind == pkSequence ## Check if ``pr`` is a Preserves sequence. proc isSet*(pr: Preserve): bool {.inline.} = pr.kind == pkSet ## Check if ``pr`` is a Preserves set. proc isDictionary*(pr: Preserve): bool {.inline.} = pr.kind == pkDictionary ## Check if ``pr`` is a Preserves dictionary. func isEmbedded*[E](pr: Preserve[E]): bool {.inline.} = ## Check if ``pr`` is an embedded value. when E is void: pr.embedded # embedded Preserves else: pr.kind == pkEmbedded # embedded Nim proc label*(pr: Preserve): Preserve {.inline.} = ## Return the label of record value. pr.record[pr.record.high] proc arity*(pr: Preserve): int {.inline.} = ## Return the number of fields in record `pr`. pred(pr.record.len) proc fields*(pr: Preserve): seq[Preserve] {.inline.} = ## Return the fields of a record value. pr.record[0..pr.record.high.pred] iterator fields*(pr: Preserve): Preserve = ## Iterate the fields of a record value. for i in 0.. 0: write(n.pred, i shr 8) str.write(i.uint8) write(byteCount, pr.int) of pkBigInteger: doAssert(Negative notin pr.bigint.flags, "negative big integers not implemented") var bytes = newSeqOfCap[uint8](pr.bigint.limbs.len * 4) var begun = false for i in countdown(pr.bigint.limbs.high, 0): let limb = pr.bigint.limbs[i] for j in countdown(24, 0, 8): let b = uint8(limb shr j) begun = begun or (b != 0) if begun: bytes.add(b) if bytes.len <= 16: str.write(0xa0'u8 or bytes.high.uint8) else: str.write(0xb0'u8) str.writeVarint(bytes.len) str.write(cast[string](bytes)) of pkString: str.write(0xb1'u8) str.writeVarint(pr.string.len) str.write(pr.string) of pkByteString: str.write(0xb2'u8) str.writeVarint(pr.bytes.len) str.write(cast[string](pr.bytes)) of pkSymbol: str.write(0xb3'u8) str.writeVarint(pr.symbol.len) str.write(pr.symbol) of pkRecord: assert(pr.record.len > 0) str.write(0xb4'u8) str.write(pr.record[pr.record.high]) for i in 0.. 0x9c: 0xa0 else: 0x90)) of 0xa0: let len = (tag.int and 0x0f) + 1 if len <= 8: result = Preserve[E](kind: pkSignedInteger, int: s.readUint8().BiggestInt) if (result.int and 0x80) != 0: result.int.dec(0x100) for i in 1.. ", result proc toPreserveHook*[A](pr: Preserve[A]; E: typedesc): Preserve[E] = ## Hook for converting ``Preserve`` values with different embedded types. if pr.kind == pkEmbedded: when E is void: result = toPreserve(pr.embed, E) else: result = Preserve[E](pk: pr.kind, embed: (E)pr.embed) else: result = cast[Preserve[E]](pr) proc toPreserveHook*[T](set: HashSet[T]; E: typedesc): Preserve[E] = ## Hook for preserving ``HashSet``. result = Preserve[E](kind: pkSet, set: newSeqOfCap[Preserve[E]](set.len)) for e in set: result.incl toPreserve(e, E) #[ when isMainModule: var h: HashSet[string] var pr = h.toPreserveHook(void) assert fromPreserveHook(h, pr) ]# proc toPreserveHook*[A, B](table: Table[A, B]|TableRef[A, B], E: typedesc): Preserve[E] = ## Hook for preserving ``Table``. result = initDictionary[E]() for k, v in table.pairs: when A is string: result[toSymbol(k, E)] = toPreserve(v, E) else: result[toPreserve(k, E)] = toPreserve(v, E) proc fromPreserve*[T, E](v: var T; pr: Preserve[E]): bool = ## Inplace version of `preserveTo`. Returns ``true`` on ## a complete match, otherwise returns ``false``. ## Can be customized with `fromPreserveHook[E](x: T; var pr: Preserve[E]): bool`. ## Any ``fromPreserveHook`` that does not compile will be discarded; ## *Write tests for your hooks!* ## ## When `tracePreserves` is defined (`-d:tracePreserves`) a diagnostic ## trace is printing during `fromPreserve`. # TODO: {.raises: [].} runnableExamples: import preserves, preserves/parse type Foo {.preservesRecord: "foo".} = object x, y: int var foo: Foo assert(fromPreserve(foo, parsePreserves(""""""))) assert(foo.x == 1) assert(foo.y == 2) when T is Preserve[E]: v = pr result = true elif T is E: if pr.kind == pkEmbedded: v = pr.embed result = true elif compiles(fromPreserveHook(v, pr)): result = fromPreserveHook(v, pr) elif T is distinct: result = fromPreserve(result.distinctBase, pr) elif T is enum: if pr.isSymbol: try: v = parseEnum[T](pr.symbol) result = true except ValueError: discard elif T is Bigint: case pr.kind of pkSignedInteger: v = initBigint(pr.int) result = true of pkBigInteger: v = pr.bigint result = true else: disard elif T is bool: if pr.kind == pkBoolean: v = pr.bool result = true elif T is SomeInteger: if pr.kind == pkSignedInteger: v = T(pr.int) result = true elif T is float: if pr.kind == pkFloat: v = pr.float result = true elif T is seq[byte]: if pr.kind == pkByteString: v = pr.bytes result = true elif T is seq: if pr.kind == pkSequence: v.setLen(pr.len) result = true for i, e in pr.sequence: result = result and fromPreserve(v[i], e) if not result: v.setLen 0 break elif T is float64: case pr.kind of pkFloat: v = pr.float result = true of pkDouble: v = pr.double result = true elif T is Ordinal | SomeInteger: if pr.kind == pkSignedInteger: v = (T)pr.int result = true elif T is string: case pr.kind of pkString: v = pr.string result = true of pkSymbol: v = pr.symbol result = true else: discard elif T is tuple: case pr.kind of pkRecord, pkSequence: if pr.len <= tupleLen(T): result = true var i: int for f in fields(v): if result and i < pr.len: result = result and fromPreserve(f, pr[i]) inc i of pkDictionary: if tupleLen(T) == pr.len: result = true for key, val in fieldPairs(v): if result: result = result and fromPreserve(val, pr[toSymbol(key, E)]) else: discard elif T is ref: if isNil(v): new(v) result = fromPreserve(v[], pr) elif T is object: template fieldFromPreserve(key: string; val: typed; pr: Preserve[E]): bool {.used.} = when v.dot(key).hasCustomPragma(preservesSymbol): if pr.isSymbol: fromPreserve(val, pr) else: false elif v.dot(key).hasCustomPragma(preservesLiteral): const lit = parsePreserves(v.dot(key).getCustomPragmaVal(preservesLiteral)) pr == lit else: fromPreserve(val, pr) when T.hasCustomPragma(unpreservable): raiseAssert($T & " is unpreservable") elif T.hasCustomPragma(preservesRecord): if pr.isRecord and pr.label.isSymbol(T.getCustomPragmaVal(preservesRecord)): result = true var i: int for key, val in fieldPairs(v): if result and i <= pr.len: result = result and fieldFromPreserve(key, val, pr.record[i]) inc i result = result and (i == pr.len) elif T.hasCustomPragma(preservesTuple): if pr.isSequence: result = true var i: int for name, field in fieldPairs(v): when v.dot(name).hasCustomPragma(preservesTupleTail): setLen(v.dot(name), pr.len - i) var j: int while result and i < pr.len: result = result and fieldFromPreserve(name, v.dot(name)[j], pr.sequence[i]) inc i inc j else: if result and i < pr.len: result = result and fieldFromPreserve(name, field, pr.sequence[i]) inc i result = result and (i == pr.len) elif T.hasCustomPragma(preservesDictionary): if pr.isDictionary: result = true var i: int for key, _ in fieldPairs(v): let val = pr.getOrDefault(toSymbol(key, E)) result = result and fieldFromPreserve( key, v.dot(key), val) if not result: break inc i result = result and (i == pr.len) elif T.hasCustomPragma(preservesOr): for kind in typeof(T.orKind): v = T(orKind: kind) var fieldWasFound = false for key, val in fieldPairs(v): when key != "orKind": # fieldPairs unwraps early result = fieldFromPreserve(key, v.dot(key), pr) fieldWasFound = true break if not fieldWasFound: # hopefully a `discard` of-branch, so discard `pr` result = true if result: break else: result = fromPreserveHook(v, pr) else: result = fromPreserveHook(v, pr) # the hook doesn't compile but produces a useful error if not result: trace T, " !- ", pr else: trace T, " <- ", pr proc preserveTo*(pr: Preserve; T: typedesc): Option[T] = ## Reverse of `toPreserve`. # TODO: {.raises: [].} runnableExamples: import std/options, preserves, preserves/parse type Foo {.preservesRecord: "foo".} = object x, y: int assert(parsePreserves("""""").preserveTo(Foo).isNone) assert(parsePreserves("""""").preserveTo(Foo).isNone) assert(parsePreserves("""""").preserveTo(Foo).isSome) var v: T if fromPreserve(v, pr): result = some(move v) proc fromPreserveHook*[T, E](set: var HashSet[T]; pr: Preserve[E]): bool = ## Hook for preserving ``HashSet``. if pr.kind == pkSet: result = true set.init(pr.set.len) var e: T for pe in pr.set: result = fromPreserve(e, pe) if not result: break set.incl(move e) proc fromPreserveHook*[A,B,E](t: var (Table[A,B]|TableRef[A,B]); pr: Preserve[E]): bool = if pr.isDictionary: result = true var a: A var b: B for (k, v) in pr.dict.items: result = fromPreserve(a, k) and fromPreserve(b, v) if not result: clear t break t[move a] = move b when isMainModule: var t: Table[int, string] var pr = t.toPreserveHook(void) assert fromPreserveHook(t, pr) proc mapEmbeds*(pr: sink Preserve[void]; E: typedesc): Preserve[E] = ## Convert `Preserve[void]` to `Preserve[E]` using `fromPreserve` for `E`. when E is void: {.error: "E cannot be void".} if pr.embedded: pr.embedded = false result = Preserve[E](kind: pkEmbedded) if not fromPreserve(result.embed, pr): raise newException(ValueError, "failed to convert " & $E & " from " & $pr) else: case pr.kind of pkBoolean, pkFloat, pkDouble, pkSignedInteger, pkBigInteger, pkString, pkByteString, pkSymbol: result = cast[Preserve[E]](pr) of pkRecord: result = Preserve[E](kind: pr.kind) result.record = map(pr.record) do (x: Preserve[void]) -> Preserve[E]: mapEmbeds(x, E) of pkSequence: result = Preserve[E](kind: pr.kind) result.sequence = map(pr.sequence) do (x: Preserve[void]) -> Preserve[E]: mapEmbeds(x, E) of pkSet: result = Preserve[E](kind: pr.kind) result.set = map(pr.set) do (x: Preserve[void]) -> Preserve[E]: mapEmbeds(x, E) of pkDictionary: result = Preserve[E](kind: pr.kind) result.dict = map(pr.dict) do (e: DictEntry[void]) -> DictEntry[E]: (mapEmbeds(e.key, E), mapEmbeds(e.val, E)) of pkEmbedded: assert false proc mapEmbeds*[A, B](pr: sink Preserve[A]; op: proc (v: A): B): Preserve[B] = ## Convert `Preserve[A]` to `Preserve[B]` using an `A → B` procedure. case pr.kind of pkBoolean, pkFloat, pkDouble, pkSignedInteger, pkBigInteger, pkString, pkByteString, pkSymbol: result = cast[Preserve[B]](pr) of pkRecord: result = Preserve[B](kind: pr.kind) result.record = map(pr.record) do (x: Preserve[A]) -> Preserve[B]: mapEmbeds(x, op) of pkSequence: result = Preserve[B](kind: pr.kind) result.sequence = map(pr.sequence) do (x: Preserve[A]) -> Preserve[B]: mapEmbeds(x, op) of pkSet: result = Preserve[B](kind: pr.kind) result.set = map(pr.set) do (x: Preserve[A]) -> Preserve[B]: mapEmbeds(x, op) of pkDictionary: result = Preserve[B](kind: pr.kind) result.dict = map(pr.dict) do (e: DictEntry[A]) -> DictEntry[B]: (mapEmbeds(e.key, op), mapEmbeds(e.val, op)) of pkEmbedded: result = embed op(pr.embed) proc concat[E](result: var string; pr: Preserve[E]) = if pr.embedded: result.add("#!") case pr.kind: of pkBoolean: case pr.bool of false: result.add "#f" of true: result.add "#t" of pkFloat: result.add($pr.float & "f") of pkDouble: result.add $pr.double of pkSignedInteger: result.add $pr.int of pkBigInteger: result.add $pr.bigint of pkString: result.add escapeJson(pr.string) of pkByteString: for b in pr.bytes: if b.char notin {'\20'..'\21', '#'..'[', ']'..'~'}: result.add("#[") #]# result.add(base64.encode(pr.bytes)) result.add(']') return result.add("#\"") result.add(cast[string](pr.bytes)) result.add('"') of pkSymbol: result.add(escapeJsonUnquoted(pr.symbol)) of pkRecord: assert(pr.record.len > 0) result.add('<') result.concat(pr.record[pr.record.high]) for i in 0..') of pkSequence: result.add('[') for i, val in pr.sequence: if i > 0: result.add(", ") result.concat(val) result.add(']') of pkSet: result.add("#{") for val in pr.set.items: result.concat(val) result.add(' ') if pr.set.len > 1: result.setLen(result.high) result.add('}') of pkDictionary: result.add('{') var i = 0 for (key, value) in pr.dict.items: if i > 0: result.add(' ') result.concat(key) result.add(": ") result.concat(value) if i < pr.dict.high: result.add(',') inc i result.add('}') of pkEmbedded: result.add("#!") result.add($pr.embed) proc `$`*(pr: Preserve): string = concat(result, pr) ## Generate the textual representation of ``pr``.