mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
4547d513d1
When using the CLI tool (rather than a command using open(1)) it is now possible to open multiple repositores via the command-line.
52 lines
1.3 KiB
Plaintext
52 lines
1.3 KiB
Plaintext
//
|
|
// gitx.mm
|
|
// GitX
|
|
//
|
|
// Created by Ciarán Walsh on 15/08/2008.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import "PBCLIProxy.h"
|
|
|
|
NSDistantObject* connect()
|
|
{
|
|
id proxy = [NSConnection rootProxyForConnectionWithRegisteredName:ConnectionName host:nil];
|
|
[proxy setProtocolForProxy:@protocol(GitXCliToolProtocol)];
|
|
return proxy;
|
|
}
|
|
|
|
|
|
int main(int argc, const char* argv)
|
|
{
|
|
// Attempt to connect to the app
|
|
id proxy = connect();
|
|
|
|
if (!proxy) {
|
|
// If the connection failed, try to launch the app
|
|
[[NSWorkspace sharedWorkspace] launchApplication:@"GitX"];
|
|
|
|
// Now attempt to connect, allowing the app time to startup
|
|
for (int attempt = 0; proxy == nil && attempt < 50; ++attempt){
|
|
if (proxy = connect())
|
|
break;
|
|
usleep(15000);
|
|
}
|
|
}
|
|
if (!proxy) {
|
|
fprintf(stderr, "Couldn't connect to app server!\n");
|
|
exit(1);
|
|
}
|
|
|
|
if ([[[NSProcessInfo processInfo] environment] objectForKey:@"PWD"]) {
|
|
NSURL* url = [NSURL fileURLWithPath:[[[NSProcessInfo processInfo] environment] objectForKey:@"PWD"]];
|
|
NSError* error = nil;
|
|
if (![proxy openRepository:url error:&error]) {
|
|
fprintf(stderr, "Error opening repository at %s", [[url path] UTF8String]);
|
|
if (error) {
|
|
fprintf(stderr, ": %s", [[error localizedFailureReason] UTF8String]);
|
|
}
|
|
fprintf(stderr, "\n");
|
|
}
|
|
}
|
|
}
|