forked from gavinkwoe/todparsekit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPKSymbolRootNode.m
147 lines (112 loc) · 4.27 KB
/
PKSymbolRootNode.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
//
// PKSymbolRootNode.m
// ParseKit
//
// Created by Todd Ditchendorf on 1/20/06.
// Copyright 2009 Todd Ditchendorf. All rights reserved.
//
#import <ParseKit/PKSymbolRootNode.h>
#import <ParseKit/PKReader.h>
@interface PKSymbolNode ()
@property (nonatomic, retain) NSMutableDictionary *children;
@end
@interface PKSymbolRootNode ()
- (void)addWithFirst:(PKUniChar)c rest:(NSString *)s parent:(PKSymbolNode *)p;
- (void)removeWithFirst:(PKUniChar)c rest:(NSString *)s parent:(PKSymbolNode *)p;
- (NSString *)nextWithFirst:(PKUniChar)c rest:(PKReader *)r parent:(PKSymbolNode *)p;
@end
@implementation PKSymbolRootNode
- (id)init {
self = [super initWithParent:nil character:PKEOF];
if (self) {
}
return self;
}
- (void)add:(NSString *)s {
NSParameterAssert(s);
if ([s length] < 2) return;
[self addWithFirst:[s characterAtIndex:0] rest:[s substringFromIndex:1] parent:self];
}
- (void)remove:(NSString *)s {
NSParameterAssert(s);
if ([s length] < 2) return;
[self removeWithFirst:[s characterAtIndex:0] rest:[s substringFromIndex:1] parent:self];
}
- (void)addWithFirst:(PKUniChar)c rest:(NSString *)s parent:(PKSymbolNode *)p {
NSParameterAssert(p);
NSNumber *key = [NSNumber numberWithInteger:c];
PKSymbolNode *child = [p.children objectForKey:key];
if (!child) {
child = [[PKSymbolNode alloc] initWithParent:p character:c];
[p.children setObject:child forKey:key];
[child release];
}
NSString *rest = nil;
if (0 == [s length]) {
return;
} else if ([s length] > 1) {
rest = [s substringFromIndex:1];
}
[self addWithFirst:[s characterAtIndex:0] rest:rest parent:child];
}
- (void)removeWithFirst:(PKUniChar)c rest:(NSString *)s parent:(PKSymbolNode *)p {
NSParameterAssert(p);
NSNumber *key = [NSNumber numberWithInteger:c];
PKSymbolNode *child = [p.children objectForKey:key];
if (child) {
NSString *rest = nil;
if (0 == [s length]) {
return;
} else if ([s length] > 1) {
rest = [s substringFromIndex:1];
[self removeWithFirst:[s characterAtIndex:0] rest:rest parent:child];
}
[p.children removeObjectForKey:key];
}
}
- (NSString *)nextSymbol:(PKReader *)r startingWith:(PKUniChar)cin {
NSParameterAssert(r);
return [self nextWithFirst:cin rest:r parent:self];
}
- (NSString *)nextWithFirst:(PKUniChar)c rest:(PKReader *)r parent:(PKSymbolNode *)p {
NSParameterAssert(p);
NSString *result = [NSString stringWithFormat:@"%C", c];
// this also works.
// NSString *result = [[[NSString alloc] initWithCharacters:(const unichar *)&c length:1] autorelease];
// none of these work.
//NSString *result = [[[NSString alloc] initWithBytes:&c length:1 encoding:NSUTF8StringEncoding] autorelease];
// NSLog(@"c: %d", c);
// NSLog(@"string for c: %@", result);
// NSString *chars = [[[NSString alloc] initWithCharacters:(const unichar *)&c length:1] autorelease];
// NSString *utfs = [[[NSString alloc] initWithUTF8String:(const char *)&c] autorelease];
// NSString *utf8 = [[[NSString alloc] initWithBytes:&c length:1 encoding:NSUTF8StringEncoding] autorelease];
// NSString *utf16 = [[[NSString alloc] initWithBytes:&c length:1 encoding:NSUTF16StringEncoding] autorelease];
// NSString *ascii = [[[NSString alloc] initWithBytes:&c length:1 encoding:NSASCIIStringEncoding] autorelease];
// NSString *iso = [[[NSString alloc] initWithBytes:&c length:1 encoding:NSISOLatin1StringEncoding] autorelease];
//
// NSLog(@"chars: '%@'", chars);
// NSLog(@"utfs: '%@'", utfs);
// NSLog(@"utf8: '%@'", utf8);
// NSLog(@"utf16: '%@'", utf16);
// NSLog(@"ascii: '%@'", ascii);
// NSLog(@"iso: '%@'", iso);
NSNumber *key = [NSNumber numberWithInteger:c];
PKSymbolNode *child = [p.children objectForKey:key];
if (!child) {
if (p == self) {
return result;
} else {
[r unread];
return @"";
}
}
c = [r read];
if (PKEOF == c) {
return result;
}
return [result stringByAppendingString:[self nextWithFirst:c rest:r parent:child]];
}
- (NSString *)description {
return @"<PKSymbolRootNode>";
}
@end