source: trunk/ICeCoffEE/ICeCoffEE/ICeCoffEE.m@ 376

Last change on this file since 376 was 375, checked in by Nicholas Riley, 16 years ago

ICeCoffEE.[hm]: Restore ICCF_CheckRange, moved in [322], as we don't
want the range limited in TestParser.

ICeCoffEEParser.m: Remove ICCF_CheckRange. Comment out expandFront
URL/parens stuff; it's as yet untested. Handle {...} in URLs. Don't
assert when )/} is last character in string. Fix indentation.

ICeCoffEE.xcodeproj: Link TestParser to Cocoa normally. Remove
obsolete build settings.

TestParser.m: Stub out ICCF_CheckRange. Test beginning with
one-character ranges all the way through the string. Output summary
stats at end.

File size: 18.7 KB
Line 
1// ICeCoffEE - Internet Config Carbon/Cocoa Editor Extension
2// Nicholas Riley <mailto:icecoffee@sabi.net>
3
4#import "ICeCoffEE.h"
5#import <Carbon/Carbon.h>
6#include <unistd.h>
7#import "ICeCoffEESuper.h"
8#import "ICeCoffEEServices.h"
9#import "ICeCoffEETrigger.h"
10#import "ICeCoffEEParser.h"
11
12iccfPrefRec ICCF_prefs;
13
14NSString *ICCF_ErrString(OSStatus err, NSString *context) {
15 if (err == noErr || err == userCanceledErr) return nil;
16
17 NSString *errNum = [NSString stringWithFormat: @"%ld", err];
18 NSString *errDesc = ICCF_LocalizedString(errNum);
19
20 if (errDesc == NULL || errDesc == errNum)
21 errDesc = [NSString stringWithFormat: ICCF_LocalizedString(@"An unknown error occurred in %@"), context];
22
23 return [NSString stringWithFormat: @"%@ (%d)", errDesc, (int)err];
24}
25
26CFStringRef ICCF_CopyErrString(OSStatus err, CFStringRef context) {
27 if (err == noErr || err == userCanceledErr) return NULL;
28
29 CFStringRef errNum = CFStringCreateWithFormat(NULL, NULL, CFSTR("%ld"), err);
30 CFStringRef errDesc = ICCF_CopyLocalizedString(errNum);
31
32 if (errDesc == NULL || errDesc == errNum) {
33 CFStringRef errDescFormat = ICCF_CopyLocalizedString(CFSTR("An unknown error occurred in %@"));
34 if (errDesc != NULL) CFRelease(errDesc);
35 errDesc = CFStringCreateWithFormat(NULL, NULL, errDescFormat, context);
36 }
37
38 CFStringRef errStr = CFStringCreateWithFormat(NULL, NULL, CFSTR("%@ (%d)"), errDesc, (int)err);
39
40 if (errNum != NULL) CFRelease(errNum);
41 if (errDesc != NULL) CFRelease(errDesc);
42 return errStr;
43}
44
45CFStringRef ICCF_CopyAppName() {
46 ProcessSerialNumber psn = {0, kCurrentProcess};
47 CFStringRef appName = NULL;
48 CopyProcessName(&psn, &appName);
49 if (appName == NULL) return CFSTR("(unknown)");
50 return appName;
51}
52
53BOOL ICCF_EventIsCommandMouseDown(NSEvent *e) {
54 return ([e type] == NSLeftMouseDown && ([e modifierFlags] & NSCommandKeyMask) != 0 && [e clickCount] == 1);
55}
56
57iccfURLAction ICCF_KeyboardAction(NSEvent *e) {
58 unsigned int modifierFlags = [e modifierFlags];
59 iccfURLAction action;
60 action.presentMenu = (modifierFlags & NSAlternateKeyMask) != 0;
61 action.launchInBackground = (modifierFlags & NSShiftKeyMask) != 0;
62 return action;
63}
64
65// RFC-ordained max URL length, just to avoid passing IC/LS multi-megabyte documents
66#if ICCF_DEBUG
67static const long ICCF_MAX_URL_LEN = 120; // XXX change later
68#else
69static const long ICCF_MAX_URL_LEN = 1024;
70#endif
71
72void ICCF_CheckRange(NSRange range) {
73 NSCAssert(range.length > 0, ICCF_LocalizedString(@"No URL is selected"));
74 NSCAssert1(range.length <= ICCF_MAX_URL_LEN, ICCF_LocalizedString(@"The potential URL is longer than %lu characters"), ICCF_MAX_URL_LEN);
75}
76
77ConstStringPtr ICCF_GetHint(ICInstance inst, const char *urlData, Size length, long *selStart, long *selEnd, Boolean *needsSlashes) {
78 Handle h = NewHandle(0);
79 OSStatus err;
80
81 if (h == NULL) return NULL;
82
83 // parse the URL providing a bogus protocol, to get rid of escaped forms
84 err = ICParseURL(inst, "\p*", urlData, length, selStart, selEnd, h);
85 if (err != noErr) return NULL;
86
87 // scan through the parsed URL looking for characters not found in email addresses
88 Size hSize = GetHandleSize(h);
89 if (hSize == 0) return NULL;
90
91 const char *urlParsed = *h;
92 long i = 0;
93 Boolean sawAt = false;
94 if (hSize >= 2 && urlParsed[0] == '*' && urlParsed[1] == ':') {
95 // this is an IC-inserted protocol; skip over it
96 i = 2;
97 *needsSlashes = (hSize < i + 2 || urlParsed[i] != '/' || urlParsed[i + 1] != '/');
98 } else *needsSlashes = false;
99 for ( ; i < hSize ; i++) {
100 char c = urlParsed[i];
101 if (c == '@') {
102 sawAt = true;
103 } else if (!((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || (c >= '0' && c <= '9') ||
104 (c == '+' || c == '-' || c == '_' || c == '!' || c == '.'))) {
105 DisposeHandle(h);
106 return "\phttp";
107 }
108 }
109 DisposeHandle(h);
110 if (sawAt) {
111 *needsSlashes = false;
112 return "\pmailto";
113 }
114 return "\phttp";
115}
116
117static const char *kICSlashes = "//";
118
119void ICCF_AddSlashes(Handle h, ConstStringPtr hint) {
120 Size sizeBefore = GetHandleSize(h);
121 unsigned char hintLength = StrLength(hint);
122 char *copy = (char *)malloc(sizeBefore);
123 memcpy(copy, *h, sizeBefore);
124 ICLog(@"ICCF_AddSlashes before: |%s|\n", *h);
125 ReallocateHandle(h, sizeBefore + 2);
126
127 // if *h begins with '<hint>:', then copy the slashes after it
128 if (sizeBefore > hintLength + 1 && strncmp((const char *)&hint[1], copy, hintLength) == 0 && copy[hintLength] == ':') {
129 memcpy(*h, copy, hintLength + 1);
130 memcpy(*h + hintLength + 1, kICSlashes, 2);
131 memcpy(*h + hintLength + 3, &copy[hintLength + 1], sizeBefore - hintLength - 1);
132 } else {
133 memcpy(*h, kICSlashes, 2);
134 memcpy(*h + 2, copy, sizeBefore);
135 }
136
137 free(copy);
138 ICLog(@"ICCF_AddSlashes after: |%s|\n", *h);
139}
140
141BOOL ICCF_LaunchURL(NSString *string, iccfURLAction action) {
142 OSStatus err = noErr;
143 long selStart, selEnd;
144 NSMutableString *urlString = [[NSMutableString alloc] init];
145 NSCharacterSet *whitespace = [NSCharacterSet whitespaceAndNewlineCharacterSet];
146 NSScanner *scanner = [[NSScanner alloc] initWithString: string];
147 NSString *fragmentString;
148 while ([scanner scanUpToCharactersFromSet: whitespace intoString: &fragmentString]) {
149 [urlString appendString: fragmentString];
150 }
151 unsigned len = [urlString length];
152
153 Handle h = NULL;
154
155 NS_DURING
156 h = NewHandle(len);
157 if (h == NULL)
158 ICCF_OSErrCAssert(MemError(), @"NewHandle");
159
160 if (CFStringGetBytes((CFStringRef)urlString, CFRangeMake(0, len), kCFStringEncodingASCII, '\0', false, (UInt8 *)*h, len, NULL) != len)
161 ICCF_OSErrCAssert(kTECNoConversionPathErr, @"CFStringGetBytes");
162
163 selStart = 0; selEnd = len;
164
165 Boolean needsSlashes;
166 ConstStringPtr hint = ICCF_GetHint(ICCF_GetInst(), *h, len, &selStart, &selEnd, &needsSlashes);
167 NSCAssert(hint != NULL, @"Internal error: can't get protocol hint for URL");
168
169 if (needsSlashes) {
170 ICCF_AddSlashes(h, hint);
171 len = selEnd = GetHandleSize(h);
172 }
173
174 err = ICCF_DoURLAction(ICCF_GetInst(), hint, *h, selStart, selEnd, action);
175 ICCF_OSErrCAssert(err, @"ICCF_DoURLAction");
176
177 NS_HANDLER
178 DisposeHandle(h);
179 [urlString release];
180 [localException raise];
181 NS_ENDHANDLER
182
183 DisposeHandle(h);
184 [urlString release];
185
186 return (err == noErr);
187}
188
189// XXX not sure what to do if there's already a selection; BBEdit and MLTE extend it, Tex-Edit Plus doesn't.
190Boolean ICCF_enabled = true;
191
192BOOL ICCF_HandleException(NSException *e) {
193 if ([e reason] == nil || [[e reason] length] == 0)
194 return NO;
195
196 if (ICCF_prefs.errorSoundEnabled) NSBeep();
197 if (!ICCF_prefs.errorDialogEnabled) return YES;
198
199 int result = NSRunAlertPanel(ICCF_LocalizedString(@"AlertTitle"), ICCF_LocalizedString(@"AlertMessage%@"), nil, nil, ICCF_LocalizedString(@"AlertDisableButton"), e);
200 if (result != NSAlertDefaultReturn) {
201 result = NSRunAlertPanel(ICCF_LocalizedString(@"DisableAlertTitle"), ICCF_LocalizedString(@"DisableAlertMessage%@"), ICCF_LocalizedString(@"DisableAlertDisableButton"), ICCF_LocalizedString(@"DisableAlertDontDisableButton"), nil,
202 [(NSString *)ICCF_CopyAppName() autorelease]);
203 if (result == NSAlertDefaultReturn)
204 ICCF_enabled = NO;
205 }
206 return YES;
207}
208
209void ICCF_LaunchURLFromTextView(NSTextView *self, NSEvent *triggeringEvent) {
210 NSRange range = [self selectedRange];
211 NSColor *insertionPointColor = [self insertionPointColor];
212 NSString *s = [[self textStorage] string]; // according to the class documentation, sending 'string' is guaranteed to be O(1)
213 int i;
214
215 NS_DURING
216
217 NSCAssert(range.location != NSNotFound, ICCF_LocalizedString(@"There is no insertion point or selection in the text field where you clicked"));
218 NSCAssert(s != nil, ICCF_LocalizedString(@"Sorry, ICeCoffEE is unable to locate the insertion point or selection"));
219
220 ICCF_StartIC();
221
222 NSCAssert([s length] != 0, ICCF_LocalizedString(@"No text was found"));
223
224 if (range.location == [s length]) range.location--; // work around bug in selectionRangeForProposedRange (r. 2845418)
225
226 // XXX is this even worth it to get a starting range? Can just grab back and forth ICCF_MAX_URL_LEN (will need to remove some ICCF_CheckRange calls though)
227 range = [self selectionRangeForProposedRange: range granularity: NSSelectByWord];
228
229 // However, NSSelectByWord does not capture even the approximate boundaries of a URL
230 // (text to a space/line ending character); it'll stop at a period in the middle of a hostname.
231 // So, we expand it as follows:
232
233 range = ICCF_URLEnclosingRange(s, range);
234
235 [self setSelectedRange: range affinity: NSSelectionAffinityDownstream stillSelecting: NO];
236 [self display];
237
238 if (ICCF_LaunchURL([s substringWithRange: range], ICCF_KeyboardAction(triggeringEvent)) && ICCF_prefs.textBlinkEnabled) {
239 for (i = 0 ; i < ICCF_prefs.textBlinkCount ; i++) {
240 NSRange emptyRange = {range.location, 0};
241 [self setSelectedRange: emptyRange affinity: NSSelectionAffinityDownstream stillSelecting: YES];
242 [self display];
243 usleep(kICBlinkDelayUsecs);
244 [self setInsertionPointColor: [self backgroundColor]];
245 [self setSelectedRange: range affinity: NSSelectionAffinityDownstream stillSelecting: YES];
246 [self display];
247 usleep(kICBlinkDelayUsecs);
248 }
249 }
250
251 NS_HANDLER
252 ICCF_HandleException(localException);
253 NS_ENDHANDLER
254
255 ICCF_StopIC();
256 [self setInsertionPointColor: insertionPointColor];
257}
258
259NSString * const ICCF_SERVICES_ITEM = @"ICeCoffEE Services Item";
260
261NSMenuItem *ICCF_ServicesMenuItem() {
262 NSMenuItem *servicesItem;
263 NSString *servicesTitle = nil;
264 NSMenu *servicesMenu = [NSApp servicesMenu];
265
266 if (servicesMenu != nil) {
267 servicesTitle = [servicesMenu title];
268 if (servicesTitle == nil) {
269 ICLog(@"Can't get service menu title");
270 servicesTitle = @"Services";
271 }
272 } else {
273 servicesTitle = [[NSBundle bundleWithIdentifier: @"com.apple.AppKit"] localizedStringForKey: @"Services" value: nil table: @"ServicesMenu"];
274 if (servicesTitle == nil) {
275 ICLog(@"Can't get localized text for 'Services' in AppKit.framework");
276 servicesTitle = @"Services";
277 }
278 }
279 servicesMenu = [[NSMenu alloc] initWithTitle: servicesTitle];
280 servicesItem = [[NSMenuItem alloc] initWithTitle: servicesTitle action:nil keyEquivalent:@""];
281 ICCF_SetServicesMenu(servicesMenu);
282 [servicesItem setSubmenu: servicesMenu];
283 [servicesItem setRepresentedObject: ICCF_SERVICES_ITEM];
284 [servicesMenu release];
285 return [servicesItem autorelease];
286}
287
288static const unichar UNICHAR_BLACK_RIGHT_POINTING_SMALL_TRIANGLE = 0x25b8;
289
290// returns YES if menu contains useful items, NO otherwise
291static BOOL ICCF_ConsolidateServicesMenu(NSMenu *menu, NSDictionary *serviceOptions, NSDictionary *serviceInfo) {
292 [menu update]; // doesn't propagate to submenus, so we need to do this first
293 NSEnumerator *enumerator = [[menu itemArray] objectEnumerator];
294 NSMenuItem *menuItem;
295 NSMenu *submenu;
296 NSDictionary *itemOptions = nil, *itemInfo = nil;
297 BOOL shouldKeepItem = NO, shouldKeepMenu = NO;
298
299 while ( (menuItem = [enumerator nextObject]) != nil) {
300 if (serviceOptions != nil)
301 itemOptions = [serviceOptions objectForKey: [menuItem title]];
302 if (serviceInfo != nil)
303 itemInfo = [serviceInfo objectForKey: [menuItem title]];
304 if ([[itemOptions objectForKey: (NSString *)kICServiceHidden] boolValue]) {
305 shouldKeepItem = NO;
306 } else if ( (submenu = [menuItem submenu]) != nil) {
307 // XXX don't rely on nil-sending working
308 shouldKeepItem = ICCF_ConsolidateServicesMenu(submenu, [itemOptions objectForKey: (NSString *)kICServiceSubmenu], [itemInfo objectForKey: (NSString *)kICServiceSubmenu]);
309 if (shouldKeepItem && [submenu numberOfItems] == 1) { // consolidate
310 NSMenuItem *serviceItem = [[submenu itemAtIndex: 0] retain];
311 [serviceItem setTitle:
312 [NSString stringWithFormat: @"%@ %@ %@", [menuItem title], [NSString stringWithCharacters: &UNICHAR_BLACK_RIGHT_POINTING_SMALL_TRIANGLE length: 1], [serviceItem title]]];
313
314 int serviceIndex = [menu indexOfItem: menuItem];
315 [submenu removeItemAtIndex: 0]; // can't have item in two menus
316 [menu removeItemAtIndex: serviceIndex];
317 [menu insertItem: serviceItem atIndex: serviceIndex];
318 [serviceItem release];
319 menuItem = serviceItem;
320 }
321 } else {
322 [menuItem setKeyEquivalent: @""];
323 shouldKeepItem = [menuItem isEnabled];
324 }
325 if (!shouldKeepItem) {
326 [menu removeItem: menuItem];
327 continue;
328 }
329 shouldKeepMenu = YES;
330
331 if (itemInfo == nil) continue;
332 NSString *bundlePath = (NSString *)[itemInfo objectForKey: (NSString *)kICServiceBundlePath];
333 if (bundlePath == NULL) continue;
334 IconRef serviceIcon = ICCF_CopyIconRefForPath(bundlePath);
335 if (serviceIcon == NULL) continue;
336 [menuItem _setIconRef: serviceIcon];
337 ReleaseIconRef(serviceIcon);
338 }
339
340 return shouldKeepMenu;
341}
342
343NSMenuItem *ICCF_ContextualServicesMenuItem() {
344 NSMenuItem *servicesItem = ICCF_ServicesMenuItem();
345 NSDictionary *servicesInfo = ICCF_GetServicesInfo(); // XXX cache/retain
346 if (ICCF_ConsolidateServicesMenu([servicesItem submenu], (NSDictionary *)ICCF_prefs.serviceOptions, servicesInfo))
347 return servicesItem;
348 else
349 return nil;
350}
351
352void ICCF_AddRemoveServicesMenu() {
353 // needed because:
354 // (a) we get called before the runloop has properly started and will crash if we don't delay on app startup
355 // (b) the APE message handler calls us from another thread and nothing happens if we try to add a menu on it
356 [ICeCoffEE performSelectorOnMainThread: @selector(IC_addRemoveServicesMenu) withObject: nil waitUntilDone: NO];
357}
358
359NSMenu *ICCF_MenuForEvent(NSView *self, NSMenu *contextMenu, NSEvent *e) {
360 if (contextMenu != nil && [e type] == NSRightMouseDown || ([e type] == NSLeftMouseDown && [e modifierFlags] & NSControlKeyMask)) {
361 int servicesItemIndex = [contextMenu indexOfItemWithRepresentedObject: ICCF_SERVICES_ITEM];
362 // always regenerate: make sure menu reflects context
363 if (servicesItemIndex != -1) {
364 [contextMenu removeItemAtIndex: servicesItemIndex];
365 [contextMenu removeItemAtIndex: servicesItemIndex - 1];
366 }
367 if (ICCF_prefs.servicesInContextualMenu) {
368 NSMenuItem *contextualServicesItem = ICCF_ContextualServicesMenuItem();
369 if (contextualServicesItem != nil) {
370 [contextMenu addItem: [NSMenuItem separatorItem]];
371 [contextMenu addItem: contextualServicesItem];
372 }
373 }
374 }
375 return contextMenu;
376}
377
378static NSEvent *ICCF_MouseDownEventWithModifierFlags(NSEvent *e, BOOL inheritModifierFlags) {
379 return [NSEvent mouseEventWithType: NSLeftMouseDown
380 location: [e locationInWindow]
381 modifierFlags: (inheritModifierFlags ? [e modifierFlags] : 0)
382 timestamp: [e timestamp]
383 windowNumber: [e windowNumber]
384 context: [e context]
385 eventNumber: [e eventNumber]
386 clickCount: 1
387 pressure: 0];
388}
389
390
391@interface NSTextView (IC_NSSharing)
392// only in Mac OS X 10.4 and later
393- (NSArray *)selectedRanges;
394@end
395
396@implementation ICeCoffEE
397
398+ (void)IC_addRemoveServicesMenu;
399{
400 NSMenu *mainMenu = [[NSApplication sharedApplication] mainMenu];
401 static NSMenuItem *servicesItem = nil;
402
403 if (servicesItem == nil && ICCF_prefs.servicesInMenuBar) {
404 servicesItem = [ICCF_ServicesMenuItem() retain];
405
406 int insertLoc = [mainMenu indexOfItemWithSubmenu: [NSApp windowsMenu]];
407 if (insertLoc == -1)
408 insertLoc = [mainMenu numberOfItems];
409
410 [mainMenu insertItem: servicesItem atIndex: insertLoc];
411 } else if (servicesItem != nil && !ICCF_prefs.servicesInMenuBar) {
412 [mainMenu removeItem: servicesItem];
413 [servicesItem release];
414 servicesItem = nil;
415 }
416 if (floor(NSAppKitVersionNumber) <= NSAppKitVersionNumber10_3) {
417 [[NSApp servicesMenu] update]; // enable keyboard equivalents in Mac OS X 10.3
418 }
419}
420
421// XXX localization?
422- (NSMenu *)menuForEvent:(NSEvent *)e;
423{
424 NSMenu *myMenu = [super menuForEvent: e];
425 return ICCF_MenuForEvent(self, myMenu, e);
426}
427
428- (void)mouseDown:(NSEvent *)e;
429{
430#if ICCF_DEBUG
431 static BOOL down = NO;
432 if (down) {
433 ICLog(@"recursive invocation!");
434 return;
435 }
436 down = YES;
437 ICLog(@"ICeCoffEE down: %@", e);
438#endif
439 if (ICCF_sharedTrigger != nil) {
440 ICLog(@"%@ cancelling", ICCF_sharedTrigger);
441 [ICCF_sharedTrigger cancel];
442 }
443 if (ICCF_enabled && ICCF_prefs.commandClickEnabled && ICCF_EventIsCommandMouseDown(e)) {
444 BOOL inheritModifierFlags;
445 if ([self respondsToSelector: @selector(selectedRanges)]) {
446 // Command-multiple-click or -drag for discontiguous selection, Mac OS X 10.4 or later
447 inheritModifierFlags = YES;
448 } else {
449 // don't want to trigger selection extension or anything else; pass through as a plain click
450 // (on Mac OS X 10.3, command does not modify behavior)
451 inheritModifierFlags = NO;
452 }
453 [super mouseDown: ICCF_MouseDownEventWithModifierFlags(e, inheritModifierFlags)];
454 // we don't actually get a mouseUp event, just wait for mouseDown to return
455 NSEvent *upEvent = [[self window] currentEvent];
456 NSPoint downPt = [e locationInWindow];
457 NSPoint upPt = [upEvent locationInWindow];
458 ICLog(@"next: %@", upEvent);
459 NSAssert([upEvent type] == NSLeftMouseUp, @"NSTextView mouseDown: did not return with current event as mouse up!");
460 if (abs(downPt.x - upPt.x) <= kICHysteresisPixels && abs(downPt.y - upPt.y) <= kICHysteresisPixels) {
461 if (inheritModifierFlags) {
462 // Mac OS X 10.4 and later: make sure we don't have a command-double-click
463 [ICeCoffEETrigger setTriggerForEvent: e onTarget: self]; // gets stored in ICCF_sharedTrigger; the reason for this weird calling pattern is that we don't want to add methods to NSTextView, and we don't want to add a method call on every mouseDown
464 ICLog(@"%@ set", ICCF_sharedTrigger);
465 } else {
466 // Mac OS X 10.3
467 ICCF_LaunchURLFromTextView(self, e);
468 }
469 }
470 } else {
471 [super mouseDown: e];
472 }
473#if ICCF_DEBUG
474 down = NO;
475#endif
476}
477
478@end
Note: See TracBrowser for help on using the repository browser.