-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEDjson2dpl.il
419 lines (366 loc) · 9.83 KB
/
EDjson2dpl.il
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
/*=============================================================================*
*
* EDdpl2json
*
* Purpose: Convert a JSON string in a disembodied property list (dpl)
*
* Author: Matthias Schweikardt
* Email: [email protected]
*
* Language: Cadence Skill
* Lint: IQ score is 96 (best is 100)
* {sklint ?file "EDjson2dpl.il"}
*
* Globals:
* - Symbols: None
* - Forms and Fields: None
* - Functions:
* o EDjson2dpl
* o _EDjson2dplHier
* o _EDjson2dplGoToNextNonWhitespace
* o _EDdpl2jsonGoToNext
* o _EDdpl2jsonExtractString
*
* Revision: 2022-11-22 Created
*
* Copyright 2023, Reutlingen University, Electronics & Drives
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*
*=============================================================================*/
;FUNCTION
; EDjson2dpl
;
;Description:
; Converts a syntax-conformal (!) JSON string in a disembodied property list (dpl)
; Any syntax errors in the string can lead to a corrupted dpl
;
;Parameters:
; json syntax-conformal (!) JSON string
;
;Return:
; dpl
;
(defun EDjson2dpl (json)
(let (dpl)
(setq dpl (car (_EDjson2dplHier (instring json))))
(unless (complexp dpl)
dpl
);unless
);let
);defun
;INTERNAL FUNCTION
; _EDjson2dplHier
;
;Description:
; Traverse an input stream (port) and identify the JSON-formatted data
;
;Parameters:
; port Input port
; ?nextChar Next character to be considered for parsing that was
; popped previously from the port
;
;Return:
; two-element list The first element corresponds to the identified data
; and the second element to a character that was popped
; previously from the port but must be considered in
; a following step
;
;
(defun _EDjson2dplHier (port @key (nextChar nil))
(let (char)
;use nextChar as current char when avail, search for next
;non-whitespace char otherwise
(setq
char
(if nextChar
nextChar
(_EDjson2dplGoToNextNonWhitespace port)
);if
);setq
(case char
; JSON symbol
(\{
(let (nextSymbol dpl key value)
(setq dpl (list nil))
(setq nextSymbol (quote \,))
(while
(and
(equal nextSymbol (quote \,))
(setq
nextSymbol
(_EDdpl2jsonGoToNext
port
(list
(quote \")
(quote \})
);list
);_EDdpl2jsonGoToNext
);setq
(equal nextSymbol (quote \"))
);and
(setq key (_EDdpl2jsonExtractString port))
(_EDdpl2jsonGoToNext
port
(list
(quote \:)
);list
);_EDdpl2jsonGoToNext
(setq value (_EDjson2dplHier port))
(if (nequal (car value) (quote unbound))
(unless (complexp (car value))
(putprop
dpl
(car value)
key
);putprop
);unless
(putprop
dpl
(quote unbound)
key
);putprop
);when
(setq nextSymbol (cadr value))
(unless
(or
(equal (cadr value) (quote \,))
(equal (cadr value) (quote \}))
);or
(setq
nextSymbol
(_EDdpl2jsonGoToNext
port
(list
(quote \,)
(quote \})
);list
);_EDdpl2jsonGoToNext
);setq
);unless
);while
(list dpl nil)
);let
)
; JSON array
(\[
(let (value retval nextSymbol)
(setq retval (tconc nil nil))
(setq nextSymbol (quote \,))
(while
(and
(equal nextSymbol (quote \,))
(setq nextSymbol (_EDjson2dplGoToNextNonWhitespace port))
(nequal nextSymbol (quote \]))
);and
(setq value (_EDjson2dplHier port ?nextChar nextSymbol))
(if (nequal (car value) (quote unbound))
(unless (complexp (car value))
(tconc
retval
(car value)
);tconc
);unless
(tconc
retval
(quote unbound)
);tconc
);when
(setq nextSymbol (cadr value))
(unless
(or
(equal (cadr value) (quote \,))
(equal (cadr value) (quote \]))
);or
(setq
nextSymbol
(_EDdpl2jsonGoToNext
port
(list
(quote \,)
(quote \])
);list
);_EDdpl2jsonGoToNext
);setq
);unless
);while
(list
(if (cdar retval)
(cdar retval)
;return complex number when array is empty to prevent that
;an empty list is identified as 'nil'
(complex 1)
);if
);list
);let
)
; JSON string
(\"
(list (_EDdpl2jsonExtractString port) nil)
)
; JSON false
(f
(when
(and
(equal (getc port) (quote a))
(equal (getc port) (quote l))
(equal (getc port) (quote s))
(equal (getc port) (quote e))
);and
(list nil nil)
);when
)
; JSON true
((quote t)
(when
(and
(equal (getc port) (quote r))
(equal (getc port) (quote u))
(equal (getc port) (quote e))
);and
(list t nil)
);when
)
; JSON null
(n
(when
(and
(equal (getc port) (quote u))
(equal (getc port) (quote l))
(equal (getc port) (quote l))
);and
(list (quote unbound) nil)
);when
)
; JSON number
(t
(let (num (accu (tconc nil nil)))
(tconc accu char)
(while
(and
(setq char (getc port))
(not
(or
(equal char (quote \ ))
(equal char (quote \t))
(equal char (quote \n))
(equal char (quote \,))
(equal char (quote \]))
);or
);not
);and
(tconc accu char)
);while
(setq
num
(buildString (mapcar (quote symbolToString) (cdar accu)) "")
);setq
(list
(if (zerop (difference (atoi num) (atof num)))
(atoi num)
(atof num)
);if
char
);list
);let
)
);case
);let
);defun _EDjson2dplHier
;INTERNAL FUNCTION
; _EDjson2dplGoToNextNonWhitespace
;
;Description:
; Goes to the next non-whitespace element in an input port and returns
; the (next non-whitespace) character
;
;Parameters:
; port Input port
;
;Return:
; next non-whitespace character
;
(defun _EDjson2dplGoToNextNonWhitespace (port)
(let (char)
(while
(and
(setq char (getc port))
(or
(equal char (quote \n))
(equal char (quote \t))
(equal char (quote \ ))
);or
);and
nil
);while
char
);let
);defun
;INTERNAL FUNCTION
; _EDdpl2jsonGoToNext
;
;Description:
; Goes to next position in input string for a list of possible characters
;
;Parameters:
; port Input port
; possibilities List of character where to stop
;
;Return:
; Next character that matches the possibilities list
;
(defun _EDdpl2jsonGoToNext (port possibilities)
(let (char)
(while
(and
(setq char (getc port))
(not (member char possibilities))
);and
nil
);while
char
);let
);defun _EDdpl2jsonGoToNext
;INTERNAL FUNCTION
; _EDdpl2jsonExtractString
;
;Description:
; Extract next string in an input port
;
;Parameters:
; port Input port
;
;Return:
; Next string
;
(defun _EDdpl2jsonExtractString (port)
(let (char (accu (tconc nil nil)))
(while
(and
(setq char (getc port))
(or
(nequal char (quote \"))
(equal (cadr accu) (quote \\))
);or
);and
(tconc accu char)
);while
(buildString (mapcar (quote symbolToString) (cdar accu)) "")
);let
);defun _EDdpl2jsonExtractString