forked from gavinkwoe/todparsekit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJSONAssembler.m
163 lines (134 loc) · 5.95 KB
/
JSONAssembler.m
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
//
// JSONAssembler.m
// ParseKit
//
// Created by Todd Ditchendorf on 12/16/08.
// Copyright 2009 Todd Ditchendorf. All rights reserved.
//
#import "JSONAssembler.h"
#import "NSArray+ParseKitAdditions.h"
#import <ParseKit/ParseKit.h>
@implementation JSONAssembler
- (id)init {
self = [super init];
if (self != nil) {
NSColor *textColor = [NSColor whiteColor];
NSColor *tagColor = [NSColor colorWithDeviceRed:.70 green:.14 blue:.53 alpha:1.];
NSColor *attrNameColor = [NSColor colorWithDeviceRed:.33 green:.45 blue:.48 alpha:1.];
NSColor *attrValueColor = [NSColor colorWithDeviceRed:.77 green:.18 blue:.20 alpha:1.];
NSColor *commentColor = [NSColor colorWithDeviceRed:.24 green:.70 blue:.27 alpha:1.];
NSColor *piColor = [NSColor colorWithDeviceRed:.09 green:.62 blue:.74 alpha:1.];
NSFont *monacoFont = [NSFont fontWithName:@"Monaco" size:11.];
self.defaultAttrs = [NSDictionary dictionaryWithObjectsAndKeys:
textColor, NSForegroundColorAttributeName,
monacoFont, NSFontAttributeName,
nil];
self.objectAttrs = [NSDictionary dictionaryWithObjectsAndKeys:
tagColor, NSForegroundColorAttributeName,
monacoFont, NSFontAttributeName,
nil];
self.propertyNameAttrs = [NSDictionary dictionaryWithObjectsAndKeys:
attrNameColor, NSForegroundColorAttributeName,
monacoFont, NSFontAttributeName,
nil];
self.valueAttrs = [NSDictionary dictionaryWithObjectsAndKeys:
attrValueColor, NSForegroundColorAttributeName,
monacoFont, NSFontAttributeName,
nil];
self.constantAttrs = [NSDictionary dictionaryWithObjectsAndKeys:
piColor, NSForegroundColorAttributeName,
monacoFont, NSFontAttributeName,
nil];
self.arrayAttrs = [NSDictionary dictionaryWithObjectsAndKeys:
commentColor, NSForegroundColorAttributeName,
monacoFont, NSFontAttributeName,
nil];
self.displayString = [[[NSMutableAttributedString alloc] initWithString:@"" attributes:defaultAttrs] autorelease];
self.comma = [PKToken tokenWithTokenType:PKTokenTypeSymbol stringValue:@"," floatValue:0];
self.curly = [PKToken tokenWithTokenType:PKTokenTypeSymbol stringValue:@"{" floatValue:0];
self.bracket = [PKToken tokenWithTokenType:PKTokenTypeSymbol stringValue:@"[" floatValue:0];
}
return self;
}
- (void)dealloc {
self.displayString = nil;
self.defaultAttrs = nil;
self.objectAttrs = nil;
self.arrayAttrs = nil;
self.propertyNameAttrs = nil;
self.valueAttrs = nil;
self.constantAttrs = nil;
self.comma = nil;
self.curly = nil;
self.bracket = nil;
[super dealloc];
}
- (void)appendAttributedStringForObjects:(NSArray *)objs withAttrs:(id)attrs {
for (id obj in objs) {
NSAttributedString *as = [[NSAttributedString alloc] initWithString:[obj stringValue] attributes:attrs];
[displayString appendAttributedString:as];
[as release];
}
}
- (void)consumeWhitespaceFrom:(PKAssembly *)a {
NSMutableArray *whitespaceToks = [NSMutableArray array];
PKToken *tok = nil;
while (1) {
tok = [a pop];
if (PKTokenTypeWhitespace == tok.tokenType) {
[whitespaceToks addObject:tok];
} else {
[a push:tok];
break;
}
}
if ([whitespaceToks count]) {
whitespaceToks = [whitespaceToks reversedMutableArray];
[self appendAttributedStringForObjects:whitespaceToks withAttrs:defaultAttrs];
}
}
- (void)didMatchSymbolChar:(PKAssembly *)a {
NSArray *objs = [NSArray arrayWithObject:[a pop]];
[self consumeWhitespaceFrom:a];
[self appendAttributedStringForObjects:objs withAttrs:objectAttrs];
}
- (void)didMatchPropertyName:(PKAssembly *)a {
NSArray *objs = [NSArray arrayWithObject:[a pop]];
[self consumeWhitespaceFrom:a];
[self appendAttributedStringForObjects:objs withAttrs:propertyNameAttrs];
}
- (void)didMatchString:(PKAssembly *)a {
NSArray *objs = [NSArray arrayWithObject:[a pop]];
[self consumeWhitespaceFrom:a];
[self appendAttributedStringForObjects:objs withAttrs:arrayAttrs];
}
- (void)didMatchNumber:(PKAssembly *)a {
NSArray *objs = [NSArray arrayWithObject:[a pop]];
[self consumeWhitespaceFrom:a];
[self appendAttributedStringForObjects:objs withAttrs:valueAttrs];
}
- (void)didMatchConstant:(PKAssembly *)a {
NSArray *objs = [NSArray arrayWithObject:[a pop]];
[self consumeWhitespaceFrom:a];
[self appendAttributedStringForObjects:objs withAttrs:constantAttrs];
}
- (void)didMatchNull:(PKAssembly *)a { [self didMatchConstant:a]; }
- (void)didMatchTrue:(PKAssembly *)a { [self didMatchConstant:a]; }
- (void)didMatchFalse:(PKAssembly *)a { [self didMatchConstant:a]; }
- (void)didMatchColon:(PKAssembly *)a { [self didMatchSymbolChar:a]; }
- (void)didMatchComma:(PKAssembly *)a { [self didMatchSymbolChar:a]; }
- (void)didMatchOpenCurly:(PKAssembly *)a { [self didMatchSymbolChar:a]; }
- (void)didMatchCloseCurly:(PKAssembly *)a { [self didMatchSymbolChar:a]; }
- (void)didMatchOpenBracket:(PKAssembly *)a { [self didMatchSymbolChar:a]; }
- (void)didMatchCloseBracket:(PKAssembly *)a { [self didMatchSymbolChar:a]; }
@synthesize displayString;
@synthesize defaultAttrs;
@synthesize objectAttrs;
@synthesize arrayAttrs;
@synthesize propertyNameAttrs;
@synthesize valueAttrs;
@synthesize constantAttrs;
@synthesize comma;
@synthesize curly;
@synthesize bracket;
@end