libs-gui/Tools/gclose.m
Richard Frith-MacDonald 03a4a96a40 Update includes ... closer MacOS-X compatibility.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@25635 72102866-910b-0410-8b05-ffd578937521
2007-11-29 20:28:03 +00:00

109 lines
2.9 KiB
Objective-C

/* This tool terminates a named application from the command line
Copyright (C) 2001 Free Software Foundation, Inc.
Written by: Gregory Casamento <greg_casamento@yahoo.com>
Created: November 2001
This file is part of the GNUstep Project
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 3
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 library; see the file COPYING.
If not, see <http://www.gnu.org/licenses/> or write to the
Free Software Foundation, 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include <Foundation/NSArray.h>
#include <Foundation/NSConnection.h>
#include <Foundation/NSEnumerator.h>
#include <Foundation/NSHost.h>
#include <Foundation/NSString.h>
#include <Foundation/NSProcessInfo.h>
#include <Foundation/NSAutoreleasePool.h>
#include <Foundation/NSException.h>
#include <Foundation/NSUserDefaults.h>
#include <AppKit/NSApplication.h>
int
main(int argc, char** argv, char **env_c)
{
CREATE_AUTORELEASE_POOL(pool);
NSEnumerator *argEnumerator = nil;
NSString *arg = nil;
NSString *host = nil;
#ifdef GS_PASS_ARGUMENTS
[NSProcessInfo initializeWithArguments:argv count:argc environment:env_c];
#endif
argEnumerator = [[[NSProcessInfo processInfo] arguments] objectEnumerator];
host = [[NSUserDefaults standardUserDefaults] stringForKey: @"NSHost"];
[argEnumerator nextObject]; // skip the first element, which is empty.
while ((arg = [argEnumerator nextObject]) != nil)
{
if ([arg isEqualToString: @"-NSHost"])
{
// skip since this is handled above...
arg = [argEnumerator nextObject];
}
else // no option specified
{
NS_DURING
{
NSString *port;
id app;
if (host == nil)
{
host = @"";
}
else
{
NSHost *h = [NSHost hostWithName: host];
if ([h isEqual: [NSHost currentHost]] == YES)
{
host = @"";
}
}
port = [[arg lastPathComponent] stringByDeletingPathExtension];
/*
* Try to contact a running application.
*/
app = [NSConnection
rootProxyForConnectionWithRegisteredName: port host: host];
NS_DURING
{
[app terminate: nil];
}
NS_HANDLER
{
/* maybe it terminated. */
}
NS_ENDHANDLER
}
NS_HANDLER
{
NSLog(@"Exception while attempting to terminate %@ - %@: %@",
arg, [localException name], [localException reason]);
}
NS_ENDHANDLER
}
}
RELEASE(pool);
exit(EXIT_SUCCESS);
}