-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathDialog2.mm
71 lines (57 loc) · 1.79 KB
/
Dialog2.mm
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
//
// Dialog2.mm
// Dialog2
//
// Created by Ciaran Walsh on 19/11/2007.
//
#import "Dialog2.h"
#import "TMDCommand.h"
#import "CLIProxy.h"
@protocol TMPlugInController
- (CGFloat)version;
@end
@interface Dialog2 : NSObject <DialogServerProtocol>
@property (nonatomic) NSConnection* connection;
- (id)initWithPlugInController:(id <TMPlugInController>)aController;
@end
@implementation Dialog2
- (id)initWithPlugInController:(id <TMPlugInController>)aController
{
NSApp = NSApplication.sharedApplication;
if(self = [self init])
{
_connection = [NSConnection new];
[_connection setRootObject:self];
NSString* portName = [NSString stringWithFormat:@"%@.%d", kDialogServerConnectionName, getpid()];
if([_connection registerName:portName] == NO)
NSLog(@"couldn't setup dialog server."), NSBeep();
else if(NSString* path = [[NSBundle bundleForClass:[self class]] pathForResource:@"tm_dialog2" ofType:nil])
{
char* oldDialog = getenv("DIALOG");
if(oldDialog == NULL || ![@(oldDialog) isEqualToString:path])
{
if(oldDialog)
setenv("DIALOG_1", oldDialog, 1);
setenv("DIALOG", [path UTF8String], 1);
}
setenv("DIALOG_PORT_NAME", [portName UTF8String], 1);
}
}
return self;
}
- (void)dispatch:(id)options
{
CLIProxy* interface = [CLIProxy proxyWithOptions:options];
NSString* command = [interface numberOfArguments] <= 1 ? @"help" : [interface argumentAtIndex:1];
if(id target = [TMDCommand objectForCommand:command])
[target performSelector:@selector(handleCommand:) withObject:interface];
else [interface writeStringToError:@"unknown command, try help.\n"];
}
- (void)connectFromClientWithOptions:(id)options
{
[self performSelector:@selector(dispatch:) withObject:options afterDelay:0.0];
}
@end
/*
echo '{ menuItems = ({title = 'foo';});}' | "$DIALOG" menu
*/