-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathTextFinder.m
360 lines (300 loc) · 15.4 KB
/
TextFinder.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
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
/*
TextFinder.m
Copyright (c) 1995-2002 by Apple Computer, Inc., all rights reserved.
Author: Ali Ozer
Find and replace functionality with a minimal panel...
Would be nice to have the buttons in the panel validate; this would allow the
replace buttons to become disabled for readonly docs
*/
/*
IMPORTANT: This Apple software is supplied to you by Apple Computer, Inc. ("Apple") in
consideration of your agreement to the following terms, and your use, installation,
modification or redistribution of this Apple software constitutes acceptance of these
terms. If you do not agree with these terms, please do not use, install, modify or
redistribute this Apple software.
In consideration of your agreement to abide by the following terms, and subject to these
terms, Apple grants you a personal, non-exclusive license, under Apple's copyrights in
this original Apple software (the "Apple Software"), to use, reproduce, modify and
redistribute the Apple Software, with or without modifications, in source and/or binary
forms; provided that if you redistribute the Apple Software in its entirety and without
modifications, you must retain this notice and the following text and disclaimers in all
such redistributions of the Apple Software. Neither the name, trademarks, service marks
or logos of Apple Computer, Inc. may be used to endorse or promote products derived from
the Apple Software without specific prior written permission from Apple. Except as expressly
stated in this notice, no other rights or licenses, express or implied, are granted by Apple
herein, including but not limited to any patent rights that may be infringed by your
derivative works or by other works in which the Apple Software may be incorporated.
The Apple Software is provided by Apple on an "AS IS" basis. APPLE MAKES NO WARRANTIES,
EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF NON-INFRINGEMENT,
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS
USE AND OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS.
IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE,
REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED AND
WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR
OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#import <Cocoa/Cocoa.h>
#import "TextFinder.h"
@interface NSString (NSStringTextFinding)
- (NSRange)findString:(NSString *)string selectedRange:(NSRange)selectedRange options:(unsigned)mask wrap:(BOOL)wrapFlag;
@end
@implementation TextFinder
static id sharedFindObject = nil;
+ (id)sharedInstance {
if (!sharedFindObject) {
[[self allocWithZone:[[NSApplication sharedApplication] zone]] init];
}
return sharedFindObject;
}
- (id)init {
if (sharedFindObject) {
[super dealloc];
return sharedFindObject;
}
if (!(self = [super init])) return nil;
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(appDidActivate:) name:NSApplicationDidBecomeActiveNotification object:[NSApplication sharedApplication]];
[self setFindString:@"" writeToPasteboard:NO];
[self loadFindStringFromPasteboard];
sharedFindObject = self;
return self;
}
- (void)appDidActivate:(NSNotification *)notification {
[self loadFindStringFromPasteboard];
}
- (void)loadFindStringFromPasteboard {
NSPasteboard *pasteboard = [NSPasteboard pasteboardWithName:NSFindPboard];
if ([[pasteboard types] containsObject:NSStringPboardType]) {
NSString *string = [pasteboard stringForType:NSStringPboardType];
if (string && [string length]) {
[self setFindString:string writeToPasteboard:NO];
}
}
}
- (void)loadFindStringToPasteboard {
NSPasteboard *pasteboard = [NSPasteboard pasteboardWithName:NSFindPboard];
[pasteboard declareTypes:[NSArray arrayWithObject:NSStringPboardType] owner:nil];
[pasteboard setString:[self findString] forType:NSStringPboardType];
}
- (void)loadUI {
if (!findTextField) {
if (![NSBundle loadNibNamed:@"FindPanel" owner:self]) {
NSLog(@"Failed to load FindPanel.nib");
NSBeep();
}
if (self == sharedFindObject) [[findTextField window] setFrameAutosaveName:@"Find"];
}
[findTextField setStringValue:[self findString]];
}
- (void)dealloc {
if (self != sharedFindObject) {
[[NSNotificationCenter defaultCenter] removeObserver:self];
[findString release];
[super dealloc];
}
}
- (NSString *)findString {
return findString;
}
- (void)setFindString:(NSString *)string {
[self setFindString:string writeToPasteboard:YES];
}
- (void)setFindString:(NSString *)string writeToPasteboard:(BOOL)flag {
if ([string isEqualToString:findString]) return;
[findString autorelease];
findString = [string copyWithZone:[self zone]];
if (findTextField) {
[findTextField setStringValue:string];
[findTextField selectText:nil];
}
if (flag) [self loadFindStringToPasteboard];
}
- (NSTextView *)textObjectToSearchIn {
id obj = [[NSApp mainWindow] firstResponder];
return (obj && [obj isKindOfClass:[NSTextView class]]) ? obj : nil;
}
- (NSPanel *)findPanel {
if (!findTextField) [self loadUI];
return (NSPanel *)[findTextField window];
}
/* The primitive for finding; this ends up setting the status field (and beeping if necessary)...
*/
- (BOOL)find:(BOOL)direction {
NSTextView *text = [self textObjectToSearchIn];
lastFindWasSuccessful = NO;
if (text) {
NSString *textContents = [text string];
unsigned textLength;
if (textContents && (textLength = [textContents length])) {
NSRange range;
unsigned options = 0;
if (direction == Backward) options |= NSBackwardsSearch;
if (!ignoreCaseButton || [ignoreCaseButton state]) options |= NSCaseInsensitiveSearch;
range = [textContents findString:[self findString] selectedRange:[text selectedRange] options:options wrap:YES];
if (range.length) {
[text setSelectedRange:range];
[text scrollRangeToVisible:range];
lastFindWasSuccessful = YES;
}
}
}
if (!lastFindWasSuccessful) {
NSBeep();
[statusField setStringValue:NSLocalizedStringFromTable(@"Not found", @"FindPanel", @"Status displayed in find panel when the find string is not found.")];
} else {
[statusField setStringValue:@""];
}
return lastFindWasSuccessful;
}
- (void)orderFrontFindPanel:(id)sender {
NSPanel *panel = [self findPanel];
[findTextField selectText:nil];
[panel makeKeyAndOrderFront:nil];
}
/**** Action methods for gadgets in the find panel; these should all end up setting or clearing the status field ****/
- (void)findNextAndOrderFindPanelOut:(id)sender {
[findNextButton performClick:nil];
if (lastFindWasSuccessful) {
[[self findPanel] orderOut:sender];
} else {
[findTextField selectText:nil];
}
}
- (void)findNext:(id)sender {
if (findTextField) [self setFindString:[findTextField stringValue]]; /* findTextField should be set */
(void)[self find:Forward];
}
- (void)findPrevious:(id)sender {
if (findTextField) [self setFindString:[findTextField stringValue]]; /* findTextField should be set */
(void)[self find:Backward];
}
- (void)replace:(id)sender {
NSTextView *text = [self textObjectToSearchIn];
// shouldChangeTextInRange:... should return NO if !isEditable, but doesn't...
if (text && [text isEditable] && [text shouldChangeTextInRange:[text selectedRange] replacementString:[replaceTextField stringValue]]) {
[[text textStorage] replaceCharactersInRange:[text selectedRange] withString:[replaceTextField stringValue]];
[text didChangeText];
} else {
NSBeep();
}
[statusField setStringValue:@""];
}
- (void)replaceAndFind:(id)sender {
[self replace:sender];
[self findNext:sender];
}
#define ReplaceAllScopeEntireFile 42
#define ReplaceAllScopeSelection 43
/* The replaceAll: code is somewhat complex. One reason for this is to support undo well --- To play along with the undo mechanism in the text object, this method goes through the shouldChangeTextInRange:replacementString: mechanism. In order to do that, it precomputes the section of the string that is being updated. An alternative would be for this method to handle the undo for the replaceAll: operation itself, and register the appropriate changes. However, this is simpler...
Turns out this approach of building the new string and inserting it at the appropriate place in the actual text storage also has an added benefit of performance; it avoids copying the contents of the string around on every replace, which is significant in large files with many replacements. Of course there is the added cost of the temporary replacement string, but we try to compute that as tightly as possible beforehand to reduce the memory requirements.
*/
- (void)replaceAll:(id)sender {
NSTextView *text = [self textObjectToSearchIn];
if (!text || ![text isEditable]) {
[statusField setStringValue:@""];
NSBeep();
} else {
NSTextStorage *textStorage = [text textStorage];
NSString *textContents = [text string];
BOOL entireFile = replaceAllScopeMatrix ? ([replaceAllScopeMatrix selectedTag] == ReplaceAllScopeEntireFile) : YES;
NSRange replaceRange = entireFile ? NSMakeRange(0, [textStorage length]) : [text selectedRange];
unsigned searchOption = ((!ignoreCaseButton || [ignoreCaseButton state]) ? NSCaseInsensitiveSearch : 0);
unsigned replaced = 0;
NSRange firstOccurence;
if (findTextField) [self setFindString:[findTextField stringValue]];
// Find the first occurence of the string being replaced; if not found, we're done!
firstOccurence = [textContents rangeOfString:[self findString] options:searchOption range:replaceRange];
if (firstOccurence.length > 0) {
NSAutoreleasePool *pool;
NSString *targetString = [self findString];
NSString *replaceString = [replaceTextField stringValue];
NSMutableAttributedString *temp; /* This is the temporary work string in which we will do the replacements... */
NSRange rangeInOriginalString; /* Range in the original string where we do the searches */
// Find the last occurence of the string and union it with the first occurence to compute the tightest range...
rangeInOriginalString = replaceRange = NSUnionRange(firstOccurence, [textContents rangeOfString:targetString options:NSBackwardsSearch|searchOption range:replaceRange]);
temp = [[NSMutableAttributedString alloc] init];
[temp beginEditing];
// The following loop can execute an unlimited number of times, and it could have autorelease activity.
// To keep things under control, we use a pool, but to be a bit efficient, instead of emptying everytime through
// the loop, we do it every so often. We can only do this as long as autoreleased items are not supposed to
// survive between the invocations of the pool!
pool = [[NSAutoreleasePool alloc] init];
while (rangeInOriginalString.length > 0) {
NSRange foundRange = [textContents rangeOfString:targetString options:searchOption range:rangeInOriginalString];
if (foundRange.length == 0) {
[temp appendAttributedString:[textStorage attributedSubstringFromRange:rangeInOriginalString]]; // Copy the remainder
rangeInOriginalString.length = 0; // And signal that we're done
} else {
NSRange rangeToCopy = NSMakeRange(rangeInOriginalString.location, foundRange.location - rangeInOriginalString.location + 1); // Copy upto the start of the found range plus one char (to maintain attributes with the overlap)...
[temp appendAttributedString:[textStorage attributedSubstringFromRange:rangeToCopy]];
[temp replaceCharactersInRange:NSMakeRange([temp length] - 1, 1) withString:replaceString];
rangeInOriginalString.length -= NSMaxRange(foundRange) - rangeInOriginalString.location;
rangeInOriginalString.location = NSMaxRange(foundRange);
replaced++;
if (replaced % 100 == 0) { // Refresh the pool... See warning above!
[pool release];
pool = [[NSAutoreleasePool alloc] init];
}
}
}
[pool release];
[temp endEditing];
// Now modify the original string
if ([text shouldChangeTextInRange:replaceRange replacementString:[temp string]]) {
[textStorage replaceCharactersInRange:replaceRange withAttributedString:temp];
[text didChangeText];
} else { // For some reason the string didn't want to be modified. Bizarre...
replaced = 0;
}
[temp release];
}
if (replaced == 0) {
NSBeep();
[statusField setStringValue:NSLocalizedStringFromTable(@"Not found", @"FindPanel", @"Status displayed in find panel when the find string is not found.")];
} else {
[statusField setStringValue:[NSString localizedStringWithFormat:NSLocalizedStringFromTable(@"%d replaced", @"FindPanel", @"Status displayed in find panel when indicated number of matches are replaced."), replaced]];
}
}
}
- (void)takeFindStringFromSelection:(id)sender {
NSTextView *textView = [self textObjectToSearchIn];
if (textView) {
NSString *selection = [[textView string] substringWithRange:[textView selectedRange]];
[self setFindString:selection];
}
}
- (void) jumpToSelection:sender {
NSTextView *textView = [self textObjectToSearchIn];
if (textView) {
[textView scrollRangeToVisible:[textView selectedRange]];
}
}
@end
@implementation NSString (NSStringTextFinding)
- (NSRange)findString:(NSString *)string selectedRange:(NSRange)selectedRange options:(unsigned)options wrap:(BOOL)wrap {
BOOL forwards = (options & NSBackwardsSearch) == 0;
unsigned length = [self length];
NSRange searchRange, range;
if (forwards) {
searchRange.location = NSMaxRange(selectedRange);
searchRange.length = length - searchRange.location;
range = [self rangeOfString:string options:options range:searchRange];
if ((range.length == 0) && wrap) { /* If not found look at the first part of the string */
searchRange.location = 0;
searchRange.length = selectedRange.location;
range = [self rangeOfString:string options:options range:searchRange];
}
} else {
searchRange.location = 0;
searchRange.length = selectedRange.location;
range = [self rangeOfString:string options:options range:searchRange];
if ((range.length == 0) && wrap) {
searchRange.location = NSMaxRange(selectedRange);
searchRange.length = length - searchRange.location;
range = [self rangeOfString:string options:options range:searchRange];
}
}
return range;
}
@end