/* This tool terminates a named application from the command line Copyright (C) 2001 Free Software Foundation, Inc. Written by: Gregory Casamento 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 or write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #include #include 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... [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); }