blob: bedbc4aee331ac796bbcb7f6ea11d80df59a2a28 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
|
(define-library (zambyte meta json)
;; portable
(export json
define-json-record-type
json-ref
json-value?
json-key-not-found)
;; non-portable
(export json-object
json-list
json-null
json-object?
json-list?
json-null?
json-object-contains-key?
string->json
json->string
json-object-ref
json-object-set!
json-list-ref
json-list-length
json-object-map
json-list-map
json-object->alist
json-list->list)
(import (scheme base))
;; portable
(begin
(define-syntax json
(syntax-rules (object list null true false)
((_ (object (key . value) ...))
(json-object `(key . ,(json value)) ...))
((_ (list vs ...))
(json-list (json vs) ...))
((_ null) json-null)
((_ true) #t)
((_ false) #f)
((_ value)
(if (json-value? value)
value
(error "json: not a json value" value)))))
(define-syntax handle-field-declarations
(syntax-rules ()
((_ (field accessor))
(define (accessor obj)
(json-object-ref obj 'field)))
((_ (field accessor mutator))
(begin
(define (accessor obj)
(json-object-ref obj 'field))
(define (mutator obj value)
(json-object-set! (json-record->fields obj) 'field value))))))
(define-syntax get-accessor
(syntax-rules ()
((_ (field accessor rest ...))
`(field . ,accessor))))
(define-syntax get-mutator
(syntax-rules ()
((_ (field _ mutator))
`(field . ,mutator))
((_ (field _))
`(field . #f))))
(define-syntax define-json-record-type
(syntax-rules ()
((_ type
(constructor fields ...)
from-json-string
predicate
field-declarations ...)
(begin
(define (constructor fields ...)
(make-json-record 'type
(json-object `(fields . ,fields) ...)
from-json-string
(list (get-accessor field-declarations) ...)
(list (get-mutator field-declarations) ...)))
(define (predicate obj)
(cond
((json-record? obj) (eq? (json-record->name obj) 'type))
((json-object? obj) (and (json-object-contains-key? obj 'fields) ...))
(else #f)))
(define (from-json-string str)
(let ((json (string->json str)))
(parameterize ((json-key-not-found
(lambda ()
(error "key not found in json string when converting to a record" 'type))))
(constructor (json-object-ref json 'fields) ...))))
(handle-field-declarations field-declarations) ...))))
(define-record-type <json-record>
(make-json-record name fields from-json-string accessors mutators)
json-record?
(name json-record->name)
(fields json-record->fields)
(from-json-string json-record->from-json-string)
(accessors json-record->accessors)
(mutators json-record->mutators))
(define (json->typeless-json json)
(cond
((json-record? json)
(json->typeless-json (json-record->fields json)))
((json-object? json)
(json-object-map (lambda (k v) (values k (json->typeless-json v))) json))
((json-list? json)
(json-list-map (lambda (v) (json->typeless-json v)) json))
(else json)))
(define (json-ref json key . keys)
(let ((ref (cond ((json-object? json) json-object-ref)
((json-list? json) json-list-ref)
(else (error "json-ref: cannot get reference on json value" json)))))
(if (null? keys)
(ref json key)
(apply json-ref (ref json key) keys))))
(define (json-value? obj)
(or (boolean? obj)
(number? obj)
(string? obj)
(json-null? obj)
(json-list? obj)
(json-object? obj)))
(define json-key-not-found (make-parameter (lambda () (values)))))
;; non-portable
(cond-expand
((and (library (macduffie json)) (library (srfi 69)))
(include-library-declarations "macduffie.scm"))
((and guile (library (json)))
(import (only (guile) include-from-path import))
(begin (include-from-path "zambyte/meta/guile-json.scm")))
(gauche
(include-library-declarations "gauche.scm"))
(gerbil
(include-library-declarations "gerbil.scm"))
(sagittarius
(include-library-declarations "sagittarius.scm"))
((library (chibi json))
(include-library-declarations "chibi.scm"))
((library (srfi 180))
(include-library-declarations "180.scm"))
(else
(error "No implementation of JSON library available."))))
|