-
Notifications
You must be signed in to change notification settings - Fork 0
/
InputParser.m
209 lines (175 loc) · 5.49 KB
/
InputParser.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
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
//
// InputParser.m
//
// AquaLess - a less-compatible text pager for Mac OS X
// Copyright (c) 2003 Christoph Pfisterer
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//
#import "InputParser.h"
#import "PagerDocument.h"
#define CHUNKSIZE (10240)
static NSString *NextChunkNotification = @"InputParser Next Chunk Notification";
@implementation InputParser
+ (int)priority
{
return 0;
}
+ (NSString *)name
{
return @"-";
}
+ (BOOL)canReadData:(NSData *)partialData
{
return NO;
}
- (id)init
{
return [self initWithDocument:nil];
}
- (id)initWithDocument:(PagerDocument *)doc
{
if (self = [super init]) {
nextCheckpointOffset = lastCheckpointOffset = 0;
nextCheckpointPosition = lastCheckpointPosition = 0;
buffer = nil;
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(parseNextChunk:)
name:NextChunkNotification
object:self];
document = doc;
if (document != nil)
[self newData];
}
return self;
}
- (void)dealloc
{
[[NSNotificationCenter defaultCenter] removeObserver:self];
if (buffer != nil)
[buffer release];
[super dealloc];
}
- (PagerDocument *)document
{
return document;
}
- (void)setDocument:(PagerDocument *)doc
{
document = doc;
if (document != nil) {
lastCheckpointOffset = 0;
lastCheckpointPosition = 0;
[self newData];
}
}
- (void)newData
{
unsigned limit = lastCheckpointOffset + CHUNKSIZE;
[self parseWithLimit:limit];
}
- (void)parseNextChunk:(NSNotification *)notification
{
if (nextLimit)
[self parseWithLimit:nextLimit];
}
- (void)parseWithLimit:(unsigned)limit
{
// get data from document
NSData *data = [[self document] data];
unsigned endOffset = [data length];
// sanity checks
if (lastCheckpointOffset >= endOffset)
return; // nothing to do or illegal situation
if (limit < lastCheckpointOffset + CHUNKSIZE)
limit = lastCheckpointOffset + CHUNKSIZE;
// now both endOffset and limit are greater than lastCheckpointOffset
// determine range to parse and whether to iterate
if (endOffset > limit) {
nextLimit = limit + CHUNKSIZE; // important to use last limit, not last checkpoint!
endOffset = limit;
} else {
nextLimit = 0;
// endOffset is below limit, so we leave it untouched
}
// make sure buffer exists and is empty
if (buffer != nil) {
[[buffer mutableString] setString:@""];
} else {
buffer = [[NSMutableAttributedString alloc] init];
}
// run parser from last checkpoint
[self parseData:(NSData *)data fromOffset:lastCheckpointOffset toOffset:endOffset];
// add buffer to document's storage
NSTextStorage *storage = [[self document] storage];
[storage beginEditing];
unsigned currentLength = [storage length];
if (currentLength <= lastCheckpointPosition) {
[storage appendAttributedString:buffer];
} else {
[storage replaceCharactersInRange:NSMakeRange(lastCheckpointPosition,
currentLength - lastCheckpointPosition)
withAttributedString:buffer];
}
[storage endEditing];
// release buffer
[buffer release];
buffer = nil;
// remember the checkpoint
lastCheckpointOffset = nextCheckpointOffset;
lastCheckpointPosition = nextCheckpointPosition;
// resume later (at idle time)
if (nextLimit) {
NSNotification *note = [NSNotification notificationWithName:NextChunkNotification
object:self];
[[NSNotificationQueue defaultQueue]
enqueueNotification:note
postingStyle:NSPostWhenIdle
coalesceMask:NSNotificationCoalescingOnName | NSNotificationCoalescingOnSender
forModes:nil];
}
}
- (void)parseData:(NSData *)data fromOffset:(unsigned)startOffset toOffset:(unsigned)endOffset
{
// to be implemented by subclasses
}
- (void)addString:(NSString *)text withAttributes:(NSDictionary *)attr
{
unsigned from = [buffer length];
[[buffer mutableString] appendString:text];
[buffer setAttributes:attr range:NSMakeRange(from, [text length])];
}
- (void)addString:(NSString *)text withAttributes:(NSDictionary *)attr settingCheckpoint:(unsigned)offset
{
[self addString:text withAttributes:attr];
[self setCheckpoint:offset];
}
- (void)setCheckpoint:(unsigned)offset
{
// store info for next checkpoint (commited with endRun)
nextCheckpointOffset = offset;
nextCheckpointPosition = lastCheckpointPosition + [buffer length];
}
- (void)chomp
{
// remove one trailing linebreak if present (avoiding the extra empty line)
if (buffer != nil) {
unsigned len = [buffer length];
if (len > 0 && [[buffer mutableString] characterAtIndex:len-1] == '\n') {
[[buffer mutableString] deleteCharactersInRange:NSMakeRange(len-1,1)];
}
}
}
@end