-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsynhighlighterjson.pas
More file actions
574 lines (491 loc) · 13.6 KB
/
synhighlighterjson.pas
File metadata and controls
574 lines (491 loc) · 13.6 KB
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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
{-------------------------------------------------------------------------------
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
the specific language governing rights and limitations under the License.
The Original Code is: SynHighlighterJSON.pas, released 2015-01-14.
The Initial Author of this file is Christian-W. Budde.
All Rights Reserved.
Contributors to the SynEdit and mwEdit projects are listed in the
Contributors.txt file.
Alternatively, the contents of this file may be used under the terms of the
GNU General Public License Version 2 or later (the "GPL"), in which case
the provisions of the GPL are applicable instead of those above.
If you wish to allow use of your version of this file only under the terms
of the GPL and not to allow others to use your version of this file
under the MPL, indicate your decision by deleting the provisions above and
replace them with the notice and other provisions required by the GPL.
If you do not delete the provisions above, a recipient may use your version
of this file under either the MPL or the GPL.
You may retrieve the latest version of this file at the SynEdit home page,
located at http://SynEdit.SourceForge.net
}
Unit SynHighlighterJSON;
{$I SynDefines.inc}
Interface
Uses
Graphics,
SynEditTypes,
SynEditHighlighter,
Classes;
Type
TtkTokenKind = (tkString, tkReserved, tkNull, tkNumber, tkSpace,
tkSymbol, tkUnknown);
TRangeState = (rsUnknown, rsAttribute, rsObjectValue, rsArrayValue);
Type
{ TSynJSONSyn }
TSynJSONSyn = Class(TSynCustomHighLighter)
private
FRange: TRangeState;
fTokenPos: Integer;
FTokenID: TtkTokenKind;
FReservedAttri: TSynHighlighterAttributes;
FAttributeAttri: TSynHighlighterAttributes;
FValueAttri: TSynHighlighterAttributes;
FNumberAttri: TSynHighlighterAttributes;
FSpaceAttri: TSynHighlighterAttributes;
FSymbolAttri: TSynHighlighterAttributes;
Run: LongInt;
fLineRef: String;
fLine: PChar;
fLineNumber: Integer;
fLineLen: Integer;
Procedure CloseArrayProc;
Procedure CloseObjectProc;
Procedure ColonProc;
Procedure CommaProc;
Procedure CRProc;
Function IsLineEnd(_Run: Integer): Boolean;
Procedure LFProc;
Procedure NullProc;
Procedure NumberProc;
Procedure OpenArrayProc;
Procedure OpenObjectProc;
Procedure ReservedWordProc;
Procedure SpaceProc;
Procedure StringProc;
Procedure SymbolProc;
Procedure UnknownProc;
protected
Function GetSampleSource: String; override;
Function IsFilterStored: Boolean; override;
Procedure SetLine(Const NewValue: String; LineNumber: Integer); override;
public
Class Function GetLanguageName: String; override;
Class Function GetFriendlyLanguageName: String;
public
Constructor Create(AOwner: TComponent); override;
Function GetDefaultAttribute(Index: Integer): TSynHighlighterAttributes;
override;
Function GetEol: Boolean; override;
Function GetRange: Pointer; override;
Function GetToken: String; override;
Function GetTokenID: TtkTokenKind;
Function GetTokenAttribute: TSynHighlighterAttributes; override;
Function GetTokenKind: Integer; override;
Procedure Next; override;
Procedure SetRange(Value: Pointer); override;
Procedure ResetRange; override;
Procedure GetTokenEx(Out TokenStart: PChar; Out TokenLength: integer); override;
Function GetTokenPos: Integer; override;
published
Property AttributeAttri: TSynHighlighterAttributes read FAttributeAttri
write FAttributeAttri;
Property ReservedAttri: TSynHighlighterAttributes read FReservedAttri
write FReservedAttri;
Property NumberAttri: TSynHighlighterAttributes read FNumberAttri
write FNumberAttri;
Property SpaceAttri: TSynHighlighterAttributes read FSpaceAttri
write FSpaceAttri;
Property SymbolAttri: TSynHighlighterAttributes read FSymbolAttri
write FSymbolAttri;
Property ValueAttri: TSynHighlighterAttributes read FValueAttri
write FValueAttri;
End;
Implementation
Uses
SynEditStrConst,
SynEditStrConstExtra;
{ TSynJSONSyn }
Function TSynJSONSyn.IsLineEnd(_Run: Integer): Boolean;
Begin
Result := (_Run >= FLineLen) Or (FLine[_Run] = #10) Or (FLine[_Run] = #13);
End;
Constructor TSynJSONSyn.Create(AOwner: TComponent);
Begin
Inherited Create(AOwner);
//FCaseSensitive := True;
// Attribute
FAttributeAttri := TSynHighlighterAttributes.Create(SYNS_AttrAttributeName);
FAttributeAttri.Foreground := clNavy;
AddAttribute(FAttributeAttri);
// reserved words ("true", "false", "null")
FReservedAttri := TSynHighlighterAttributes.Create(SYNS_AttrReservedWord);
FReservedAttri.Style := [fsBold];
AddAttribute(FReservedAttri);
// numbers
FNumberAttri := TSynHighlighterAttributes.Create(SYNS_AttrNumber);
FNumberAttri.Foreground := clRed;
AddAttribute(FNumberAttri);
// spaces
FSpaceAttri := TSynHighlighterAttributes.Create(SYNS_AttrSpace);
AddAttribute(FSpaceAttri);
// symbols
FSymbolAttri := TSynHighlighterAttributes.Create(SYNS_AttrSymbol);
FSymbolAttri.Foreground := clGreen;
AddAttribute(FSymbolAttri);
// Value
FValueAttri := TSynHighlighterAttributes.Create(SYNS_AttrValue);
FValueAttri.Foreground := clBlue;
AddAttribute(FValueAttri);
SetAttributesOnChange(@DefHighlightChange);
FDefaultFilter := SYNS_FilterJSON;
FRange := rsUnknown;
End;
Procedure TSynJSONSyn.CloseArrayProc;
Begin
SymbolProc;
FRange := rsUnknown;
End;
Procedure TSynJSONSyn.CloseObjectProc;
Begin
SymbolProc;
FRange := rsUnknown;
End;
Procedure TSynJSONSyn.ColonProc;
Begin
SymbolProc;
FRange := rsObjectValue;
End;
Procedure TSynJSONSyn.CommaProc;
Begin
SymbolProc;
If FRange = rsObjectValue Then
FRange := rsAttribute;
End;
Procedure TSynJSONSyn.CRProc;
Begin
FTokenID := tkSpace;
Inc(Run);
If FLine[Run] = #10 Then Inc(Run);
End;
Procedure TSynJSONSyn.LFProc;
Begin
FTokenID := tkSpace;
Inc(Run);
End;
Procedure TSynJSONSyn.NullProc;
Begin
FTokenID := tkNull;
Inc(Run);
End;
Procedure TSynJSONSyn.NumberProc;
Function ExpectDigit: Boolean;
Begin
Result := FLine[Run] In ['0'..'9'];
While FLine[Run] In ['0'..'9'] Do
Inc(Run);
End;
Begin
FTokenID := tkNumber;
If FLine[Run] = '-' Then
Inc(Run);
// ensure that a zero is followed by a dot
If FLine[Run] = '0' Then
If FLine[Run + 1] <> '.' Then Begin
FTokenID := tkUnknown;
While (FLine[Run] <> #32) And Not IsLineEnd(Run) Do
Inc(Run);
Exit;
End;
// at least any digit must appear here
If Not ExpectDigit Then Begin
FTokenID := tkUnknown;
While (FLine[Run] <> #32) And Not IsLineEnd(Run) Do
Inc(Run);
Exit;
End;
// check for dot
If FLine[Run] = '.' Then Begin
// advance
Inc(Run);
// at least any digit must appear after a dot!
If Not ExpectDigit Then Begin
FTokenID := tkUnknown;
While (FLine[Run] <> #32) And Not IsLineEnd(Run) Do
Inc(Run);
Exit;
End;
End;
// check for an exponent
If FLine[Run] In ['e', 'E'] Then Begin
Inc(Run);
// allow +/- here
If (FLine[Run] In ['+', '-']) Then
Inc(Run);
// at least any digit must appear here
If Not ExpectDigit Then Begin
FTokenID := tkUnknown;
While (FLine[Run] <> #32) And Not IsLineEnd(Run) Do
Inc(Run);
Exit;
End;
End;
End;
Procedure TSynJSONSyn.OpenArrayProc;
Begin
SymbolProc;
FRange := rsArrayValue;
End;
Procedure TSynJSONSyn.OpenObjectProc;
Begin
SymbolProc;
FRange := rsAttribute;
End;
Procedure TSynJSONSyn.ReservedWordProc;
Procedure SkipToken;
Begin
While (FLine[Run] <> #32) And (FLine[Run] <> ',') And Not IsLineEnd(Run) Do
Inc(Run);
End;
Begin
FTokenID := tkUnknown;
Case FLine[Run] Of
'n':
If (FLine[Run + 1] = 'u') And
(FLine[Run + 2] = 'l') And
(FLine[Run + 3] = 'l') Then Begin
FTokenID := tkReserved;
Inc(Run, 4);
End
Else
SkipToken;
't':
If (FLine[Run + 1] = 'r') And
(FLine[Run + 2] = 'u') And
(FLine[Run + 3] = 'e') Then Begin
FTokenID := tkReserved;
Inc(Run, 4);
End
Else
SkipToken;
'f':
If (FLine[Run + 1] = 'a') And
(FLine[Run + 2] = 'l') And
(FLine[Run + 3] = 's') And
(FLine[Run + 4] = 'e') Then Begin
FTokenID := tkReserved;
Inc(Run, 5);
End
Else
SkipToken;
Else
SkipToken;
End;
End;
Procedure TSynJSONSyn.SpaceProc;
Begin
Inc(Run);
FTokenID := tkSpace;
While (FLine[Run] <= #32) And Not IsLineEnd(Run) Do
Inc(Run);
End;
Procedure TSynJSONSyn.StringProc;
Function IsHex(Digit: AnsiChar): Boolean; overload;
Begin
Result := (Digit In ['0'..'9', 'A'..'F', 'a'..'f']);
End;
Function IsHex(Digit: WideChar): Boolean; overload;
Begin
Result := (Digit In ['0'..'9', 'A'..'F', 'a'..'f']);
End;
Begin
FTokenID := tkString;
Repeat
Inc(Run);
Case FLine[Run] Of
'"': Begin
Inc(Run);
Break;
End;
'\':
Case FLine[Run + 1] Of
'"', '/', '\', 'b', 'f', 'n', 'r', 't':
Inc(Run);
'u': Begin
Inc(Run);
If Not (IsHex(FLine[Run + 1]) And IsHex(FLine[Run + 2]) And
IsHex(FLine[Run + 3]) And IsHex(FLine[Run + 4])) Then Begin
// a 4 hex digit is expected
FTokenID := tkUnknown;
While Not (FLine[Run] In [#32, '"']) And Not IsLineEnd(Run) Do
Inc(Run);
Exit;
End;
Inc(Run, 4);
End;
End;
End;
Until IsLineEnd(Run);
End;
Procedure TSynJSONSyn.SymbolProc;
Begin
Inc(Run);
FTokenID := tkSymbol;
End;
Procedure TSynJSONSyn.UnknownProc;
Begin
Inc(Run);
FTokenID := tkUnknown;
End;
Procedure TSynJSONSyn.SetLine(Const NewValue: String; LineNumber: Integer);
Begin
fLineRef := NewValue;
fLine := PChar(fLineRef);
fLineLen := Length(NewValue);
Run := 0;
fLineNumber := LineNumber;
Next;
End;
Procedure TSynJSONSyn.Next;
Begin
FTokenPos := Run;
Case FLine[Run] Of
#0: NullProc;
#1..#9, #11, #12, #14..#32: SpaceProc;
#10: LFProc;
#13: CRProc;
'0'..'9', '-': NumberProc;
't',
'f',
'n': ReservedWordProc;
'"': StringProc;
':': ColonProc;
'{': OpenObjectProc;
'[': OpenArrayProc;
'}': CloseObjectProc;
']': CloseArrayProc;
',': CommaProc;
Else
UnknownProc;
End;
End;
Function TSynJSONSyn.GetDefaultAttribute(Index: Integer): TSynHighlighterAttributes;
Begin
Case Index Of
SYN_ATTR_KEYWORD: Result := FReservedAttri;
SYN_ATTR_IDENTIFIER: Result := FAttributeAttri;
SYN_ATTR_WHITESPACE: Result := FSpaceAttri;
SYN_ATTR_SYMBOL: Result := FSymbolAttri;
SYN_ATTR_STRING: Result := FValueAttri;
Else
Result := Nil;
End;
End;
Function TSynJSONSyn.GetEol: Boolean;
Begin
Result := Run = FLineLen + 1;
End;
Function TSynJSONSyn.GetRange: Pointer;
Begin
Result := Pointer(PtrUInt(FRange));
End;
Function TSynJSONSyn.GetTokenID: TtkTokenKind;
Begin
Result := FTokenID;
End;
Function TSynJSONSyn.GetTokenAttribute: TSynHighlighterAttributes;
Begin
Case GetTokenID Of
tkString:
If FRange In [rsObjectValue, rsArrayValue] Then
Result := FValueAttri
Else
Result := FAttributeAttri;
tkReserved: Result := FReservedAttri;
tkNumber: Result := FNumberAttri;
tkSpace: Result := FSpaceAttri;
tkSymbol: Result := FSymbolAttri;
tkUnknown: Result := FAttributeAttri;
Else
Result := Nil;
End;
End;
Function TSynJSONSyn.GetTokenKind: Integer;
Begin
Result := Ord(FTokenID);
End;
Procedure TSynJSONSyn.ResetRange;
Begin
FRange := rsUnknown;
End;
Procedure TSynJSONSyn.SetRange(Value: Pointer);
Begin
FRange := TRangeState(UIntPtr(Value));
End;
Procedure TSynJSONSyn.GetTokenEx(Out TokenStart: PChar; Out TokenLength: integer);
Begin
TokenLength := Run - fTokenPos;
TokenStart := FLine + fTokenPos;
End;
Function TSynJSONSyn.GetTokenPos: Integer;
Begin
Result := fTokenPos;
End;
Function TSynJSONSyn.GetToken: String;
Var
Len: LongInt;
Begin
Len := Run - fTokenPos;
SetString(Result, (FLine + fTokenPos), Len);
End;
Function TSynJSONSyn.IsFilterStored: Boolean;
Begin
Result := FDefaultFilter <> SYNS_FilterJSON;
End;
Class Function TSynJSONSyn.GetLanguageName: String;
Begin
Result := SYNS_LangJSON;
End;
Function TSynJSONSyn.GetSampleSource: String;
Begin
Result :=
'{'#13#10 +
' "firstName": "John",'#13#10 +
' "lastName": "Smith",'#13#10 +
' "isAlive": true,'#13#10 +
' "age": 25,'#13#10 +
' "height_cm": 167.6,'#13#10 +
' "address": {'#13#10 +
' "streetAddress": "21 2nd Street",'#13#10 +
' "city": "New York",'#13#10 +
' "state": "NY",'#13#10 +
' "postalCode": "10021-3100"'#13#10 +
' },'#13#10 +
' "phoneNumbers": ['#13#10 +
' {'#13#10 +
' "type": "home",'#13#10 +
' "number": "212 555-1234"'#13#10 +
' },'#13#10 +
' {'#13#10 +
' "type": "office",'#13#10 +
' "number": "646 555-4567"'#13#10 +
' }'#13#10 +
' ],'#13#10 +
' "face": "\uD83D\uDE02",'#13#10 +
' "children": [],'#13#10 +
' "spouse": null'#13#10 +
'}';
End;
Class Function TSynJSONSyn.GetFriendlyLanguageName: String;
Begin
Result := SYNS_LangJSON;
End;
Initialization
{$IFNDEF SYN_CPPB_1}
RegisterPlaceableHighlighter(TSynJSONSyn);
{$ENDIF}
End.