pygments.rb 0.3.2 → 0.3.3
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +6 -1
- data/lexers +0 -0
- data/lib/pygments/version.rb +1 -1
- data/vendor/pygments-main/AUTHORS +15 -0
- data/vendor/pygments-main/CHANGES +28 -1
- data/vendor/pygments-main/LICENSE +1 -1
- data/vendor/pygments-main/external/lasso-builtins-generator-9.lasso +121 -0
- data/vendor/pygments-main/pygments/cmdline.py +1 -1
- data/vendor/pygments-main/pygments/filters/__init__.py +0 -1
- data/vendor/pygments-main/pygments/formatters/_mapping.py +2 -2
- data/vendor/pygments-main/pygments/formatters/img.py +1 -1
- data/vendor/pygments-main/pygments/formatters/latex.py +8 -8
- data/vendor/pygments-main/pygments/formatters/other.py +0 -2
- data/vendor/pygments-main/pygments/lexers/_lassobuiltins.py +5413 -0
- data/vendor/pygments-main/pygments/lexers/_mapping.py +36 -11
- data/vendor/pygments-main/pygments/lexers/_openedgebuiltins.py +551 -0
- data/vendor/pygments-main/pygments/lexers/_postgres_builtins.py +0 -1
- data/vendor/pygments-main/pygments/lexers/_robotframeworklexer.py +546 -0
- data/vendor/pygments-main/pygments/lexers/_sourcemodbuiltins.py +1072 -0
- data/vendor/pygments-main/pygments/lexers/_stan_builtins.py +174 -0
- data/vendor/pygments-main/pygments/lexers/_vimbuiltins.py +13 -3
- data/vendor/pygments-main/pygments/lexers/agile.py +145 -33
- data/vendor/pygments-main/pygments/lexers/asm.py +2 -2
- data/vendor/pygments-main/pygments/lexers/compiled.py +328 -36
- data/vendor/pygments-main/pygments/lexers/dalvik.py +104 -0
- data/vendor/pygments-main/pygments/lexers/dotnet.py +8 -14
- data/vendor/pygments-main/pygments/lexers/functional.py +773 -8
- data/vendor/pygments-main/pygments/lexers/jvm.py +184 -36
- data/vendor/pygments-main/pygments/lexers/math.py +349 -23
- data/vendor/pygments-main/pygments/lexers/other.py +315 -492
- data/vendor/pygments-main/pygments/lexers/parsers.py +83 -1
- data/vendor/pygments-main/pygments/lexers/shell.py +4 -1
- data/vendor/pygments-main/pygments/lexers/templates.py +112 -2
- data/vendor/pygments-main/pygments/lexers/text.py +52 -3
- data/vendor/pygments-main/pygments/lexers/web.py +382 -36
- data/vendor/pygments-main/pygments/unistring.py +35 -25
- data/vendor/pygments-main/pygments/util.py +45 -0
- data/vendor/pygments-main/tests/examplefiles/Config.in.cache +1973 -0
- data/vendor/pygments-main/tests/examplefiles/example.Rd +78 -0
- data/vendor/pygments-main/tests/examplefiles/example.bug +54 -0
- data/vendor/pygments-main/tests/examplefiles/example.ceylon +33 -0
- data/vendor/pygments-main/tests/examplefiles/example.jag +48 -0
- data/vendor/pygments-main/tests/examplefiles/example.monkey +152 -0
- data/vendor/pygments-main/tests/examplefiles/example.msc +43 -0
- data/vendor/pygments-main/tests/examplefiles/example.reg +19 -0
- data/vendor/pygments-main/tests/examplefiles/example.rkt +95 -0
- data/vendor/pygments-main/tests/examplefiles/example.rpf +4 -0
- data/vendor/pygments-main/tests/examplefiles/example.stan +97 -0
- data/vendor/pygments-main/tests/examplefiles/example.xtend +34 -0
- data/vendor/pygments-main/tests/examplefiles/example2.msc +79 -0
- data/vendor/pygments-main/tests/examplefiles/garcia-wachs.kk +123 -0
- data/vendor/pygments-main/tests/examplefiles/hello.smali +40 -0
- data/vendor/pygments-main/tests/examplefiles/hello.sp +9 -0
- data/vendor/pygments-main/tests/examplefiles/http_request_example +2 -1
- data/vendor/pygments-main/tests/examplefiles/http_response_example +4 -2
- data/vendor/pygments-main/tests/examplefiles/inet_pton6.dg +71 -0
- data/vendor/pygments-main/tests/examplefiles/json.lasso +301 -0
- data/vendor/pygments-main/tests/examplefiles/json.lasso9 +213 -0
- data/vendor/pygments-main/tests/examplefiles/livescript-demo.ls +41 -0
- data/vendor/pygments-main/tests/examplefiles/matlab_sample +5 -2
- data/vendor/pygments-main/tests/examplefiles/metagrammar.treetop +455 -0
- data/vendor/pygments-main/tests/examplefiles/pytb_test3.pytb +4 -0
- data/vendor/pygments-main/tests/examplefiles/robotframework.txt +39 -0
- data/vendor/pygments-main/tests/examplefiles/rust_example.rs +743 -0
- data/vendor/pygments-main/tests/examplefiles/test.R +149 -115
- data/vendor/pygments-main/tests/examplefiles/test.cu +36 -0
- data/vendor/pygments-main/tests/test_basic_api.py +1 -1
- data/vendor/pygments-main/tests/test_util.py +18 -0
- metadata +34 -3
- data/vendor/pygments-main/REVISION +0 -1
@@ -0,0 +1,301 @@
|
|
1
|
+
<?LassoScript
|
2
|
+
|
3
|
+
//
|
4
|
+
// JSON Encoding and Decoding
|
5
|
+
//
|
6
|
+
// Copyright 2007-2012 LassoSoft Inc.
|
7
|
+
//
|
8
|
+
// <http://json.org/>
|
9
|
+
// <http://json-rpc.org/>
|
10
|
+
// <http://www.ietf.org/rfc/rfc4627.txt?number=4627>
|
11
|
+
//
|
12
|
+
|
13
|
+
If: (Lasso_TagExists: 'Encode_JSON') == False;
|
14
|
+
|
15
|
+
Define_Tag: 'JSON', -Namespace='Encode_', -Required='value', -Optional='options';
|
16
|
+
|
17
|
+
Local: 'escapes' = Map('\\' = '\\', '"' = '"', '\r' = 'r', '\n' = 'n', '\t' = 't', '\f' = 'f', '\b' = 'b');
|
18
|
+
Local: 'output' = '';
|
19
|
+
Local: 'newoptions' = (Array: -Internal);
|
20
|
+
If: !(Local_Defined: 'options') || (#options->(IsA: 'array') == False);
|
21
|
+
Local: 'options' = (Array);
|
22
|
+
/If;
|
23
|
+
If: (#options >> -UseNative) || (Params >> -UseNative);
|
24
|
+
#newoptions->(Insert: -UseNative);
|
25
|
+
/If;
|
26
|
+
If: (#options >> -NoNative) || (Params >> -NoNative);
|
27
|
+
#newoptions->(Insert: -NoNative);
|
28
|
+
/If;
|
29
|
+
If: (#options !>> -UseNative) && ((#value->(IsA: 'set')) || (#value->(IsA: 'list')) || (#value->(IsA: 'queue')) || (#value->(IsA: 'priorityqueue')) || (#value->(IsA: 'stack')));
|
30
|
+
#output += (Encode_JSON: Array->(insertfrom: #value->iterator) &, -Options=#newoptions);
|
31
|
+
Else: (#options !>> -UseNative) && (#value->(IsA: 'pair'));
|
32
|
+
#output += (Encode_JSON: (Array: #value->First, #value->Second));
|
33
|
+
Else: (#options !>> -Internal) && (#value->(Isa: 'array') == False) && (#value->(IsA: 'map') == False);
|
34
|
+
#output += '[' + (Encode_JSON: #value, -Options=#newoptions) + ']';
|
35
|
+
Else: (#value->(IsA: 'literal'));
|
36
|
+
#output += #value;
|
37
|
+
Else: (#value->(IsA: 'string'));
|
38
|
+
#output += '"';
|
39
|
+
Loop: (#value->Length);
|
40
|
+
Local('character' = #value->(Get: Loop_Count));
|
41
|
+
#output->(Append:
|
42
|
+
(Match_RegExp('[\\x{0020}-\\x{21}\\x{23}-\\x{5b}\\x{5d}-\\x{10fff}]') == #character) ? #character |
|
43
|
+
'\\' + (#escapes->(Contains: #character) ? #escapes->(Find: #character) | 'u' + String(Encode_Hex(#character))->PadLeading(4, '0')&)
|
44
|
+
);
|
45
|
+
/Loop;
|
46
|
+
#output += '"';
|
47
|
+
Else: (#value->(IsA: 'integer')) || (#value->(IsA: 'decimal')) || (#value->(IsA: 'boolean'));
|
48
|
+
#output += (String: #value);
|
49
|
+
Else: (#value->(IsA: 'null'));
|
50
|
+
#output += 'null';
|
51
|
+
Else: (#value->(IsA: 'date'));
|
52
|
+
If: #value->gmt;
|
53
|
+
#output += '"' + #value->(format: '%QT%TZ') + '"';
|
54
|
+
Else;
|
55
|
+
#output += '"' + #value->(format: '%QT%T') + '"';
|
56
|
+
/If;
|
57
|
+
Else: (#value->(IsA: 'array'));
|
58
|
+
#output += '[';
|
59
|
+
Iterate: #value, (Local: 'temp');
|
60
|
+
#output += (Encode_JSON: #temp, -Options=#newoptions);
|
61
|
+
If: #value->Size != Loop_Count;
|
62
|
+
#output += ', ';
|
63
|
+
/If;
|
64
|
+
/Iterate;
|
65
|
+
#output += ']';
|
66
|
+
Else: (#value->(IsA: 'object'));
|
67
|
+
#output += '{';
|
68
|
+
Iterate: #value, (Local: 'temp');
|
69
|
+
#output += #temp->First + ': ' + (Encode_JSON: #temp->Second, -Options=#newoptions);
|
70
|
+
If: (#value->Size != Loop_Count);
|
71
|
+
#output += ', ';
|
72
|
+
/If;
|
73
|
+
/Iterate;
|
74
|
+
#output += '}';
|
75
|
+
Else: (#value->(IsA: 'map'));
|
76
|
+
#output += '{';
|
77
|
+
Iterate: #value, (Local: 'temp');
|
78
|
+
#output += (Encode_JSON: #temp->First, -Options=#newoptions) + ': ' + (Encode_JSON: #temp->Second, -Options=#newoptions);
|
79
|
+
If: (#value->Size != Loop_Count);
|
80
|
+
#output += ', ';
|
81
|
+
/If;
|
82
|
+
/Iterate;
|
83
|
+
#output += '}';
|
84
|
+
Else: (#value->(IsA: 'client_ip')) || (#value->(IsA: 'client_address'));
|
85
|
+
#output += (Encode_JSON: (String: #value), -Options=#newoptions);
|
86
|
+
Else: (#options !>> -UseNative) && (#value->(IsA: 'set')) || (#value->(IsA: 'list')) || (#value->(IsA: 'queue')) || (#value->(IsA: 'priorityqueue')) || (#value->(IsA: 'stack'));
|
87
|
+
#output += (Encode_JSON: Array->(insertfrom: #value->iterator) &, -Options=#newoptions);
|
88
|
+
Else: (#options !>> -NoNative);
|
89
|
+
#output += (Encode_JSON: (Map: '__jsonclass__'=(Array:'deserialize',(Array:'<LassoNativeType>' + #value->Serialize + '</LassoNativeType>'))));
|
90
|
+
/If;
|
91
|
+
Return: @#output;
|
92
|
+
|
93
|
+
/Define_Tag;
|
94
|
+
|
95
|
+
/If;
|
96
|
+
|
97
|
+
If: (Lasso_TagExists: 'Decode_JSON') == False;
|
98
|
+
|
99
|
+
Define_Tag: 'JSON', -Namespace='Decode_', -Required='value';
|
100
|
+
|
101
|
+
(#value == '') ? Return: Null;
|
102
|
+
|
103
|
+
Define_Tag: 'consume_string', -Required='ibytes';
|
104
|
+
Local: 'unescapes' = (map: 34 = '"', 92 = '\\', 98 = '\b', 102 = '\f', 110 = '\n', 114 = '\r', 116 = '\t');
|
105
|
+
Local: 'temp' = 0, 'obytes' = Bytes;
|
106
|
+
While: ((#temp := #ibytes->export8bits) != 34); // '"'
|
107
|
+
If: (#temp === 92); // '\'
|
108
|
+
#temp = #ibytes->export8bits;
|
109
|
+
If: (#temp === 117); // 'u'
|
110
|
+
#obytes->(ImportString: (Decode_Hex: (String: #ibytes->(GetRange: #ibytes->Position + 1, 4)))->(ExportString: 'UTF-16'), 'UTF-8');
|
111
|
+
#ibytes->(SetPosition: #ibytes->Position + 4);
|
112
|
+
Else;
|
113
|
+
If: (#unescapes->(Contains: #temp));
|
114
|
+
#obytes->(ImportString: #unescapes->(Find: #temp), 'UTF-8');
|
115
|
+
Else;
|
116
|
+
#obytes->(Import8Bits: #temp);
|
117
|
+
/If;
|
118
|
+
/If;
|
119
|
+
Else;
|
120
|
+
#obytes->(Import8Bits: #temp);
|
121
|
+
/If;
|
122
|
+
/While;
|
123
|
+
Local('output' = #obytes->(ExportString: 'UTF-8'));
|
124
|
+
If: #output->(BeginsWith: '<LassoNativeType>') && #output->(EndsWith: '</LassoNativeType>');
|
125
|
+
Local: 'temp' = #output - '<LassoNativeType>' - '</LassoNativeType>';
|
126
|
+
Local: 'output' = null;
|
127
|
+
Protect;
|
128
|
+
#output->(Deserialize: #temp);
|
129
|
+
/Protect;
|
130
|
+
Else: (Valid_Date: #output, -Format='%QT%TZ');
|
131
|
+
Local: 'output' = (Date: #output, -Format='%QT%TZ');
|
132
|
+
Else: (Valid_Date: #output, -Format='%QT%T');
|
133
|
+
Local: 'output' = (Date: #output, -Format='%QT%T');
|
134
|
+
/If;
|
135
|
+
Return: @#output;
|
136
|
+
/Define_Tag;
|
137
|
+
|
138
|
+
Define_Tag: 'consume_token', -Required='ibytes', -required='temp';
|
139
|
+
Local: 'obytes' = bytes->(import8bits: #temp) &;
|
140
|
+
local: 'delimit' = (array: 9, 10, 13, 32, 44, 58, 93, 125); // \t\r\n ,:]}
|
141
|
+
While: (#delimit !>> (#temp := #ibytes->export8bits));
|
142
|
+
#obytes->(import8bits: #temp);
|
143
|
+
/While;
|
144
|
+
Local: 'output' = (String: #obytes);
|
145
|
+
If: (#output == 'true') || (#output == 'false');
|
146
|
+
Return: (Boolean: #output);
|
147
|
+
Else: (#output == 'null');
|
148
|
+
Return: Null;
|
149
|
+
Else: (String_IsNumeric: #output);
|
150
|
+
Return: (#output >> '.') ? (Decimal: #output) | (Integer: #output);
|
151
|
+
/If;
|
152
|
+
Return: @#output;
|
153
|
+
/Define_Tag;
|
154
|
+
|
155
|
+
Define_Tag: 'consume_array', -Required='ibytes';
|
156
|
+
Local: 'output' = array;
|
157
|
+
local: 'delimit' = (array: 9, 10, 13, 32, 44); // \t\r\n ,
|
158
|
+
local: 'temp' = 0;
|
159
|
+
While: ((#temp := #ibytes->export8bits) != 93); // ]
|
160
|
+
If: (#delimit >> #temp);
|
161
|
+
// Discard whitespace
|
162
|
+
Else: (#temp == 34); // "
|
163
|
+
#output->(insert: (consume_string: @#ibytes));
|
164
|
+
Else: (#temp == 91); // [
|
165
|
+
#output->(insert: (consume_array: @#ibytes));
|
166
|
+
Else: (#temp == 123); // {
|
167
|
+
#output->(insert: (consume_object: @#ibytes));
|
168
|
+
Else;
|
169
|
+
#output->(insert: (consume_token: @#ibytes, @#temp));
|
170
|
+
(#temp == 93) ? Loop_Abort;
|
171
|
+
/If;
|
172
|
+
/While;
|
173
|
+
Return: @#output;
|
174
|
+
/Define_Tag;
|
175
|
+
|
176
|
+
Define_Tag: 'consume_object', -Required='ibytes';
|
177
|
+
Local: 'output' = map;
|
178
|
+
local: 'delimit' = (array: 9, 10, 13, 32, 44); // \t\r\n ,
|
179
|
+
local: 'temp' = 0;
|
180
|
+
local: 'key' = null;
|
181
|
+
local: 'val' = null;
|
182
|
+
While: ((#temp := #ibytes->export8bits) != 125); // }
|
183
|
+
If: (#delimit >> #temp);
|
184
|
+
// Discard whitespace
|
185
|
+
Else: (#key !== null) && (#temp == 34); // "
|
186
|
+
#output->(insert: #key = (consume_string: @#ibytes));
|
187
|
+
#key = null;
|
188
|
+
Else: (#key !== null) && (#temp == 91); // [
|
189
|
+
#output->(insert: #key = (consume_array: @#ibytes));
|
190
|
+
#key = null;
|
191
|
+
Else: (#key !== null) && (#temp == 123); // {
|
192
|
+
#output->(insert: #key = (consume_object: @#ibytes));
|
193
|
+
#key = null;
|
194
|
+
Else: (#key !== null);
|
195
|
+
#output->(insert: #key = (consume_token: @#ibytes, @#temp));
|
196
|
+
(#temp == 125) ? Loop_abort;
|
197
|
+
#key = null;
|
198
|
+
Else;
|
199
|
+
#key = (consume_string: @#ibytes);
|
200
|
+
while(#delimit >> (#temp := #ibytes->export8bits));
|
201
|
+
/while;
|
202
|
+
#temp != 58 ? Loop_Abort;
|
203
|
+
/If;
|
204
|
+
/While;
|
205
|
+
If: (#output >> '__jsonclass__') && (#output->(Find: '__jsonclass__')->(isa: 'array')) && (#output->(Find: '__jsonclass__')->size >= 2) && (#output->(Find: '__jsonclass__')->First == 'deserialize');
|
206
|
+
Return: #output->(find: '__jsonclass__')->Second->First;
|
207
|
+
Else: (#output >> 'native') && (#output >> 'comment') && (#output->(find: 'comment') == 'http://www.lassosoft.com/json');
|
208
|
+
Return: #output->(find: 'native');
|
209
|
+
/If;
|
210
|
+
Return: @#output;
|
211
|
+
/Define_Tag;
|
212
|
+
|
213
|
+
Local: 'ibytes' = (bytes: #value);
|
214
|
+
Local: 'start' = 1;
|
215
|
+
#ibytes->removeLeading(BOM_UTF8);
|
216
|
+
Local: 'temp' = #ibytes->export8bits;
|
217
|
+
If: (#temp == 91); // [
|
218
|
+
Local: 'output' = (consume_array: @#ibytes);
|
219
|
+
Return: @#output;
|
220
|
+
Else: (#temp == 123); // {
|
221
|
+
Local: 'output' = (consume_object: @#ibytes);
|
222
|
+
Return: @#output;
|
223
|
+
/If;
|
224
|
+
|
225
|
+
/Define_Tag;
|
226
|
+
|
227
|
+
/If;
|
228
|
+
|
229
|
+
If: (Lasso_TagExists: 'Literal') == False;
|
230
|
+
|
231
|
+
Define_Type: 'Literal', 'String';
|
232
|
+
/Define_Type;
|
233
|
+
|
234
|
+
/If;
|
235
|
+
|
236
|
+
If: (Lasso_TagExists: 'Object') == False;
|
237
|
+
|
238
|
+
Define_Type: 'Object', 'Map';
|
239
|
+
/Define_Type;
|
240
|
+
|
241
|
+
/If;
|
242
|
+
|
243
|
+
If: (Lasso_TagExists: 'JSON_RPCCall') == False;
|
244
|
+
|
245
|
+
Define_Tag: 'RPCCall', -Namespace='JSON_',
|
246
|
+
-Required='method',
|
247
|
+
-Optional='params',
|
248
|
+
-Optional='id',
|
249
|
+
-Optional='host';
|
250
|
+
|
251
|
+
!(Local_Defined: 'host') ? Local: 'host' = 'http://localhost/lassoapps.8/rpc/rpc.lasso';
|
252
|
+
!(Local_Defined: 'id') ? Local: 'id' = Lasso_UniqueID;
|
253
|
+
Local: 'request' = (Map: 'method' = #method, 'params' = #params, 'id' = #id);
|
254
|
+
Local: 'request' = (Encode_JSON: #request);
|
255
|
+
Local: 'result' = (Include_URL: #host, -PostParams=#request);
|
256
|
+
Local: 'result' = (Decode_JSON: #result);
|
257
|
+
Return: @#result;
|
258
|
+
|
259
|
+
/Define_Tag;
|
260
|
+
|
261
|
+
/If;
|
262
|
+
|
263
|
+
If: (Lasso_TagExists: 'JSON_Records') == False;
|
264
|
+
|
265
|
+
Define_Tag: 'JSON_Records',
|
266
|
+
-Optional='KeyField',
|
267
|
+
-Optional='ReturnField',
|
268
|
+
-Optional='ExcludeField',
|
269
|
+
-Optional='Fields';
|
270
|
+
|
271
|
+
Local: '_fields' = (Local_Defined: 'fields') && #fields->(IsA: 'array') ? #fields | Field_Names;
|
272
|
+
Fail_If: #_fields->size == 0, -1, 'No fields found for [JSON_Records]';
|
273
|
+
Local: '_keyfield' = (Local: 'keyfield');
|
274
|
+
If: #_fields !>> #_keyfield;
|
275
|
+
Local: '_keyfield' = (KeyField_Name);
|
276
|
+
If: #_fields !>> #_keyfield;
|
277
|
+
Local: '_keyfield' = 'ID';
|
278
|
+
If: #_fields !>> #_keyfield;
|
279
|
+
Local: '_keyfield' = #_fields->First;
|
280
|
+
/If;
|
281
|
+
/If;
|
282
|
+
/If;
|
283
|
+
Local: '_index' = #_fields->(FindPosition: #_keyfield)->First;
|
284
|
+
Local: '_return' = (Local_Defined: 'returnfield') ? (Params->(Find: -ReturnField)->(ForEach: {Params->First = Params->First->Second; Return: True}) &) | @#_fields;
|
285
|
+
Local: '_exclude' = (Local_Defined: 'excludefield') ? (Params->(Find: -ExcludeField)->(ForEach: {Params->First = Params->First->Second; Return: True}) &) | Array;
|
286
|
+
Local: '_records' = Array;
|
287
|
+
Iterate: Records_Array, (Local: '_record');
|
288
|
+
Local: '_temp' = Map;
|
289
|
+
Iterate: #_fields, (Local: '_field');
|
290
|
+
((#_return >> #_field) && (#_exclude !>> #_field)) ? #_temp->Insert(#_field = #_record->(Get: Loop_Count));
|
291
|
+
/Iterate;
|
292
|
+
#_records->Insert(#_temp);
|
293
|
+
/Iterate;
|
294
|
+
Local: '_output' = (Encode_JSON: (Object: 'error_msg'=Error_Msg, 'error_code'=Error_Code, 'found_count'=Found_Count, 'keyfield'=#_keyfield, 'rows'=#_records));
|
295
|
+
Return: @#_output;
|
296
|
+
|
297
|
+
/Define_Tag;
|
298
|
+
|
299
|
+
/If;
|
300
|
+
|
301
|
+
?>
|
@@ -0,0 +1,213 @@
|
|
1
|
+
|
2
|
+
/**
|
3
|
+
trait_json_serialize
|
4
|
+
Objects with this trait will be assumed to convert to json data
|
5
|
+
when its ->asString method is called
|
6
|
+
*/
|
7
|
+
define trait_json_serialize => trait {
|
8
|
+
require asString()
|
9
|
+
}
|
10
|
+
|
11
|
+
define json_serialize(e::bytes)::string => ('"' + (string(#e)->Replace(`\`, `\\`) & Replace('\"', '\\"') & Replace('\r', '\\r') & Replace('\n', '\\n') & Replace('\t', '\\t') & Replace('\f', '\\f') & Replace('\b', '\\b') &) + '"')
|
12
|
+
define json_serialize(e::string)::string => ('"' + (string(#e)->Replace(`\`, `\\`) & Replace('\"', '\\"') & Replace('\r', '\\r') & Replace('\n', '\\n') & Replace('\t', '\\t') & Replace('\f', '\\f') & Replace('\b', '\\b') &) + '"')
|
13
|
+
define json_serialize(e::json_literal)::string => (#e->asstring)
|
14
|
+
define json_serialize(e::integer)::string => (#e->asstring)
|
15
|
+
define json_serialize(e::decimal)::string => (#e->asstring)
|
16
|
+
define json_serialize(e::boolean)::string => (#e->asstring)
|
17
|
+
define json_serialize(e::null)::string => ('null')
|
18
|
+
define json_serialize(e::date)::string => ('"' + #e->format(#e->gmt ? '%QT%TZ' | '%Q%T') + '"')
|
19
|
+
/*
|
20
|
+
define json_serialize(e::array)::string => {
|
21
|
+
local(output) = '';
|
22
|
+
local(delimit) = '';
|
23
|
+
#e->foreach => { #output += #delimit + json_serialize(#1); #delimit = ', '; }
|
24
|
+
return('[' + #output + ']');
|
25
|
+
}
|
26
|
+
define json_serialize(e::staticarray)::string => {
|
27
|
+
local(output) = '';
|
28
|
+
local(delimit) = '';
|
29
|
+
#e->foreach => { #output += #delimit + json_serialize(#1); #delimit = ', '; }
|
30
|
+
return('[' + #output + ']');
|
31
|
+
}
|
32
|
+
*/
|
33
|
+
define json_serialize(e::trait_forEach)::string => {
|
34
|
+
local(output) = '';
|
35
|
+
local(delimit) = '';
|
36
|
+
#e->foreach => { #output += #delimit + json_serialize(#1); #delimit = ', '; }
|
37
|
+
return('[' + #output + ']');
|
38
|
+
}
|
39
|
+
define json_serialize(e::map)::string => {
|
40
|
+
local(output = with pr in #e->eachPair
|
41
|
+
select json_serialize(#pr->first->asString) + ': ' + json_serialize(#pr->second))
|
42
|
+
return '{' + #output->join(',') + '}'
|
43
|
+
}
|
44
|
+
define json_serialize(e::json_object)::string => {
|
45
|
+
local(output) = '';
|
46
|
+
local(delimit) = '';
|
47
|
+
#e->foreachpair => { #output += #delimit + #1->first + ': ' + json_serialize(#1->second); #delimit = ', '; }
|
48
|
+
return('{' + #output + '}');
|
49
|
+
}
|
50
|
+
define json_serialize(e::trait_json_serialize) => #e->asString
|
51
|
+
define json_serialize(e::any)::string => json_serialize('<LassoNativeType>' + #e->serialize + '</LassoNativeType>')
|
52
|
+
|
53
|
+
// Bil Corry fixes for decoding json
|
54
|
+
define json_consume_string(ibytes::bytes) => {
|
55
|
+
local(obytes) = bytes;
|
56
|
+
local(temp) = 0;
|
57
|
+
while((#temp := #ibytes->export8bits) != 34);
|
58
|
+
#obytes->import8bits(#temp);
|
59
|
+
(#temp == 92) ? #obytes->import8bits(#ibytes->export8bits); // Escape \
|
60
|
+
/while;
|
61
|
+
local(output = string(#obytes)->unescape)
|
62
|
+
//Replace('\\"', '\"') & Replace('\\r', '\r') & Replace('\\n', '\n') & Replace('\\t', '\t') & Replace('\\f', '\f') & Replace('\\b', '\b') &;
|
63
|
+
if(#output->BeginsWith('<LassoNativeType>') && #output->EndsWith('</LassoNativeType>'));
|
64
|
+
Protect;
|
65
|
+
return serialization_reader(xml(#output - '<LassoNativeType>' - '</LassoNativeType>'))->read
|
66
|
+
/Protect;
|
67
|
+
else( (#output->size == 16 or #output->size == 15) and regexp(`\d{8}T\d{6}Z?`, '', #output)->matches)
|
68
|
+
return date(#output, -Format=#output->size == 16?`yyyyMMdd'T'HHmmssZ`|`yyyyMMdd'T'HHmmss`)
|
69
|
+
/if
|
70
|
+
return #output
|
71
|
+
}
|
72
|
+
|
73
|
+
// Bil Corry fix + Ke fix
|
74
|
+
define json_consume_token(ibytes::bytes, temp::integer) => {
|
75
|
+
|
76
|
+
local(obytes = bytes->import8bits(#temp) &,
|
77
|
+
delimit = array(9, 10, 13, 32, 44, 58, 93, 125)) // \t\r\n ,:]}
|
78
|
+
|
79
|
+
while(#delimit !>> (#temp := #ibytes->export8bits))
|
80
|
+
#obytes->import8bits(#temp)
|
81
|
+
/while
|
82
|
+
|
83
|
+
#temp == 125? // }
|
84
|
+
#ibytes->marker -= 1
|
85
|
+
//============================================================================
|
86
|
+
// Is also end of token if end of array[]
|
87
|
+
#temp == 93? // ]
|
88
|
+
#ibytes->marker -= 1
|
89
|
+
//............................................................................
|
90
|
+
|
91
|
+
local(output = string(#obytes))
|
92
|
+
#output == 'true'?
|
93
|
+
return true
|
94
|
+
#output == 'false'?
|
95
|
+
return false
|
96
|
+
#output == 'null'?
|
97
|
+
return null
|
98
|
+
string_IsNumeric(#output)?
|
99
|
+
return (#output >> '.')? decimal(#output) | integer(#output)
|
100
|
+
|
101
|
+
return #output
|
102
|
+
}
|
103
|
+
|
104
|
+
// Bil Corry fix
|
105
|
+
define json_consume_array(ibytes::bytes)::array => {
|
106
|
+
Local(output) = array;
|
107
|
+
local(delimit) = array( 9, 10, 13, 32, 44); // \t\r\n ,
|
108
|
+
local(temp) = 0;
|
109
|
+
While((#temp := #ibytes->export8bits) != 93); // ]
|
110
|
+
If(#delimit >> #temp);
|
111
|
+
// Discard whitespace
|
112
|
+
Else(#temp == 34); // "
|
113
|
+
#output->insert(json_consume_string(#ibytes));
|
114
|
+
Else(#temp == 91); // [
|
115
|
+
#output->insert(json_consume_array(#ibytes));
|
116
|
+
Else(#temp == 123); // {
|
117
|
+
#output->insert(json_consume_object(#ibytes));
|
118
|
+
Else;
|
119
|
+
#output->insert(json_consume_token(#ibytes, #temp));
|
120
|
+
(#temp == 93) ? Loop_Abort;
|
121
|
+
/If;
|
122
|
+
/While;
|
123
|
+
Return(#output);
|
124
|
+
}
|
125
|
+
|
126
|
+
// Bil Corry fix
|
127
|
+
define json_consume_object(ibytes::bytes)::map => {
|
128
|
+
Local('output' = map,
|
129
|
+
'delimit' = array( 9, 10, 13, 32, 44), // \t\r\n ,
|
130
|
+
'temp' = 0,
|
131
|
+
'key' = null,
|
132
|
+
'val' = null);
|
133
|
+
While((#temp := #ibytes->export8bits) != 125); // }
|
134
|
+
If(#delimit >> #temp);
|
135
|
+
// Discard whitespace
|
136
|
+
Else((#key !== null) && (#temp == 34)); // "
|
137
|
+
#output->insert(#key = json_consume_string(#ibytes));
|
138
|
+
#key = null;
|
139
|
+
Else((#key !== null) && (#temp == 91)); // [
|
140
|
+
#output->insert(#key = json_consume_array(#ibytes));
|
141
|
+
#key = null;
|
142
|
+
Else((#key !== null) && (#temp == 123)); // {
|
143
|
+
#output->insert(#key = json_consume_object(#ibytes));
|
144
|
+
#key = null;
|
145
|
+
Else((#key !== null));
|
146
|
+
#output->insert(#key = json_consume_token(#ibytes, #temp));
|
147
|
+
#key = null;
|
148
|
+
Else;
|
149
|
+
#key = json_consume_string(#ibytes);
|
150
|
+
while(#delimit >> (#temp := #ibytes->export8bits));
|
151
|
+
/while;
|
152
|
+
#temp != 58 ? Loop_Abort;
|
153
|
+
/If;
|
154
|
+
/While;
|
155
|
+
|
156
|
+
If((#output >> '__jsonclass__') && (#output->Find('__jsonclass__')->isa('array')) && (#output->Find('__jsonclass__')->size >= 2) && (#output->Find('__jsonclass__')->First == 'deserialize'));
|
157
|
+
Return(#output->find('__jsonclass__')->Second->First);
|
158
|
+
Else((#output >> 'native') && (#output >> 'comment') && (#output->find('comment') == 'http://www.lassosoft.com/json'));
|
159
|
+
Return(#output->find('native'));
|
160
|
+
/If;
|
161
|
+
Return(#output);
|
162
|
+
}
|
163
|
+
|
164
|
+
// Bil Corry fix + Ke fix
|
165
|
+
define json_deserialize(ibytes::bytes)::any => {
|
166
|
+
#ibytes->removeLeading(bom_utf8);
|
167
|
+
|
168
|
+
//============================================================================
|
169
|
+
// Reset marker on provided bytes
|
170
|
+
#ibytes->marker = 0
|
171
|
+
//............................................................................
|
172
|
+
|
173
|
+
Local(temp) = #ibytes->export8bits;
|
174
|
+
If(#temp == 91); // [
|
175
|
+
Return(json_consume_array(#ibytes));
|
176
|
+
Else(#temp == 123); // {
|
177
|
+
Return(json_consume_object(#ibytes));
|
178
|
+
else(#temp == 34) // "
|
179
|
+
return json_consume_string(#ibytes)
|
180
|
+
/If;
|
181
|
+
}
|
182
|
+
|
183
|
+
define json_deserialize(s::string) => json_deserialize(bytes(#s))
|
184
|
+
|
185
|
+
/**! json_literal - This is a subclass of String used for JSON encoding.
|
186
|
+
|
187
|
+
A json_literal works exactly like a string, but will be inserted directly
|
188
|
+
rather than being encoded into JSON. This allows JavaScript elements
|
189
|
+
like functions to be inserted into JSON objects. This is most useful
|
190
|
+
when the JSON object will be used within a JavaScript on the local page.
|
191
|
+
[Map: 'fn'=Literal('function(){ ...})] => {'fn': function(){ ...}}
|
192
|
+
**/
|
193
|
+
define json_literal => type {
|
194
|
+
parent string
|
195
|
+
}
|
196
|
+
|
197
|
+
/**! json_object - This is a subclass of Map used for JSON encoding.
|
198
|
+
|
199
|
+
An object works exactly like a map, but when it is encoded into JSON all
|
200
|
+
of the keys will be inserted literally. This makes it easy to create a
|
201
|
+
JavaScript object without extraneous quote marks.
|
202
|
+
Object('name'='value') => {name: "value"}
|
203
|
+
**/
|
204
|
+
define json_object => type {
|
205
|
+
parent map
|
206
|
+
public onCreate(...) => ..onCreate(:#rest or (:))
|
207
|
+
}
|
208
|
+
|
209
|
+
define json_rpccall(method::string, params=map, id='', host='') => {
|
210
|
+
#id == '' ? #host = Lasso_UniqueID;
|
211
|
+
#host == '' ? #host = 'http://localhost/lassoapps.8/rpc/rpc.lasso';
|
212
|
+
Return(Decode_JSON(Include_URL(#host, -PostParams=Encode_JSON(Map('method' = #method, 'params' = #params, 'id' = #id)))));
|
213
|
+
}
|