2001-12-17 16:51:51 +00:00
|
|
|
/** <title>NSWorkspace</title>
|
1996-05-30 20:03:15 +00:00
|
|
|
|
2001-12-17 16:51:51 +00:00
|
|
|
<abstract>Workspace class</abstract>
|
1996-05-30 20:03:15 +00:00
|
|
|
|
2001-11-26 20:29:42 +00:00
|
|
|
Copyright (C) 1996-1999, 2001 Free Software Foundation, Inc.
|
1996-05-30 20:03:15 +00:00
|
|
|
|
2001-12-17 16:51:51 +00:00
|
|
|
Author: Scott Christley <scottc@net-community.com>
|
1996-05-30 20:03:15 +00:00
|
|
|
Date: 1996
|
2002-01-22 18:23:56 +00:00
|
|
|
Implementation by: Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
1998-11-23 21:39:58 +00:00
|
|
|
Date: 1998
|
2002-01-22 18:23:56 +00:00
|
|
|
Implementation by: Fred Kiefer <FredKiefer@gmx.de>
|
2001-11-26 20:29:42 +00:00
|
|
|
Date: 2001
|
1996-05-30 20:03:15 +00:00
|
|
|
|
|
|
|
This file is part of the GNUstep GUI Library.
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Library General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This library 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
|
|
|
|
Library General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Library General Public
|
1996-10-18 17:14:13 +00:00
|
|
|
License along with this library; see the file COPYING.LIB.
|
|
|
|
If not, write to the Free Software Foundation,
|
2005-05-26 02:52:46 +00:00
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
1996-05-30 20:03:15 +00:00
|
|
|
*/
|
|
|
|
|
2003-07-31 23:52:10 +00:00
|
|
|
#include "config.h"
|
2005-06-06 19:40:48 +00:00
|
|
|
|
|
|
|
#if defined(HAVE_GETMNTENT) && defined (MNT_MEMB)
|
|
|
|
#if defined(HAVE_MNTENT_H)
|
|
|
|
#include <mntent.h>
|
|
|
|
#elif defined(HAVE_SYS_MNTENT_H)
|
|
|
|
#include <sys/mntent.h>
|
|
|
|
#else
|
|
|
|
#undef HAVE_GETMNTENT
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
1999-04-14 14:42:50 +00:00
|
|
|
#include <Foundation/NSBundle.h>
|
1998-11-23 21:39:58 +00:00
|
|
|
#include <Foundation/NSDictionary.h>
|
2002-01-10 16:33:39 +00:00
|
|
|
#include <Foundation/NSHost.h>
|
1998-11-23 21:39:58 +00:00
|
|
|
#include <Foundation/NSLock.h>
|
1999-01-07 15:52:42 +00:00
|
|
|
#include <Foundation/NSPathUtilities.h>
|
1998-11-23 21:39:58 +00:00
|
|
|
#include <Foundation/NSUserDefaults.h>
|
|
|
|
#include <Foundation/NSTask.h>
|
|
|
|
#include <Foundation/NSException.h>
|
1999-04-08 20:42:46 +00:00
|
|
|
#include <Foundation/NSFileManager.h>
|
1999-04-28 11:16:26 +00:00
|
|
|
#include <Foundation/NSNotificationQueue.h>
|
1999-10-12 14:33:55 +00:00
|
|
|
#include <Foundation/NSDistributedNotificationCenter.h>
|
1999-06-03 04:53:12 +00:00
|
|
|
#include <Foundation/NSConnection.h>
|
2001-07-30 21:30:51 +00:00
|
|
|
#include <Foundation/NSDebug.h>
|
2001-11-26 20:29:42 +00:00
|
|
|
#include <Foundation/NSURL.h>
|
2003-05-21 22:08:17 +00:00
|
|
|
#include <Foundation/NSValue.h>
|
2003-06-13 15:01:12 +00:00
|
|
|
#include "AppKit/NSWorkspace.h"
|
|
|
|
#include "AppKit/NSApplication.h"
|
|
|
|
#include "AppKit/NSImage.h"
|
|
|
|
#include "AppKit/NSView.h"
|
|
|
|
#include "AppKit/NSPanel.h"
|
|
|
|
#include "AppKit/NSWindow.h"
|
|
|
|
#include "AppKit/NSScreen.h"
|
2003-07-31 23:52:10 +00:00
|
|
|
#include "GNUstepGUI/GSServicesManager.h"
|
|
|
|
#include "GNUstepGUI/GSDisplayServer.h"
|
1996-05-30 20:03:15 +00:00
|
|
|
|
2000-04-07 23:49:10 +00:00
|
|
|
#define PosixExecutePermission (0111)
|
|
|
|
|
2003-05-11 11:00:04 +00:00
|
|
|
static NSImage *folderImage = nil;
|
|
|
|
static NSImage *homeImage = nil;
|
|
|
|
static NSImage *multipleFiles = nil;
|
|
|
|
static NSImage *rootImage = nil;
|
2003-05-11 14:41:32 +00:00
|
|
|
static NSImage *unknownApplication = nil;
|
|
|
|
static NSImage *unknownTool = nil;
|
2003-05-11 11:00:04 +00:00
|
|
|
|
|
|
|
|
1999-10-12 14:33:55 +00:00
|
|
|
static NSString *GSWorkspaceNotification = @"GSWorkspaceNotification";
|
|
|
|
|
|
|
|
@interface _GSWorkspaceCenter: NSNotificationCenter
|
|
|
|
{
|
|
|
|
NSDistributedNotificationCenter *remote;
|
|
|
|
}
|
|
|
|
- (void) _handleRemoteNotification: (NSNotification*)aNotification;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation _GSWorkspaceCenter
|
|
|
|
|
|
|
|
- (void) dealloc
|
|
|
|
{
|
|
|
|
[remote removeObserver: self name: nil object: GSWorkspaceNotification];
|
|
|
|
RELEASE(remote);
|
|
|
|
[super dealloc];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (id) init
|
|
|
|
{
|
|
|
|
self = [super init];
|
|
|
|
if (self != nil)
|
|
|
|
{
|
|
|
|
remote = RETAIN([NSDistributedNotificationCenter defaultCenter]);
|
2000-08-07 22:06:04 +00:00
|
|
|
NS_DURING
|
2002-01-10 16:33:39 +00:00
|
|
|
{
|
|
|
|
[remote addObserver: self
|
|
|
|
selector: @selector(_handleRemoteNotification:)
|
|
|
|
name: nil
|
|
|
|
object: GSWorkspaceNotification];
|
|
|
|
}
|
2000-08-07 22:06:04 +00:00
|
|
|
NS_HANDLER
|
2002-01-10 16:33:39 +00:00
|
|
|
{
|
|
|
|
NSUserDefaults *defs = [NSUserDefaults standardUserDefaults];
|
|
|
|
|
|
|
|
if ([defs boolForKey: @"GSLogWorkspaceTimeout"])
|
|
|
|
{
|
|
|
|
NSLog(@"NSWorkspace caught exception %@: %@",
|
2000-08-07 22:06:04 +00:00
|
|
|
[localException name], [localException reason]);
|
2002-01-10 16:33:39 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
[localException raise];
|
|
|
|
}
|
|
|
|
}
|
2000-08-07 22:06:04 +00:00
|
|
|
NS_ENDHANDLER
|
1999-10-12 14:33:55 +00:00
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1999-10-19 11:20:22 +00:00
|
|
|
* Post notification remotely - since we are listening for distributed
|
|
|
|
* notifications, we will observe the notification arriving from the
|
|
|
|
* distributed notification center, and it will get sent out locally too.
|
1999-10-12 14:33:55 +00:00
|
|
|
*/
|
|
|
|
- (void) postNotification: (NSNotification*)aNotification
|
|
|
|
{
|
|
|
|
NSNotification *rem;
|
|
|
|
|
|
|
|
rem = [NSNotification notificationWithName: [aNotification name]
|
|
|
|
object: GSWorkspaceNotification
|
|
|
|
userInfo: [aNotification userInfo]];
|
2000-08-07 22:06:04 +00:00
|
|
|
NS_DURING
|
2002-01-10 16:33:39 +00:00
|
|
|
{
|
|
|
|
[remote postNotification: rem];
|
|
|
|
}
|
2000-08-07 22:06:04 +00:00
|
|
|
NS_HANDLER
|
2002-01-10 16:33:39 +00:00
|
|
|
{
|
|
|
|
NSUserDefaults *defs = [NSUserDefaults standardUserDefaults];
|
|
|
|
|
|
|
|
if ([defs boolForKey: @"GSLogWorkspaceTimeout"])
|
|
|
|
{
|
|
|
|
NSLog(@"NSWorkspace caught exception %@: %@",
|
2000-08-07 22:06:04 +00:00
|
|
|
[localException name], [localException reason]);
|
2002-01-10 16:33:39 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
[localException raise];
|
|
|
|
}
|
|
|
|
}
|
2000-08-07 22:06:04 +00:00
|
|
|
NS_ENDHANDLER
|
1999-10-12 14:33:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void) postNotificationName: (NSString*)name
|
|
|
|
object: (id)object
|
|
|
|
{
|
|
|
|
[self postNotification: [NSNotification notificationWithName: name
|
|
|
|
object: object]];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) postNotificationName: (NSString*)name
|
|
|
|
object: (id)object
|
|
|
|
userInfo: (NSDictionary*)info
|
|
|
|
{
|
|
|
|
[self postNotification: [NSNotification notificationWithName: name
|
|
|
|
object: object
|
|
|
|
userInfo: info]];
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Forward a notification from a remote application to observers in this
|
|
|
|
* application.
|
|
|
|
*/
|
|
|
|
- (void) _handleRemoteNotification: (NSNotification*)aNotification
|
|
|
|
{
|
|
|
|
[super postNotification: aNotification];
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
1998-11-23 21:39:58 +00:00
|
|
|
|
2001-12-01 21:14:51 +00:00
|
|
|
@interface NSWorkspace (Private)
|
|
|
|
|
|
|
|
// Icon handling
|
2002-01-22 18:23:56 +00:00
|
|
|
- (NSImage*) _extIconForApp: (NSString*)appName info: (NSDictionary*)extInfo;
|
|
|
|
- (NSImage*) unknownFiletypeImage;
|
2003-09-01 16:58:54 +00:00
|
|
|
- (NSImage*) _saveImageFor: (NSString*)iconPath;
|
|
|
|
- (NSString*) thumbnailForFile: (NSString *)file;
|
2001-12-01 21:14:51 +00:00
|
|
|
- (NSImage*) _iconForExtension: (NSString*)ext;
|
|
|
|
- (BOOL) _extension: (NSString*)ext
|
|
|
|
role: (NSString*)role
|
2002-01-22 13:20:20 +00:00
|
|
|
app: (NSString**)app;
|
2001-12-01 21:14:51 +00:00
|
|
|
|
|
|
|
// application communication
|
2002-01-22 18:23:56 +00:00
|
|
|
- (BOOL) _launchApplication: (NSString*)appName
|
|
|
|
arguments: (NSArray*)args;
|
|
|
|
- (id) _connectApplication: (NSString*)appName;
|
2001-12-01 21:14:51 +00:00
|
|
|
- (id) _workspaceApplication;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2003-04-09 12:06:58 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* <p>The NSWorkspace class gathers together a large number of capabilities
|
|
|
|
* needed for workspace management.
|
|
|
|
* </p>
|
|
|
|
* <p>The make_services tool examines all applications (anything with a
|
|
|
|
* .app, .debug, or .profile suffix) in the system, local, and user Apps
|
|
|
|
* directories, and caches information about the services each app
|
|
|
|
* provides (extracted from the Info-gnustep.plist file in each application).
|
|
|
|
* </p>
|
|
|
|
* <p>In addition to the cache of services information, it builds a cache of
|
|
|
|
* information about all known applications (including information about file
|
|
|
|
* types they handle).
|
|
|
|
* </p>
|
|
|
|
* <p>NSWorkspace reads the cache and uses it to determine which application
|
|
|
|
* to use to open a document and which icon to use to represent that document.
|
|
|
|
* </p>
|
|
|
|
* <p>The NSWorkspace API has been extended to provide methods for
|
|
|
|
* finding/setting the preferred icon/application for a particular file
|
|
|
|
* type. NSWorkspace will use the 'best' icon/application available.
|
|
|
|
* </p>
|
|
|
|
* <p>To determine the executable to launch, if there was an
|
|
|
|
* Info-gnustep.plist/Info.plist in the app wrapper and it had an
|
|
|
|
* NSExecutable field - it uses that name. Otherwise, it tries to use
|
|
|
|
* the name of the app - eg. foo.app/foo <br />
|
|
|
|
* The executable is launched by NSTask, which handles the addition
|
|
|
|
* of machine/os/library path components as necessary.
|
|
|
|
* </p>
|
|
|
|
* <p>To determine the icon for a file, it uses the value from the
|
|
|
|
* cache of icons for the file extension, or use an 'unknown' icon.
|
|
|
|
* </p>
|
|
|
|
* <p>To determine the icon for a folder, if the folder has a '.app',
|
|
|
|
* '.debug' or '.profile' extension - the Info-gnustep.plist file
|
|
|
|
* is examined for an 'NSIcon' value and NSWorkspace tries to use that.
|
|
|
|
* If there is no value specified - it tries foo.app/foo.tiff' or
|
|
|
|
* 'foo.app/.dir.tiff'
|
|
|
|
* </p>
|
|
|
|
* <p>If the folder was not an application wrapper, it just tries
|
|
|
|
* the .dir.tiff file.
|
|
|
|
* </p>
|
|
|
|
* <p>If no icon was available, it uses a default folder icon or a
|
|
|
|
* special icon for the root directory.
|
|
|
|
* </p>
|
2003-04-09 13:32:16 +00:00
|
|
|
* <p>The information about what file types an app can handle needs
|
|
|
|
* to be stored in Info-gnustep.plist in an array keyed on the name
|
|
|
|
* <em>NSTypes</em>, within which each value is a dictionary.<br />
|
2003-04-09 12:06:58 +00:00
|
|
|
* </p>
|
|
|
|
* <p>In the NSTypes fields, NSWorkspace uses NSIcon (the icon to use
|
|
|
|
* for the type) NSUnixExtensions (a list of file extensions
|
|
|
|
* corresponding to the type) and NSRole (what the app can do with
|
2003-04-09 13:32:16 +00:00
|
|
|
* documents of this type <em>Editor</em>, <em>Viewer</em>,
|
|
|
|
* or <em>None</em>). In the AppList cache, make_services
|
2003-04-09 12:06:58 +00:00
|
|
|
* generates a dictionary, keyed by file extension, whose values are
|
|
|
|
* the dictionaries containing the NSTypes dictionaries of each
|
|
|
|
* of the apps that handle the extension. The NSWorkspace class
|
|
|
|
* makes use of this cache at runtime.
|
|
|
|
* </p>
|
|
|
|
* <p>If the Info-gnustep.plist of an application says that it
|
|
|
|
* can open files with a particular extension, then when NSWorkspace
|
|
|
|
* is asked to open such a file it will attempt to send an
|
|
|
|
* -application:openFile: message to the application (which must be
|
|
|
|
* handled by the applications delegate). If the application is not
|
|
|
|
* running, NSWorkspace will instead attempt to launch the application
|
2003-04-09 12:27:16 +00:00
|
|
|
* passing the filename to open after a '-GSFilePath' flag
|
2003-04-09 13:32:16 +00:00
|
|
|
* in the command line arguments. For a GNUstep application, the
|
|
|
|
* application will recognize this and invoke the -application:openFile:
|
|
|
|
* method passing it the file name.
|
2003-04-09 12:06:58 +00:00
|
|
|
* </p>
|
|
|
|
* <p>This command line argument mechanism provides a way for non-gnustep
|
|
|
|
* applications to be used to open files simply by provideing a wrapper
|
|
|
|
* for them containing the appropriate Info-gnustep.plist.<br />
|
|
|
|
* For instance - you could set up xv.app to contain a shellscript 'xv'
|
|
|
|
* that would start the real xv binary passing it a file to open if the
|
2003-04-09 12:27:16 +00:00
|
|
|
* '-GSFilePath' argument was given. The Info-gnustep.plist file could look
|
2003-04-09 12:06:58 +00:00
|
|
|
* like this:
|
|
|
|
* </p>
|
|
|
|
* <example>
|
|
|
|
*
|
|
|
|
* {
|
|
|
|
* NSExecutable = "xv";
|
|
|
|
* NSIcon = "xv.tiff";
|
|
|
|
* NSTypes = (
|
|
|
|
* {
|
|
|
|
* NSIcon = "tiff.tiff";
|
|
|
|
* NSUnixExtensions = ( tiff, tif );
|
|
|
|
* },
|
|
|
|
* {
|
|
|
|
* NSIcon = "xbm.tiff";
|
|
|
|
* NSUnixExtensions = ( xbm );
|
|
|
|
* }
|
|
|
|
* );
|
|
|
|
* }
|
|
|
|
* </example>
|
|
|
|
*/
|
1998-11-23 21:39:58 +00:00
|
|
|
@implementation NSWorkspace
|
|
|
|
|
1999-04-08 20:42:46 +00:00
|
|
|
static NSWorkspace *sharedWorkspace = nil;
|
1998-11-23 21:39:58 +00:00
|
|
|
|
1999-04-08 20:42:46 +00:00
|
|
|
static NSString *appListPath = nil;
|
1999-04-28 11:16:26 +00:00
|
|
|
static NSDictionary *applications = nil;
|
1999-04-24 11:41:41 +00:00
|
|
|
|
1999-04-28 11:16:26 +00:00
|
|
|
static NSString *extPrefPath = nil;
|
|
|
|
static NSDictionary *extPreferences = nil;
|
2001-12-01 21:14:51 +00:00
|
|
|
// FIXME: Won't work for MINGW
|
1999-04-28 11:16:26 +00:00
|
|
|
static NSString *_rootPath = @"/";
|
1996-05-30 20:03:15 +00:00
|
|
|
|
1999-09-01 11:15:27 +00:00
|
|
|
/*
|
|
|
|
* Class methods
|
|
|
|
*/
|
1999-04-08 20:42:46 +00:00
|
|
|
+ (void) initialize
|
1996-05-30 20:03:15 +00:00
|
|
|
{
|
|
|
|
if (self == [NSWorkspace class])
|
|
|
|
{
|
2001-12-01 21:14:51 +00:00
|
|
|
static BOOL beenHere = NO;
|
1999-04-28 14:22:19 +00:00
|
|
|
NSFileManager *mgr = [NSFileManager defaultManager];
|
2001-12-01 21:14:51 +00:00
|
|
|
NSString *service;
|
1999-04-28 11:16:26 +00:00
|
|
|
NSData *data;
|
|
|
|
NSDictionary *dict;
|
1998-11-23 21:39:58 +00:00
|
|
|
|
1999-04-08 20:42:46 +00:00
|
|
|
[self setVersion: 1];
|
1998-11-23 21:39:58 +00:00
|
|
|
|
|
|
|
[gnustep_global_lock lock];
|
|
|
|
if (beenHere == YES)
|
|
|
|
{
|
|
|
|
[gnustep_global_lock unlock];
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
beenHere = YES;
|
2003-01-21 01:16:32 +00:00
|
|
|
|
|
|
|
NS_DURING
|
1999-04-28 11:16:26 +00:00
|
|
|
{
|
2003-01-21 01:16:32 +00:00
|
|
|
service = [[NSSearchPathForDirectoriesInDomains(NSUserDirectory,
|
|
|
|
NSUserDomainMask,
|
|
|
|
YES)
|
|
|
|
objectAtIndex: 0]
|
2003-04-28 02:47:09 +00:00
|
|
|
stringByAppendingPathComponent: @"Library/Services"];
|
2003-01-21 01:16:32 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Load file extension preferences.
|
|
|
|
*/
|
|
|
|
extPrefPath = [service
|
|
|
|
stringByAppendingPathComponent: @".GNUstepExtPrefs"];
|
|
|
|
RETAIN(extPrefPath);
|
|
|
|
if ([mgr isReadableFileAtPath: extPrefPath] == YES)
|
1999-04-28 14:22:19 +00:00
|
|
|
{
|
2003-01-21 01:16:32 +00:00
|
|
|
data = [NSData dataWithContentsOfFile: extPrefPath];
|
|
|
|
if (data)
|
|
|
|
{
|
|
|
|
dict = [NSDeserializer deserializePropertyListFromData: data
|
|
|
|
mutableContainers: NO];
|
|
|
|
extPreferences = RETAIN(dict);
|
|
|
|
}
|
1999-04-28 14:22:19 +00:00
|
|
|
}
|
2003-01-21 01:16:32 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Load cached application information.
|
|
|
|
*/
|
|
|
|
appListPath = [service
|
|
|
|
stringByAppendingPathComponent: @".GNUstepAppList"];
|
|
|
|
RETAIN(appListPath);
|
|
|
|
if ([mgr isReadableFileAtPath: appListPath] == YES)
|
1999-04-28 14:22:19 +00:00
|
|
|
{
|
2003-01-21 01:16:32 +00:00
|
|
|
data = [NSData dataWithContentsOfFile: appListPath];
|
|
|
|
if (data)
|
|
|
|
{
|
|
|
|
dict = [NSDeserializer deserializePropertyListFromData: data
|
|
|
|
mutableContainers: NO];
|
|
|
|
applications = RETAIN(dict);
|
|
|
|
}
|
1999-04-28 14:22:19 +00:00
|
|
|
}
|
1999-04-28 11:16:26 +00:00
|
|
|
}
|
2003-01-21 01:16:32 +00:00
|
|
|
NS_HANDLER
|
|
|
|
{
|
|
|
|
[gnustep_global_lock unlock];
|
|
|
|
[localException raise];
|
|
|
|
}
|
|
|
|
NS_ENDHANDLER
|
|
|
|
|
1999-04-24 11:41:41 +00:00
|
|
|
[gnustep_global_lock unlock];
|
1996-05-30 20:03:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-11-23 21:39:58 +00:00
|
|
|
+ (id) allocWithZone: (NSZone*)zone
|
|
|
|
{
|
|
|
|
[NSException raise: NSInvalidArgumentException
|
|
|
|
format: @"You may not allocate a workspace directly"];
|
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
|
1999-09-01 11:15:27 +00:00
|
|
|
/*
|
|
|
|
* Creating a Workspace
|
|
|
|
*/
|
2002-01-22 18:23:56 +00:00
|
|
|
+ (NSWorkspace*) sharedWorkspace
|
1996-05-30 20:03:15 +00:00
|
|
|
{
|
1998-11-23 21:39:58 +00:00
|
|
|
if (sharedWorkspace == nil)
|
|
|
|
{
|
|
|
|
[gnustep_global_lock lock];
|
|
|
|
if (sharedWorkspace == nil)
|
|
|
|
{
|
|
|
|
sharedWorkspace =
|
|
|
|
(NSWorkspace*)NSAllocateObject(self, 0, NSDefaultMallocZone());
|
2001-11-26 20:29:42 +00:00
|
|
|
[sharedWorkspace init];
|
1998-11-23 21:39:58 +00:00
|
|
|
}
|
|
|
|
[gnustep_global_lock unlock];
|
|
|
|
}
|
|
|
|
return sharedWorkspace;
|
1996-05-30 20:03:15 +00:00
|
|
|
}
|
|
|
|
|
2001-11-26 20:29:42 +00:00
|
|
|
/*
|
|
|
|
* Instance methods
|
|
|
|
*/
|
|
|
|
- (void) dealloc
|
|
|
|
{
|
|
|
|
[NSException raise: NSInvalidArgumentException
|
|
|
|
format: @"Attempt to call dealloc for shared worksapace"];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (id) init
|
|
|
|
{
|
|
|
|
if (sharedWorkspace != self)
|
|
|
|
{
|
|
|
|
RELEASE(self);
|
|
|
|
return RETAIN(sharedWorkspace);
|
|
|
|
}
|
|
|
|
|
|
|
|
[[NSNotificationCenter defaultCenter]
|
2002-01-22 18:23:56 +00:00
|
|
|
addObserver: self
|
|
|
|
selector: @selector(noteUserDefaultsChanged)
|
|
|
|
name: NSUserDefaultsDidChangeNotification
|
|
|
|
object: nil];
|
2003-01-21 01:16:32 +00:00
|
|
|
|
2001-11-26 20:29:42 +00:00
|
|
|
_workspaceCenter = [_GSWorkspaceCenter new];
|
|
|
|
_iconMap = [NSMutableDictionary new];
|
2002-01-22 18:23:56 +00:00
|
|
|
_launched = [NSMutableDictionary new];
|
2001-11-26 20:29:42 +00:00
|
|
|
if (applications == nil)
|
2002-01-22 18:23:56 +00:00
|
|
|
{
|
|
|
|
[self findApplications];
|
|
|
|
}
|
2001-11-26 20:29:42 +00:00
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2001-12-01 21:14:51 +00:00
|
|
|
/*
|
|
|
|
* Opening Files
|
|
|
|
*/
|
2002-01-22 18:23:56 +00:00
|
|
|
- (BOOL) openFile: (NSString*)fullPath
|
1999-04-24 11:41:41 +00:00
|
|
|
{
|
2001-12-01 21:14:51 +00:00
|
|
|
return [self openFile: fullPath withApplication: nil];
|
1999-04-28 11:16:26 +00:00
|
|
|
}
|
1999-04-24 11:41:41 +00:00
|
|
|
|
2002-01-22 18:23:56 +00:00
|
|
|
- (BOOL) openFile: (NSString*)fullPath
|
|
|
|
fromImage: (NSImage*)anImage
|
2001-12-01 21:14:51 +00:00
|
|
|
at: (NSPoint)point
|
2002-01-22 18:23:56 +00:00
|
|
|
inView: (NSView*)aView
|
1999-04-28 11:16:26 +00:00
|
|
|
{
|
2001-12-01 21:14:51 +00:00
|
|
|
NSWindow *win = [aView window];
|
|
|
|
NSPoint screenLoc = [win convertBaseToScreen:
|
|
|
|
[aView convertPoint: point toView: nil]];
|
|
|
|
NSSize screenSize = [[win screen] frame].size;
|
|
|
|
NSPoint screenCenter = NSMakePoint(screenSize.width / 2,
|
|
|
|
screenSize.height / 2);
|
|
|
|
|
|
|
|
[self slideImage: anImage from: screenLoc to: screenCenter];
|
|
|
|
return [self openFile: fullPath];
|
1999-04-24 11:41:41 +00:00
|
|
|
}
|
|
|
|
|
2002-01-22 18:23:56 +00:00
|
|
|
- (BOOL) openFile: (NSString*)fullPath
|
|
|
|
withApplication: (NSString*)appName
|
1999-04-24 11:41:41 +00:00
|
|
|
{
|
2001-12-01 21:14:51 +00:00
|
|
|
return [self openFile: fullPath withApplication: appName andDeactivate: YES];
|
1999-04-24 11:41:41 +00:00
|
|
|
}
|
|
|
|
|
2002-01-22 18:23:56 +00:00
|
|
|
- (BOOL) openFile: (NSString*)fullPath
|
|
|
|
withApplication: (NSString*)appName
|
2001-12-01 21:14:51 +00:00
|
|
|
andDeactivate: (BOOL)flag
|
1999-04-24 11:41:41 +00:00
|
|
|
{
|
2001-12-01 21:14:51 +00:00
|
|
|
id app;
|
1999-04-24 11:41:41 +00:00
|
|
|
|
2001-12-01 21:14:51 +00:00
|
|
|
if (appName == nil)
|
1999-04-24 11:41:41 +00:00
|
|
|
{
|
2001-12-01 21:14:51 +00:00
|
|
|
NSString *ext = [fullPath pathExtension];
|
|
|
|
|
2002-01-22 13:20:20 +00:00
|
|
|
if ([self _extension: ext role: nil app: &appName] == NO)
|
2001-12-01 21:14:51 +00:00
|
|
|
{
|
|
|
|
NSWarnLog(@"No known applications for file extension '%@'", ext);
|
|
|
|
return NO;
|
|
|
|
}
|
1999-04-24 11:41:41 +00:00
|
|
|
}
|
|
|
|
|
2001-12-01 21:14:51 +00:00
|
|
|
app = [self _connectApplication: appName];
|
|
|
|
if (app == nil)
|
|
|
|
{
|
|
|
|
NSArray *args;
|
1999-04-24 11:41:41 +00:00
|
|
|
|
2001-12-01 21:14:51 +00:00
|
|
|
args = [NSArray arrayWithObjects: @"-GSFilePath", fullPath, nil];
|
|
|
|
return [self _launchApplication: appName arguments: args];
|
|
|
|
}
|
|
|
|
else
|
1999-04-24 11:41:41 +00:00
|
|
|
{
|
2001-12-01 21:14:51 +00:00
|
|
|
NS_DURING
|
|
|
|
{
|
|
|
|
if (flag == NO)
|
2002-01-22 18:23:56 +00:00
|
|
|
{
|
|
|
|
[app application: NSApp openFileWithoutUI: fullPath];
|
|
|
|
}
|
2001-12-01 21:14:51 +00:00
|
|
|
else
|
2002-01-22 18:23:56 +00:00
|
|
|
{
|
|
|
|
[app application: NSApp openFile: fullPath];
|
|
|
|
}
|
2001-12-01 21:14:51 +00:00
|
|
|
}
|
|
|
|
NS_HANDLER
|
|
|
|
{
|
|
|
|
NSWarnLog(@"Failed to contact '%@' to open file", appName);
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
NS_ENDHANDLER
|
1999-04-24 11:41:41 +00:00
|
|
|
}
|
2001-12-01 21:14:51 +00:00
|
|
|
if (flag)
|
2002-01-10 16:33:39 +00:00
|
|
|
{
|
|
|
|
[NSApp deactivate];
|
|
|
|
}
|
2001-12-01 21:14:51 +00:00
|
|
|
return YES;
|
1999-04-24 11:41:41 +00:00
|
|
|
}
|
|
|
|
|
2002-01-22 18:23:56 +00:00
|
|
|
- (BOOL) openTempFile: (NSString*)fullPath
|
1999-04-28 11:16:26 +00:00
|
|
|
{
|
2001-12-01 21:14:51 +00:00
|
|
|
id app;
|
|
|
|
NSString *appName;
|
|
|
|
NSString *ext = [fullPath pathExtension];
|
|
|
|
|
2002-01-22 13:20:20 +00:00
|
|
|
if ([self _extension: ext role: nil app: &appName] == NO)
|
2001-12-01 21:14:51 +00:00
|
|
|
{
|
|
|
|
NSWarnLog(@"No known applications for file extension '%@'", ext);
|
|
|
|
return NO;
|
|
|
|
}
|
1999-04-28 11:16:26 +00:00
|
|
|
|
2001-12-01 21:14:51 +00:00
|
|
|
app = [self _connectApplication: appName];
|
|
|
|
if (app == nil)
|
1999-04-28 11:16:26 +00:00
|
|
|
{
|
2001-12-01 21:14:51 +00:00
|
|
|
NSArray *args;
|
1999-04-28 11:16:26 +00:00
|
|
|
|
2001-12-01 21:14:51 +00:00
|
|
|
args = [NSArray arrayWithObjects: @"-GSTempPath", fullPath, nil];
|
|
|
|
return [self _launchApplication: appName arguments: args];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
NS_DURING
|
1999-04-28 11:16:26 +00:00
|
|
|
{
|
2001-12-01 21:14:51 +00:00
|
|
|
[app application: NSApp openTempFile: fullPath];
|
1999-04-28 11:16:26 +00:00
|
|
|
}
|
2001-12-01 21:14:51 +00:00
|
|
|
NS_HANDLER
|
1999-04-28 11:16:26 +00:00
|
|
|
{
|
2001-12-01 21:14:51 +00:00
|
|
|
NSWarnLog(@"Failed to contact '%@' to open temp file", appName);
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
NS_ENDHANDLER
|
|
|
|
}
|
1999-04-28 11:16:26 +00:00
|
|
|
|
2001-12-01 21:14:51 +00:00
|
|
|
[NSApp deactivate];
|
1999-04-28 11:16:26 +00:00
|
|
|
|
2001-12-01 21:14:51 +00:00
|
|
|
return YES;
|
|
|
|
}
|
1999-04-28 11:16:26 +00:00
|
|
|
|
2002-01-22 18:23:56 +00:00
|
|
|
- (BOOL) openURL: (NSURL*)url
|
2001-12-01 21:14:51 +00:00
|
|
|
{
|
|
|
|
if ([url isFileURL])
|
2002-01-22 18:23:56 +00:00
|
|
|
{
|
|
|
|
return [self openFile: [url path]];
|
|
|
|
}
|
2001-12-01 21:14:51 +00:00
|
|
|
else
|
2002-01-22 18:23:56 +00:00
|
|
|
{
|
|
|
|
return NO;
|
|
|
|
}
|
2001-12-01 21:14:51 +00:00
|
|
|
}
|
1999-04-28 11:16:26 +00:00
|
|
|
|
2001-12-01 21:14:51 +00:00
|
|
|
/*
|
|
|
|
* Manipulating Files
|
|
|
|
*/
|
2002-01-22 18:23:56 +00:00
|
|
|
- (BOOL) performFileOperation: (NSString*)operation
|
|
|
|
source: (NSString*)source
|
|
|
|
destination: (NSString*)destination
|
|
|
|
files: (NSArray*)files
|
|
|
|
tag: (int*)tag
|
2001-12-01 21:14:51 +00:00
|
|
|
{
|
|
|
|
id app = [self _workspaceApplication];
|
1999-04-28 11:16:26 +00:00
|
|
|
|
2001-12-01 21:14:51 +00:00
|
|
|
if (app == nil)
|
2002-06-24 16:56:30 +00:00
|
|
|
{
|
|
|
|
return NO;
|
|
|
|
}
|
2001-12-01 21:14:51 +00:00
|
|
|
else
|
2002-06-24 16:56:30 +00:00
|
|
|
{
|
|
|
|
// Send the request on to the Workspace application
|
|
|
|
return [app performFileOperation: operation
|
|
|
|
source: source
|
|
|
|
destination: destination
|
|
|
|
files: files
|
|
|
|
tag: tag];
|
|
|
|
}
|
1999-04-28 11:16:26 +00:00
|
|
|
}
|
|
|
|
|
2002-01-22 18:23:56 +00:00
|
|
|
- (BOOL) selectFile: (NSString*)fullPath
|
|
|
|
inFileViewerRootedAtPath: (NSString*)rootFullpath
|
1999-04-28 11:16:26 +00:00
|
|
|
{
|
2001-12-01 21:14:51 +00:00
|
|
|
id app = [self _workspaceApplication];
|
1999-04-28 11:16:26 +00:00
|
|
|
|
2001-12-01 21:14:51 +00:00
|
|
|
if (app == nil)
|
2002-06-24 16:56:30 +00:00
|
|
|
{
|
|
|
|
return NO;
|
|
|
|
}
|
2001-12-01 21:14:51 +00:00
|
|
|
else
|
2002-06-24 16:56:30 +00:00
|
|
|
{
|
|
|
|
// Send the request on to the Workspace application
|
|
|
|
return [app selectFile: fullPath
|
|
|
|
inFileViewerRootedAtPath: rootFullpath];
|
|
|
|
}
|
2001-12-01 21:14:51 +00:00
|
|
|
}
|
1999-04-28 11:16:26 +00:00
|
|
|
|
2002-06-24 16:56:30 +00:00
|
|
|
/**
|
|
|
|
* Given an application name, return the full path for that application.<br />
|
|
|
|
* This method looks for the application in standard locations, and if not
|
|
|
|
* found there, according to MacOS-X documentation, returns nil.<br />
|
|
|
|
* If the supplied application name is an absolute path, returns that path
|
|
|
|
* irrespective of whether such an application exists or not. This is
|
|
|
|
* <em>not</em> the docmented debavior in the MacOS-X documentation, but is
|
|
|
|
* the MacOS-X implemented behavior.<br />
|
|
|
|
* If the appName has an extension, it is used, otherwise in GNUstep
|
|
|
|
* the standard app, debug, and profile extensions * are tried.<br />
|
2001-12-01 21:14:51 +00:00
|
|
|
*/
|
2002-01-22 18:23:56 +00:00
|
|
|
- (NSString*) fullPathForApplication: (NSString*)appName
|
2001-12-01 21:14:51 +00:00
|
|
|
{
|
2002-06-24 16:56:30 +00:00
|
|
|
NSString *base;
|
|
|
|
NSString *path;
|
|
|
|
NSString *ext;
|
1999-04-28 11:16:26 +00:00
|
|
|
|
2002-06-24 16:56:30 +00:00
|
|
|
if ([appName length] == 0)
|
|
|
|
{
|
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
if ([[appName lastPathComponent] isEqual: appName] == NO)
|
|
|
|
{
|
|
|
|
if ([appName isAbsolutePath] == YES)
|
|
|
|
{
|
|
|
|
return appName; // MacOS-X implementation behavior.
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Relative path ... get standarized absolute path
|
|
|
|
*/
|
|
|
|
path = [[NSFileManager defaultManager] currentDirectoryPath];
|
|
|
|
appName = [path stringByAppendingPathComponent: appName];
|
|
|
|
appName = [appName stringByStandardizingPath];
|
|
|
|
}
|
|
|
|
base = [appName stringByDeletingLastPathComponent];
|
|
|
|
appName = [appName lastPathComponent];
|
|
|
|
ext = [appName pathExtension];
|
|
|
|
if ([ext length] == 0) // no extension, let's find one
|
|
|
|
{
|
|
|
|
path = [appName stringByAppendingPathExtension: @"app"];
|
|
|
|
path = [applications objectForKey: path];
|
|
|
|
if (path == nil)
|
|
|
|
{
|
|
|
|
path = [appName stringByAppendingPathExtension: @"debug"];
|
|
|
|
path = [applications objectForKey: path];
|
|
|
|
}
|
|
|
|
if (path == nil)
|
|
|
|
{
|
|
|
|
path = [appName stringByAppendingPathExtension: @"profile"];
|
|
|
|
path = [applications objectForKey: path];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
1998-11-23 21:39:58 +00:00
|
|
|
{
|
2002-06-24 16:56:30 +00:00
|
|
|
path = [applications objectForKey: appName];
|
|
|
|
}
|
1998-11-23 21:39:58 +00:00
|
|
|
|
2002-06-24 16:56:30 +00:00
|
|
|
/*
|
|
|
|
* If the original name included a path, check that the located name
|
|
|
|
* matches it. If it doesn't we return nil as MacOS-X does.
|
|
|
|
*/
|
2002-06-26 20:37:00 +00:00
|
|
|
if ([base length] > 0
|
2002-06-24 16:56:30 +00:00
|
|
|
&& [base isEqual: [path stringByDeletingLastPathComponent]] == NO)
|
|
|
|
{
|
|
|
|
path = nil;
|
1998-11-23 21:39:58 +00:00
|
|
|
}
|
2002-06-24 16:56:30 +00:00
|
|
|
return path;
|
1996-05-30 20:03:15 +00:00
|
|
|
}
|
|
|
|
|
2002-01-22 18:23:56 +00:00
|
|
|
- (BOOL) getFileSystemInfoForPath: (NSString*)fullPath
|
|
|
|
isRemovable: (BOOL*)removableFlag
|
|
|
|
isWritable: (BOOL*)writableFlag
|
|
|
|
isUnmountable: (BOOL*)unmountableFlag
|
1999-04-08 20:42:46 +00:00
|
|
|
description: (NSString **)description
|
|
|
|
type: (NSString **)fileSystemType
|
1996-05-30 20:03:15 +00:00
|
|
|
{
|
2001-11-26 20:29:42 +00:00
|
|
|
// FIXME
|
1996-05-30 20:03:15 +00:00
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
2002-10-02 04:35:25 +00:00
|
|
|
/**
|
|
|
|
* This method gets information about the file at fullPath and
|
|
|
|
* returns YES on success, NO if the named file could not be
|
|
|
|
* found.<br />
|
|
|
|
* On success, the name of the preferred application for opening
|
|
|
|
* the file is returned in *appName, or nil if there is no known
|
|
|
|
* application to open it.<br />
|
|
|
|
* The returned value in *type describes the file using one of
|
|
|
|
* the following constants.
|
|
|
|
* <deflist>
|
|
|
|
* <term>NSPlainFileType</term>
|
|
|
|
* <desc>
|
|
|
|
* A plain file or a directory that some application
|
|
|
|
* claims to be able to open like a file.
|
|
|
|
* </desc>
|
|
|
|
* <term>NSDirectoryFileType</term>
|
|
|
|
* <desc>An untyped directory</desc>
|
|
|
|
* <term>NSApplicationFileType</term>
|
|
|
|
* <desc>A GNUstep application</desc>
|
|
|
|
* <term>NSFilesystemFileType</term>
|
|
|
|
* <desc>A file system mount point</desc>
|
|
|
|
* <term>NSShellCommandFileType</term>
|
|
|
|
* <desc>Executable shell command</desc>
|
|
|
|
* </deflist>
|
|
|
|
*/
|
2002-01-22 18:23:56 +00:00
|
|
|
- (BOOL) getInfoForFile: (NSString*)fullPath
|
1999-04-08 20:42:46 +00:00
|
|
|
application: (NSString **)appName
|
|
|
|
type: (NSString **)type
|
1996-05-30 20:03:15 +00:00
|
|
|
{
|
2002-01-22 09:58:44 +00:00
|
|
|
NSFileManager *fm = [NSFileManager defaultManager];
|
|
|
|
NSDictionary *attributes;
|
|
|
|
NSString *fileType;
|
|
|
|
NSString *extension = [fullPath pathExtension];
|
2000-04-07 23:49:10 +00:00
|
|
|
|
2001-11-26 20:29:42 +00:00
|
|
|
attributes = [fm fileAttributesAtPath: fullPath traverseLink: YES];
|
2002-10-02 04:35:25 +00:00
|
|
|
|
2002-01-22 09:58:44 +00:00
|
|
|
if (attributes != nil)
|
2000-04-07 23:49:10 +00:00
|
|
|
{
|
2002-10-02 04:35:25 +00:00
|
|
|
*appName = [self getBestAppInRole: nil forExtension: extension];
|
2000-04-07 23:49:10 +00:00
|
|
|
fileType = [attributes fileType];
|
|
|
|
if ([fileType isEqualToString: NSFileTypeRegular])
|
2002-10-02 04:35:25 +00:00
|
|
|
{
|
|
|
|
if ([attributes filePosixPermissions] & PosixExecutePermission)
|
|
|
|
{
|
|
|
|
*type = NSShellCommandFileType;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*type = NSPlainFileType;
|
|
|
|
}
|
|
|
|
}
|
2002-01-22 09:58:44 +00:00
|
|
|
else if ([fileType isEqualToString: NSFileTypeDirectory])
|
2002-10-02 04:35:25 +00:00
|
|
|
{
|
|
|
|
if ([extension isEqualToString: @"app"]
|
2002-01-22 09:58:44 +00:00
|
|
|
|| [extension isEqualToString: @"debug"]
|
|
|
|
|| [extension isEqualToString: @"profile"])
|
2002-10-02 04:35:25 +00:00
|
|
|
{
|
|
|
|
*type = NSApplicationFileType;
|
|
|
|
}
|
|
|
|
else if ([extension isEqualToString: @"bundle"])
|
|
|
|
{
|
|
|
|
*type = NSPlainFileType;
|
|
|
|
}
|
2002-10-02 12:17:08 +00:00
|
|
|
else if (*appName != nil && [extension length] > 0)
|
2002-10-02 04:35:25 +00:00
|
|
|
{
|
|
|
|
*type = NSPlainFileType;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* The idea here is that if the parent directory's
|
|
|
|
* fileSystemNumber differs, this must be a filesystem
|
|
|
|
* mount point.
|
|
|
|
*/
|
|
|
|
else if ([[fm fileAttributesAtPath:
|
2002-01-22 09:58:44 +00:00
|
|
|
[fullPath stringByDeletingLastPathComponent]
|
|
|
|
traverseLink: YES] fileSystemNumber]
|
|
|
|
!= [attributes fileSystemNumber])
|
2002-10-02 04:35:25 +00:00
|
|
|
{
|
|
|
|
*type = NSFilesystemFileType;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*type = NSDirectoryFileType;
|
|
|
|
}
|
|
|
|
}
|
2000-04-07 23:49:10 +00:00
|
|
|
else
|
2002-10-02 04:35:25 +00:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* This catches sockets, character special, block special,
|
|
|
|
* and unknown file types
|
|
|
|
*/
|
|
|
|
*type = NSPlainFileType;
|
|
|
|
}
|
2000-04-07 23:49:10 +00:00
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
else
|
2002-01-22 09:58:44 +00:00
|
|
|
{
|
|
|
|
return NO;
|
|
|
|
}
|
1996-05-30 20:03:15 +00:00
|
|
|
}
|
|
|
|
|
2002-10-13 07:00:38 +00:00
|
|
|
- (NSImage*) iconForFile: (NSString*)fullPath
|
1996-05-30 20:03:15 +00:00
|
|
|
{
|
1999-04-24 11:41:41 +00:00
|
|
|
NSImage *image = nil;
|
2002-10-13 07:00:38 +00:00
|
|
|
NSString *pathExtension = [[fullPath pathExtension] lowercaseString];
|
1999-04-24 11:41:41 +00:00
|
|
|
|
2002-10-13 07:00:38 +00:00
|
|
|
if ([self isFilePackageAtPath: fullPath])
|
1999-04-24 11:41:41 +00:00
|
|
|
{
|
2002-01-22 09:58:44 +00:00
|
|
|
NSFileManager *mgr = [NSFileManager defaultManager];
|
|
|
|
NSString *iconPath = nil;
|
2003-05-11 11:00:04 +00:00
|
|
|
BOOL isApplication = NO;
|
2001-11-26 20:29:42 +00:00
|
|
|
|
1999-04-28 11:16:26 +00:00
|
|
|
if ([pathExtension isEqualToString: @"app"]
|
|
|
|
|| [pathExtension isEqualToString: @"debug"]
|
|
|
|
|| [pathExtension isEqualToString: @"profile"])
|
1999-04-24 11:41:41 +00:00
|
|
|
{
|
2004-10-24 23:53:31 +00:00
|
|
|
isApplication = YES;
|
|
|
|
|
|
|
|
image = [self appIconForApp: fullPath];
|
|
|
|
|
|
|
|
if (image == nil)
|
1999-04-28 11:16:26 +00:00
|
|
|
{
|
1999-09-02 11:28:47 +00:00
|
|
|
/*
|
2004-10-24 23:53:31 +00:00
|
|
|
* Just use the appropriate icon for the path extension
|
|
|
|
*/
|
|
|
|
return [self _iconForExtension: pathExtension];
|
1999-04-28 11:16:26 +00:00
|
|
|
}
|
1999-09-02 08:30:14 +00:00
|
|
|
}
|
1999-04-24 11:41:41 +00:00
|
|
|
|
1999-09-02 08:30:14 +00:00
|
|
|
/*
|
2004-10-24 23:53:31 +00:00
|
|
|
* If we have no iconPath, try 'dir/.dir.tiff' as a
|
|
|
|
* possible locations for the directory icon.
|
1999-09-02 08:30:14 +00:00
|
|
|
*/
|
|
|
|
if (iconPath == nil)
|
|
|
|
{
|
2002-10-13 07:00:38 +00:00
|
|
|
iconPath = [fullPath stringByAppendingPathComponent: @".dir.tiff"];
|
1999-09-02 08:30:14 +00:00
|
|
|
if ([mgr isReadableFileAtPath: iconPath] == NO)
|
1999-04-28 11:16:26 +00:00
|
|
|
{
|
1999-09-02 08:30:14 +00:00
|
|
|
iconPath = nil;
|
1999-04-24 11:41:41 +00:00
|
|
|
}
|
|
|
|
}
|
1999-04-28 11:16:26 +00:00
|
|
|
|
1999-09-02 08:30:14 +00:00
|
|
|
if (iconPath != nil)
|
1999-04-28 11:16:26 +00:00
|
|
|
{
|
2003-09-01 16:58:54 +00:00
|
|
|
image = [self _saveImageFor: iconPath];
|
1999-04-28 11:16:26 +00:00
|
|
|
}
|
|
|
|
|
1999-04-24 11:41:41 +00:00
|
|
|
if (image == nil)
|
|
|
|
{
|
1999-09-02 08:30:14 +00:00
|
|
|
image = [self _iconForExtension: pathExtension];
|
|
|
|
if (image == nil || image == [self unknownFiletypeImage])
|
|
|
|
{
|
2002-10-13 07:00:38 +00:00
|
|
|
if ([fullPath isEqual: _rootPath])
|
2002-03-28 13:23:38 +00:00
|
|
|
{
|
2003-05-11 11:00:04 +00:00
|
|
|
if (rootImage == nil)
|
|
|
|
{
|
2004-10-30 11:19:07 +00:00
|
|
|
rootImage = RETAIN([NSImage _standardImageWithName:
|
|
|
|
@"Root_PC.tiff"]);
|
2003-05-11 11:00:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
image = rootImage;
|
2002-03-28 13:23:38 +00:00
|
|
|
}
|
2002-10-13 07:00:38 +00:00
|
|
|
else if ([fullPath isEqual: NSHomeDirectory ()])
|
2002-03-28 13:23:38 +00:00
|
|
|
{
|
2003-05-11 11:00:04 +00:00
|
|
|
if (homeImage == nil)
|
|
|
|
{
|
2004-10-30 11:19:07 +00:00
|
|
|
homeImage = RETAIN([NSImage _standardImageWithName:
|
|
|
|
@"HomeDirectory.tiff"]);
|
2003-05-11 11:00:04 +00:00
|
|
|
}
|
|
|
|
image = homeImage;
|
2002-03-28 13:23:38 +00:00
|
|
|
}
|
1999-09-02 08:30:14 +00:00
|
|
|
else
|
2002-03-28 13:23:38 +00:00
|
|
|
{
|
2003-05-11 11:00:04 +00:00
|
|
|
if (folderImage == nil)
|
|
|
|
{
|
2004-10-30 11:19:07 +00:00
|
|
|
folderImage = RETAIN([NSImage _standardImageWithName:
|
|
|
|
@"Folder.tiff"]);
|
2003-05-11 11:00:04 +00:00
|
|
|
}
|
|
|
|
image = folderImage;
|
2002-03-28 13:23:38 +00:00
|
|
|
}
|
1999-09-02 08:30:14 +00:00
|
|
|
}
|
1999-04-24 11:41:41 +00:00
|
|
|
}
|
|
|
|
}
|
1999-04-28 11:16:26 +00:00
|
|
|
else
|
1999-04-24 11:41:41 +00:00
|
|
|
{
|
1999-04-28 11:16:26 +00:00
|
|
|
NSDebugLog(@"pathExtension is '%@'", pathExtension);
|
1999-04-24 11:41:41 +00:00
|
|
|
|
2003-09-01 16:58:54 +00:00
|
|
|
if ([[NSUserDefaults standardUserDefaults] boolForKey:
|
|
|
|
@"GSUseFreedesktopThumbnails"])
|
|
|
|
{
|
|
|
|
/* This image will be 128x128 pixels as oposed to the 48x48
|
|
|
|
of other GNUstep icons or the 32x32 of the specification */
|
|
|
|
image = [self _saveImageFor: [self thumbnailForFile: fullPath]];
|
|
|
|
if (image != nil)
|
|
|
|
{
|
|
|
|
return image;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-04-28 11:16:26 +00:00
|
|
|
image = [self _iconForExtension: pathExtension];
|
2003-05-11 14:41:32 +00:00
|
|
|
if (image == nil || image == [self unknownFiletypeImage])
|
|
|
|
{
|
|
|
|
NSFileManager *mgr;
|
|
|
|
|
|
|
|
mgr = [NSFileManager defaultManager];
|
|
|
|
if ([mgr isExecutableFileAtPath: fullPath] == YES)
|
|
|
|
{
|
|
|
|
NSDictionary *attributes;
|
|
|
|
NSString *fileType;
|
|
|
|
|
|
|
|
attributes = [mgr fileAttributesAtPath: fullPath
|
|
|
|
traverseLink: YES];
|
|
|
|
fileType = [attributes objectForKey: NSFileType];
|
|
|
|
if ([fileType isEqual: NSFileTypeRegular] == YES)
|
|
|
|
{
|
|
|
|
if (unknownTool == nil)
|
|
|
|
{
|
2004-10-30 11:19:07 +00:00
|
|
|
unknownTool = RETAIN([NSImage _standardImageWithName:
|
|
|
|
@"UnknownTool.tiff"]);
|
2003-05-11 14:41:32 +00:00
|
|
|
}
|
|
|
|
image = unknownTool;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-04-24 11:41:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (image == nil)
|
|
|
|
{
|
|
|
|
image = [self unknownFiletypeImage];
|
|
|
|
}
|
|
|
|
|
|
|
|
return image;
|
1996-05-30 20:03:15 +00:00
|
|
|
}
|
|
|
|
|
2002-01-22 18:23:56 +00:00
|
|
|
- (NSImage*) iconForFiles: (NSArray*)pathArray
|
1996-05-30 20:03:15 +00:00
|
|
|
{
|
2001-11-26 20:29:42 +00:00
|
|
|
if ([pathArray count] == 1)
|
2002-01-22 09:58:44 +00:00
|
|
|
{
|
|
|
|
return [self iconForFile: [pathArray objectAtIndex: 0]];
|
|
|
|
}
|
1999-04-24 11:41:41 +00:00
|
|
|
if (multipleFiles == nil)
|
|
|
|
{
|
2001-11-26 20:29:42 +00:00
|
|
|
// FIXME: Icon does not exist
|
1999-04-24 11:41:41 +00:00
|
|
|
multipleFiles = [NSImage imageNamed: @"FileIcon_multi"];
|
|
|
|
}
|
|
|
|
|
|
|
|
return multipleFiles;
|
1996-05-30 20:03:15 +00:00
|
|
|
}
|
|
|
|
|
2002-01-22 18:23:56 +00:00
|
|
|
- (NSImage*) iconForFileType: (NSString*)fileType
|
1996-05-30 20:03:15 +00:00
|
|
|
{
|
2001-11-26 20:29:42 +00:00
|
|
|
return [self _iconForExtension: fileType];
|
|
|
|
}
|
|
|
|
|
2002-01-22 18:23:56 +00:00
|
|
|
- (BOOL) isFilePackageAtPath: (NSString*)fullPath
|
2001-11-26 20:29:42 +00:00
|
|
|
{
|
|
|
|
NSFileManager *mgr = [NSFileManager defaultManager];
|
|
|
|
NSDictionary *attributes;
|
|
|
|
NSString *fileType;
|
|
|
|
|
|
|
|
attributes = [mgr fileAttributesAtPath: fullPath traverseLink: YES];
|
|
|
|
fileType = [attributes objectForKey: NSFileType];
|
|
|
|
if ([fileType isEqual: NSFileTypeDirectory] == YES)
|
|
|
|
{
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
return NO;
|
1996-05-30 20:03:15 +00:00
|
|
|
}
|
|
|
|
|
2003-06-22 09:00:34 +00:00
|
|
|
/**
|
1999-09-01 11:15:27 +00:00
|
|
|
* Tracking Changes to the File System
|
|
|
|
*/
|
1999-04-08 20:42:46 +00:00
|
|
|
- (BOOL) fileSystemChanged
|
1996-05-30 20:03:15 +00:00
|
|
|
{
|
2001-11-26 20:29:42 +00:00
|
|
|
BOOL flag = _fileSystemChanged;
|
|
|
|
|
|
|
|
_fileSystemChanged = NO;
|
|
|
|
return flag;
|
1996-05-30 20:03:15 +00:00
|
|
|
}
|
|
|
|
|
1999-04-08 20:42:46 +00:00
|
|
|
- (void) noteFileSystemChanged
|
|
|
|
{
|
2001-11-26 20:29:42 +00:00
|
|
|
_fileSystemChanged = YES;
|
|
|
|
}
|
|
|
|
|
2002-01-22 18:23:56 +00:00
|
|
|
- (void) noteFileSystemChanged: (NSString*)path
|
2001-11-26 20:29:42 +00:00
|
|
|
{
|
|
|
|
_fileSystemChanged = YES;
|
1999-04-08 20:42:46 +00:00
|
|
|
}
|
1996-05-30 20:03:15 +00:00
|
|
|
|
2002-01-22 09:58:44 +00:00
|
|
|
/**
|
2003-06-22 09:00:34 +00:00
|
|
|
* Updates Registered Services, File Types, and other information about any
|
|
|
|
* applications installed in the standard locations.
|
1999-09-01 11:15:27 +00:00
|
|
|
*/
|
1999-01-07 15:52:42 +00:00
|
|
|
- (void) findApplications
|
1998-11-23 21:39:58 +00:00
|
|
|
{
|
1999-04-08 20:42:46 +00:00
|
|
|
static NSString *path = nil;
|
1999-04-28 14:22:19 +00:00
|
|
|
NSFileManager *mgr = [NSFileManager defaultManager];
|
1999-04-08 20:42:46 +00:00
|
|
|
NSData *data;
|
1999-04-28 11:16:26 +00:00
|
|
|
NSDictionary *dict;
|
1999-04-08 20:42:46 +00:00
|
|
|
NSTask *task;
|
1998-11-23 21:39:58 +00:00
|
|
|
|
1999-04-08 20:42:46 +00:00
|
|
|
/*
|
|
|
|
* Try to locate and run an executable copy of 'make_services'
|
|
|
|
*/
|
|
|
|
if (path == nil)
|
2001-11-26 20:29:42 +00:00
|
|
|
{
|
2001-12-02 11:44:07 +00:00
|
|
|
#ifdef GNUSTEP_BASE_LIBRARY
|
2001-12-01 21:14:51 +00:00
|
|
|
path = RETAIN([[NSSearchPathForDirectoriesInDomains(
|
|
|
|
GSToolsDirectory, NSSystemDomainMask, YES) objectAtIndex: 0]
|
|
|
|
stringByAppendingPathComponent: @"make_services"]);
|
2001-12-02 11:44:07 +00:00
|
|
|
#else
|
|
|
|
path = RETAIN([[@GNUSTEP_INSTALL_PREFIX
|
|
|
|
stringByAppendingPathComponent: @"Tools"]
|
|
|
|
stringByAppendingPathComponent: @"make_services"]);
|
|
|
|
#endif
|
2001-11-26 20:29:42 +00:00
|
|
|
}
|
1999-04-14 14:42:50 +00:00
|
|
|
task = [NSTask launchedTaskWithLaunchPath: path
|
|
|
|
arguments: nil];
|
1999-04-08 20:42:46 +00:00
|
|
|
if (task != nil)
|
2002-01-22 09:58:44 +00:00
|
|
|
{
|
|
|
|
[task waitUntilExit];
|
|
|
|
}
|
1999-04-28 14:22:19 +00:00
|
|
|
if ([mgr isReadableFileAtPath: extPrefPath] == YES)
|
1999-04-28 11:16:26 +00:00
|
|
|
{
|
1999-04-28 14:22:19 +00:00
|
|
|
data = [NSData dataWithContentsOfFile: extPrefPath];
|
|
|
|
if (data)
|
|
|
|
{
|
|
|
|
dict = [NSDeserializer deserializePropertyListFromData: data
|
|
|
|
mutableContainers: NO];
|
|
|
|
ASSIGN(extPreferences, dict);
|
|
|
|
}
|
1999-04-28 11:16:26 +00:00
|
|
|
}
|
1998-12-01 14:41:53 +00:00
|
|
|
|
1999-04-28 14:22:19 +00:00
|
|
|
if ([mgr isReadableFileAtPath: appListPath] == YES)
|
1999-04-28 11:16:26 +00:00
|
|
|
{
|
1999-04-28 14:22:19 +00:00
|
|
|
data = [NSData dataWithContentsOfFile: appListPath];
|
|
|
|
if (data)
|
|
|
|
{
|
|
|
|
dict = [NSDeserializer deserializePropertyListFromData: data
|
|
|
|
mutableContainers: NO];
|
|
|
|
ASSIGN(applications, dict);
|
|
|
|
}
|
1999-04-28 11:16:26 +00:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Invalidate the cache of icons for file extensions.
|
|
|
|
*/
|
2001-11-26 20:29:42 +00:00
|
|
|
[_iconMap removeAllObjects];
|
1998-11-23 21:39:58 +00:00
|
|
|
}
|
1996-05-30 20:03:15 +00:00
|
|
|
|
2003-06-22 09:00:34 +00:00
|
|
|
/**
|
|
|
|
* Instructs all the other running applications to hide themselves.
|
|
|
|
* <em>not yet implemented</em>
|
1999-09-01 11:15:27 +00:00
|
|
|
*/
|
1999-04-08 20:42:46 +00:00
|
|
|
- (void) hideOtherApplications
|
|
|
|
{
|
2001-11-26 20:29:42 +00:00
|
|
|
// FIXME
|
1999-04-08 20:42:46 +00:00
|
|
|
}
|
1996-05-30 20:03:15 +00:00
|
|
|
|
2002-01-22 09:58:44 +00:00
|
|
|
/**
|
|
|
|
* Calls -launchApplication:showIcon:autolaunch: with arguments set to
|
|
|
|
* show the icon but not set it up as an autolaunch.
|
|
|
|
*/
|
2002-01-22 18:23:56 +00:00
|
|
|
- (BOOL) launchApplication: (NSString*)appName
|
1996-05-30 20:03:15 +00:00
|
|
|
{
|
1998-11-23 21:39:58 +00:00
|
|
|
return [self launchApplication: appName
|
|
|
|
showIcon: YES
|
|
|
|
autolaunch: NO];
|
1996-05-30 20:03:15 +00:00
|
|
|
}
|
|
|
|
|
2002-01-22 09:58:44 +00:00
|
|
|
/**
|
2003-10-24 09:29:43 +00:00
|
|
|
* <p>Launches the specified application (unless it is already running).<br />
|
2003-06-22 09:00:34 +00:00
|
|
|
* If the autolaunch flag is yes, sets the autolaunch user default for the
|
|
|
|
* newly launched application, so that applications which understand the
|
|
|
|
* concept of being autolaunched at system startup time can modify their
|
|
|
|
* behavior appropriately.
|
|
|
|
* </p>
|
|
|
|
* <p>Sends an NSWorkspaceWillLaunchApplicationNotification before it
|
|
|
|
* actually attempts to launch the application (this is not sent if the
|
|
|
|
* application is already running).
|
|
|
|
* </p>
|
|
|
|
* <p>The application sends an NSWorkspaceDidlLaunchApplicationNotification
|
|
|
|
* on completion of launching. This is not sent if the application is already
|
|
|
|
* running, or if it fails to complete its startup.
|
|
|
|
* </p>
|
|
|
|
* <p>Returns NO if the application cannot be launched (eg. it does not exist
|
|
|
|
* or the binary is not executable).
|
|
|
|
* </p>
|
|
|
|
* <p>Returns YES if the application was already running or of it was launched
|
|
|
|
* (this does not necessarily mean that the application succeeded in starting
|
|
|
|
* up fully).
|
|
|
|
* </p>
|
|
|
|
* <p>Once an application has fully started up, you should be able to connect
|
|
|
|
* to it using [NSConnection+rootProxyForConnectionWithRegisteredName:host:]
|
|
|
|
* passing the application name (normally the filesystem name excluding path
|
|
|
|
* and file extension) and an empty host name. This will let you communicate
|
2003-07-22 16:13:46 +00:00
|
|
|
* with the the [NSApplication-delegate] of the launched application, and you
|
2003-06-22 09:00:34 +00:00
|
|
|
* can generally use this as a test of whether an application is running
|
|
|
|
* correctly.
|
|
|
|
* </p>
|
2002-01-22 09:58:44 +00:00
|
|
|
*/
|
2002-01-22 18:23:56 +00:00
|
|
|
- (BOOL) launchApplication: (NSString*)appName
|
1999-04-08 20:42:46 +00:00
|
|
|
showIcon: (BOOL)showIcon
|
|
|
|
autolaunch: (BOOL)autolaunch
|
1996-05-30 20:03:15 +00:00
|
|
|
{
|
2001-12-01 21:14:51 +00:00
|
|
|
id app;
|
1999-10-12 18:20:22 +00:00
|
|
|
|
2001-12-01 21:14:51 +00:00
|
|
|
app = [self _connectApplication: appName];
|
2001-11-26 20:29:42 +00:00
|
|
|
if (app == nil)
|
|
|
|
{
|
2003-06-22 09:00:34 +00:00
|
|
|
NSArray *args = nil;
|
|
|
|
|
|
|
|
if (autolaunch == YES)
|
|
|
|
{
|
2003-06-29 18:17:08 +00:00
|
|
|
args = [NSArray arrayWithObjects: @"-autolaunch", @"YES", nil];
|
2003-06-22 09:00:34 +00:00
|
|
|
}
|
|
|
|
return [self _launchApplication: appName arguments: args];
|
2001-11-26 20:29:42 +00:00
|
|
|
}
|
2004-09-05 13:46:13 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
[app activateIgnoringOtherApps:YES];
|
|
|
|
}
|
1999-10-12 18:20:22 +00:00
|
|
|
|
1998-11-23 21:39:58 +00:00
|
|
|
return YES;
|
1996-05-30 20:03:15 +00:00
|
|
|
}
|
|
|
|
|
2003-06-22 09:00:34 +00:00
|
|
|
/**
|
|
|
|
* Returns a description of the currently active application, containing
|
|
|
|
* the name (NSApplicationName), path (NSApplicationPath) and process
|
|
|
|
* identifier (NSApplicationProcessIdentifier).
|
|
|
|
*/
|
2003-05-21 22:08:17 +00:00
|
|
|
- (NSDictionary*) activeApplication
|
|
|
|
{
|
|
|
|
NSProcessInfo *processInfo = [NSProcessInfo processInfo];
|
|
|
|
|
|
|
|
return [NSDictionary dictionaryWithObjectsAndKeys:
|
2003-06-22 09:00:34 +00:00
|
|
|
[processInfo processName], @"NSApplicationName",
|
|
|
|
[[NSBundle mainBundle] bundlePath], @"NSApplicationPath",
|
|
|
|
[NSNumber numberWithInt: [processInfo processIdentifier]],
|
|
|
|
@"NSApplicationProcessIdentifier",
|
|
|
|
nil];
|
2003-05-21 22:08:17 +00:00
|
|
|
}
|
|
|
|
|
2003-06-22 09:00:34 +00:00
|
|
|
/**
|
|
|
|
* Returns an array listing all the applications know to have been
|
|
|
|
* launched.
|
|
|
|
*/
|
2003-05-21 22:08:17 +00:00
|
|
|
- (NSArray*) launchedApplications
|
|
|
|
{
|
2003-06-22 09:00:34 +00:00
|
|
|
NSDictionary *dict;
|
|
|
|
NSString *app;
|
|
|
|
NSMutableArray *apps = [NSMutableArray array];
|
|
|
|
NSEnumerator *enumerator = [_launched keyEnumerator];
|
2003-05-21 22:08:17 +00:00
|
|
|
|
|
|
|
while ((app = [enumerator nextObject]) != nil)
|
|
|
|
{
|
2003-06-22 09:00:34 +00:00
|
|
|
dict = [NSDictionary dictionaryWithObject: app
|
|
|
|
forKey: @"NSApplicationName"];
|
2003-05-21 22:08:17 +00:00
|
|
|
[apps addObject: dict];
|
|
|
|
}
|
|
|
|
|
|
|
|
return apps;
|
|
|
|
}
|
|
|
|
|
1999-09-01 11:15:27 +00:00
|
|
|
/*
|
|
|
|
* Unmounting a Device
|
|
|
|
*/
|
2002-01-22 18:23:56 +00:00
|
|
|
- (BOOL) unmountAndEjectDeviceAtPath: (NSString*)path
|
1996-05-30 20:03:15 +00:00
|
|
|
{
|
2002-01-22 09:58:44 +00:00
|
|
|
NSDictionary *userinfo;
|
|
|
|
NSTask *task;
|
|
|
|
BOOL flag = NO;
|
2001-11-26 20:29:42 +00:00
|
|
|
|
|
|
|
userinfo = [NSDictionary dictionaryWithObject: path
|
2002-01-22 09:58:44 +00:00
|
|
|
forKey: @"NSDevicePath"];
|
|
|
|
[_workspaceCenter postNotificationName: NSWorkspaceWillUnmountNotification
|
|
|
|
object: self
|
|
|
|
userInfo: userinfo];
|
2001-11-26 20:29:42 +00:00
|
|
|
|
|
|
|
// FIXME This is system specific
|
|
|
|
task = [NSTask launchedTaskWithLaunchPath: @"eject"
|
|
|
|
arguments: [NSArray arrayWithObject: path]];
|
|
|
|
if (task != nil)
|
|
|
|
{
|
|
|
|
[task waitUntilExit];
|
|
|
|
if ([task terminationStatus] != 0)
|
2002-01-22 09:58:44 +00:00
|
|
|
{
|
|
|
|
return NO;
|
|
|
|
}
|
2001-11-26 20:29:42 +00:00
|
|
|
else
|
2002-01-22 09:58:44 +00:00
|
|
|
{
|
|
|
|
flag = YES;
|
|
|
|
}
|
2001-11-26 20:29:42 +00:00
|
|
|
}
|
|
|
|
else
|
2002-01-22 09:58:44 +00:00
|
|
|
{
|
|
|
|
return NO;
|
|
|
|
}
|
2001-11-26 20:29:42 +00:00
|
|
|
|
2002-01-22 09:58:44 +00:00
|
|
|
[_workspaceCenter postNotificationName: NSWorkspaceDidUnmountNotification
|
|
|
|
object: self
|
|
|
|
userInfo: userinfo];
|
2001-11-26 20:29:42 +00:00
|
|
|
return flag;
|
1996-05-30 20:03:15 +00:00
|
|
|
}
|
|
|
|
|
1999-09-01 11:15:27 +00:00
|
|
|
/*
|
|
|
|
* Tracking Status Changes for Devices
|
|
|
|
*/
|
1999-04-08 20:42:46 +00:00
|
|
|
- (void) checkForRemovableMedia
|
|
|
|
{
|
2001-11-26 20:29:42 +00:00
|
|
|
// FIXME
|
1999-04-08 20:42:46 +00:00
|
|
|
}
|
1996-05-30 20:03:15 +00:00
|
|
|
|
2002-01-22 18:23:56 +00:00
|
|
|
- (NSArray*) mountNewRemovableMedia
|
1996-05-30 20:03:15 +00:00
|
|
|
{
|
2001-11-26 20:29:42 +00:00
|
|
|
// FIXME
|
1996-05-30 20:03:15 +00:00
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
|
2002-01-22 18:23:56 +00:00
|
|
|
- (NSArray*) mountedRemovableMedia
|
1996-05-30 20:03:15 +00:00
|
|
|
{
|
2005-06-06 18:27:22 +00:00
|
|
|
NSArray *volumes;
|
|
|
|
NSMutableArray *names;
|
|
|
|
unsigned count;
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
volumes = [self mountedLocalVolumePaths];
|
|
|
|
count = [volumes count];
|
|
|
|
names = [NSMutableArray arrayWithCapacity: count];
|
|
|
|
for (i = 0; i < count; i++)
|
2001-11-26 20:29:42 +00:00
|
|
|
{
|
2005-06-06 18:27:22 +00:00
|
|
|
BOOL removableFlag;
|
|
|
|
BOOL writableFlag;
|
|
|
|
BOOL unmountableFlag;
|
|
|
|
NSString *description;
|
|
|
|
NSString *fileSystemType;
|
|
|
|
NSString *name = [volumes objectAtIndex: i];
|
2001-11-26 20:29:42 +00:00
|
|
|
|
|
|
|
if ([self getFileSystemInfoForPath: name
|
2005-06-06 18:27:22 +00:00
|
|
|
isRemovable: &removableFlag
|
|
|
|
isWritable: &writableFlag
|
|
|
|
isUnmountable: &unmountableFlag
|
|
|
|
description: &description
|
|
|
|
type: &fileSystemType] && removableFlag)
|
2001-11-26 20:29:42 +00:00
|
|
|
{
|
|
|
|
[names addObject: name];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return names;
|
|
|
|
}
|
|
|
|
|
2002-01-22 09:58:44 +00:00
|
|
|
- (NSArray*) mountedLocalVolumePaths
|
2001-11-26 20:29:42 +00:00
|
|
|
{
|
2005-06-06 18:27:22 +00:00
|
|
|
NSMutableArray *names;
|
|
|
|
NSFileManager *mgr = [NSFileManager defaultManager];
|
|
|
|
#ifdef __MINGW__
|
|
|
|
unsigned max = BUFSIZ;
|
|
|
|
unichar buf[max];
|
|
|
|
unichar *base = buf;
|
|
|
|
unichar *ptr;
|
|
|
|
unichar *end;
|
|
|
|
unsigned len;
|
|
|
|
|
2005-06-06 19:40:48 +00:00
|
|
|
names = [NSMutableArray arrayWithCapacity: 8];
|
2005-06-06 18:27:22 +00:00
|
|
|
len = GetLogicalDriveStringsW(max-1, base);
|
|
|
|
while (len >= max)
|
|
|
|
{
|
|
|
|
base = NSZoneMalloc(NSDefaultMallocZone(), (len+1) * sizeof(unichar));
|
|
|
|
max = len;
|
|
|
|
len = GetLogicalDriveStringsW(max-1, base);
|
|
|
|
}
|
|
|
|
for (ptr = base; *ptr != 0; ptr = end + 1)
|
|
|
|
{
|
|
|
|
NSString *path;
|
|
|
|
|
|
|
|
end = ptr;
|
|
|
|
while (*end != 0)
|
|
|
|
{
|
|
|
|
end++;
|
|
|
|
}
|
|
|
|
len = (end - ptr) * sizeof(unichar);
|
|
|
|
path = [mgr stringWithFileSystemRepresentation: (char*)ptr length: len];
|
|
|
|
[names addObject: path];
|
|
|
|
}
|
|
|
|
if (base != buf)
|
|
|
|
{
|
|
|
|
NSZoneFree(NSDefaultMallocZone(), base);
|
|
|
|
}
|
|
|
|
|
2005-06-06 19:40:48 +00:00
|
|
|
#elif defined(HAVE_GETMNTENT) && defined (MNT_MEMB)
|
|
|
|
FILE *fptr = fopen("/etc/mtab", "r");
|
|
|
|
struct mntent *m;
|
|
|
|
|
|
|
|
names = [NSMutableArray arrayWithCapacity: 8];
|
|
|
|
while ((m = getmntent(fptr)) != 0)
|
|
|
|
{
|
|
|
|
NSString *path;
|
|
|
|
|
|
|
|
path = [mgr stringWithFileSystemRepresentation: m->MNT_MEMB
|
|
|
|
length: strlen(m->MNT_MEMB)];
|
|
|
|
[names addObject: path];
|
|
|
|
}
|
2005-06-06 18:27:22 +00:00
|
|
|
#else
|
|
|
|
|
2001-11-26 20:29:42 +00:00
|
|
|
// FIXME This is system specific
|
2002-01-22 09:58:44 +00:00
|
|
|
NSString *mtab = [NSString stringWithContentsOfFile: @"/etc/mtab"];
|
|
|
|
NSArray *mounts = [mtab componentsSeparatedByString: @"\n"];
|
|
|
|
unsigned int i;
|
2001-11-26 20:29:42 +00:00
|
|
|
|
2005-06-06 18:27:22 +00:00
|
|
|
names = [NSMutableArray arrayWithCapacity: [mounts count]];
|
2001-11-26 20:29:42 +00:00
|
|
|
for (i = 0; i < [mounts count]; i++)
|
|
|
|
{
|
2004-05-13 12:31:47 +00:00
|
|
|
NSString *mount = [mounts objectAtIndex: i];
|
|
|
|
|
|
|
|
if ([mount length])
|
2001-11-26 20:29:42 +00:00
|
|
|
{
|
2004-05-13 12:31:47 +00:00
|
|
|
NSArray *parts = [mount componentsSeparatedByString: @" "];
|
|
|
|
|
|
|
|
if ([parts count] >= 2)
|
|
|
|
{
|
|
|
|
NSString *type = [parts objectAtIndex: 2];
|
|
|
|
|
|
|
|
if ([type isEqualToString: @"proc"] == NO
|
|
|
|
&& [type isEqualToString: @"devpts"] == NO
|
|
|
|
&& [type isEqualToString: @"shm"] == NO)
|
|
|
|
{
|
|
|
|
[names addObject: [parts objectAtIndex: 1]];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-11-26 20:29:42 +00:00
|
|
|
}
|
2005-06-06 18:27:22 +00:00
|
|
|
#endif
|
2001-11-26 20:29:42 +00:00
|
|
|
return names;
|
1996-05-30 20:03:15 +00:00
|
|
|
}
|
|
|
|
|
2002-01-22 09:58:44 +00:00
|
|
|
/**
|
|
|
|
* Returns the workspace notification center
|
1999-09-01 11:15:27 +00:00
|
|
|
*/
|
2002-01-22 18:23:56 +00:00
|
|
|
- (NSNotificationCenter*) notificationCenter
|
1996-05-30 20:03:15 +00:00
|
|
|
{
|
2001-11-26 20:29:42 +00:00
|
|
|
return _workspaceCenter;
|
1996-05-30 20:03:15 +00:00
|
|
|
}
|
|
|
|
|
2002-01-22 09:58:44 +00:00
|
|
|
/**
|
|
|
|
* Simply makes a note that the user defaults database has changed.
|
1999-09-01 11:15:27 +00:00
|
|
|
*/
|
1999-04-08 20:42:46 +00:00
|
|
|
- (void) noteUserDefaultsChanged
|
1998-11-23 21:39:58 +00:00
|
|
|
{
|
2001-11-26 20:29:42 +00:00
|
|
|
_userDefaultsChanged = YES;
|
1998-11-23 21:39:58 +00:00
|
|
|
}
|
1996-05-30 20:03:15 +00:00
|
|
|
|
2002-01-22 09:58:44 +00:00
|
|
|
/**
|
|
|
|
* Returns a flag to say if the defaults database has changed since
|
|
|
|
* the last time this method was called.
|
|
|
|
*/
|
1999-04-08 20:42:46 +00:00
|
|
|
- (BOOL) userDefaultsChanged
|
1996-05-30 20:03:15 +00:00
|
|
|
{
|
2001-11-26 20:29:42 +00:00
|
|
|
BOOL hasChanged = _userDefaultsChanged;
|
1999-09-01 11:15:27 +00:00
|
|
|
|
2001-11-26 20:29:42 +00:00
|
|
|
_userDefaultsChanged = NO;
|
1998-11-23 21:39:58 +00:00
|
|
|
return hasChanged;
|
1996-05-30 20:03:15 +00:00
|
|
|
}
|
|
|
|
|
2002-01-22 09:58:44 +00:00
|
|
|
/**
|
|
|
|
* Animating an Image- slides it from one point on the screen to another.
|
1999-09-01 11:15:27 +00:00
|
|
|
*/
|
2002-01-22 18:23:56 +00:00
|
|
|
- (void) slideImage: (NSImage*)image
|
1999-04-08 20:42:46 +00:00
|
|
|
from: (NSPoint)fromPoint
|
|
|
|
to: (NSPoint)toPoint
|
|
|
|
{
|
2002-03-28 03:53:18 +00:00
|
|
|
[GSCurrentServer() slideImage: image from: fromPoint to: toPoint];
|
1999-04-08 20:42:46 +00:00
|
|
|
}
|
1996-05-30 20:03:15 +00:00
|
|
|
|
1999-09-01 11:15:27 +00:00
|
|
|
/*
|
|
|
|
* Requesting Additional Time before Power Off or Logout
|
|
|
|
*/
|
1999-04-08 20:42:46 +00:00
|
|
|
- (int) extendPowerOffBy: (int)requested
|
1996-05-30 20:03:15 +00:00
|
|
|
{
|
2001-11-26 20:29:42 +00:00
|
|
|
// FIXME
|
1996-05-30 20:03:15 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
1999-04-08 20:42:46 +00:00
|
|
|
|
1999-04-28 11:16:26 +00:00
|
|
|
@implementation NSWorkspace (GNUstep)
|
|
|
|
|
2002-01-22 09:58:44 +00:00
|
|
|
/**
|
|
|
|
* Returns the 'best' application to open a file with the specified extension
|
|
|
|
* using the given role. If the role is nil then apps which can edit are
|
|
|
|
* preferred but viewers are also acceptable. Uses a user preferred app
|
|
|
|
* or picks any good match.
|
|
|
|
*/
|
1999-04-28 11:16:26 +00:00
|
|
|
- (NSString*) getBestAppInRole: (NSString*)role
|
|
|
|
forExtension: (NSString*)ext
|
|
|
|
{
|
|
|
|
NSString *appName = nil;
|
|
|
|
|
2002-01-22 13:20:20 +00:00
|
|
|
if ([self _extension: ext role: role app: &appName] == NO)
|
1999-04-28 11:16:26 +00:00
|
|
|
{
|
2002-01-22 09:58:44 +00:00
|
|
|
appName = nil;
|
1999-04-28 11:16:26 +00:00
|
|
|
}
|
|
|
|
return appName;
|
|
|
|
}
|
|
|
|
|
2002-01-22 09:58:44 +00:00
|
|
|
/**
|
|
|
|
* Returns the path set for the icon matching the image by
|
|
|
|
* -setBestIcon:forExtension:
|
|
|
|
*/
|
1999-04-28 11:16:26 +00:00
|
|
|
- (NSString*) getBestIconForExtension: (NSString*)ext
|
|
|
|
{
|
|
|
|
NSString *iconPath = nil;
|
|
|
|
|
|
|
|
if (extPreferences != nil)
|
|
|
|
{
|
|
|
|
NSDictionary *inf;
|
|
|
|
|
|
|
|
inf = [extPreferences objectForKey: [ext lowercaseString]];
|
|
|
|
if (inf != nil)
|
1999-09-01 11:15:27 +00:00
|
|
|
{
|
|
|
|
iconPath = [inf objectForKey: @"Icon"];
|
|
|
|
}
|
1999-04-28 11:16:26 +00:00
|
|
|
}
|
|
|
|
return iconPath;
|
|
|
|
}
|
|
|
|
|
2002-01-22 09:58:44 +00:00
|
|
|
/**
|
|
|
|
* Gets the applications cache (generated by the make_services tool)
|
|
|
|
* and looks up the special entry that contains a dictionary of all
|
|
|
|
* file extensions recognised by GNUstep applications. Then finds
|
|
|
|
* the dictionary of applications that can handle our file and
|
|
|
|
* returns it.
|
|
|
|
*/
|
1999-04-28 11:16:26 +00:00
|
|
|
- (NSDictionary*) infoForExtension: (NSString*)ext
|
|
|
|
{
|
|
|
|
NSDictionary *map;
|
|
|
|
|
|
|
|
ext = [ext lowercaseString];
|
|
|
|
map = [applications objectForKey: @"GSExtensionsMap"];
|
|
|
|
return [map objectForKey: ext];
|
|
|
|
}
|
|
|
|
|
2002-01-22 09:58:44 +00:00
|
|
|
/**
|
2002-06-24 16:56:30 +00:00
|
|
|
* Returns the application bundle for the named application. Accepts
|
|
|
|
* either a full path to an app or just the name. The extension (.app,
|
2002-07-17 14:06:33 +00:00
|
|
|
* .debug, .profile) is optional, but if provided it will be used.<br />
|
2002-06-24 16:56:30 +00:00
|
|
|
* Returns nil if the specified app does not exist as requested.
|
2002-01-22 09:58:44 +00:00
|
|
|
*/
|
2002-01-22 18:23:56 +00:00
|
|
|
- (NSBundle*) bundleForApp: (NSString*)appName
|
1999-06-03 04:53:12 +00:00
|
|
|
{
|
2002-06-17 15:03:58 +00:00
|
|
|
if ([appName length] == 0)
|
1999-09-01 11:15:27 +00:00
|
|
|
{
|
|
|
|
return nil;
|
|
|
|
}
|
2002-06-24 16:56:30 +00:00
|
|
|
if ([[appName lastPathComponent] isEqual: appName]) // it's a name
|
1999-06-03 04:53:12 +00:00
|
|
|
{
|
2002-06-24 16:56:30 +00:00
|
|
|
appName = [self fullPathForApplication: appName];
|
1999-06-03 04:53:12 +00:00
|
|
|
}
|
2002-06-24 16:56:30 +00:00
|
|
|
else
|
1999-06-03 04:53:12 +00:00
|
|
|
{
|
2002-06-24 16:56:30 +00:00
|
|
|
NSFileManager *fm;
|
|
|
|
NSString *ext;
|
2002-06-24 17:28:43 +00:00
|
|
|
BOOL flag;
|
1999-06-03 04:53:12 +00:00
|
|
|
|
2002-06-24 16:56:30 +00:00
|
|
|
fm = [NSFileManager defaultManager];
|
|
|
|
ext = [appName pathExtension];
|
|
|
|
if ([ext length] == 0) // no extension, let's find one
|
|
|
|
{
|
|
|
|
NSString *path;
|
|
|
|
|
|
|
|
path = [appName stringByAppendingPathExtension: @"app"];
|
2002-06-24 17:28:43 +00:00
|
|
|
if ([fm fileExistsAtPath: path isDirectory: &flag] == NO
|
|
|
|
|| flag == NO)
|
2002-06-24 16:56:30 +00:00
|
|
|
{
|
|
|
|
path = [appName stringByAppendingPathExtension: @"debug"];
|
2002-06-24 17:28:43 +00:00
|
|
|
if ([fm fileExistsAtPath: path isDirectory: &flag] == NO
|
|
|
|
|| flag == NO)
|
2002-06-24 16:56:30 +00:00
|
|
|
{
|
|
|
|
path = [appName stringByAppendingPathExtension: @"profile"];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
appName = path;
|
|
|
|
}
|
2002-06-24 17:28:43 +00:00
|
|
|
if ([fm fileExistsAtPath: appName isDirectory: &flag] == NO
|
|
|
|
|| flag == NO)
|
2002-06-24 16:56:30 +00:00
|
|
|
{
|
|
|
|
appName = nil;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (appName == nil)
|
1999-09-01 11:15:27 +00:00
|
|
|
{
|
|
|
|
return nil;
|
|
|
|
}
|
2002-06-24 16:56:30 +00:00
|
|
|
return [NSBundle bundleWithPath: appName];
|
1999-08-19 23:30:03 +00:00
|
|
|
}
|
|
|
|
|
2002-01-22 09:58:44 +00:00
|
|
|
/**
|
1999-09-01 11:15:27 +00:00
|
|
|
* Returns the application icon for the given app.
|
1999-08-19 23:30:03 +00:00
|
|
|
* Or null if none defined or appName is not a valid application name.
|
|
|
|
*/
|
2002-01-22 18:23:56 +00:00
|
|
|
- (NSImage*) appIconForApp: (NSString*)appName
|
1999-08-19 23:30:03 +00:00
|
|
|
{
|
2004-10-24 23:53:31 +00:00
|
|
|
NSBundle *bundle;
|
|
|
|
NSImage *image = nil;
|
|
|
|
NSFileManager *mgr = [NSFileManager defaultManager];
|
|
|
|
NSString *iconPath = nil;
|
|
|
|
NSString *fullPath;
|
|
|
|
|
|
|
|
fullPath = [self fullPathForApplication: appName];
|
|
|
|
bundle = [self bundleForApp: fullPath];
|
1999-08-19 23:30:03 +00:00
|
|
|
if (bundle == nil)
|
1999-09-01 11:15:27 +00:00
|
|
|
{
|
|
|
|
return nil;
|
|
|
|
}
|
2004-10-24 23:53:31 +00:00
|
|
|
|
1999-08-19 23:30:03 +00:00
|
|
|
iconPath = [[bundle infoDictionary] objectForKey: @"NSIcon"];
|
|
|
|
|
2004-10-24 23:53:31 +00:00
|
|
|
if (iconPath && [iconPath isAbsolutePath] == NO)
|
|
|
|
{
|
|
|
|
NSString *file = iconPath;
|
|
|
|
|
|
|
|
iconPath = [bundle pathForImageResource: file];
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If there is no icon in the Resources of the app, try
|
|
|
|
* looking directly in the app wrapper.
|
|
|
|
*/
|
|
|
|
if (iconPath == nil)
|
|
|
|
{
|
|
|
|
iconPath = [fullPath stringByAppendingPathComponent: file];
|
|
|
|
if ([mgr isReadableFileAtPath: iconPath] == NO)
|
|
|
|
{
|
|
|
|
iconPath = nil;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If there is no icon specified in the Info.plist for app
|
|
|
|
* try 'wrapper/app.tiff'
|
|
|
|
*/
|
|
|
|
if (iconPath == nil)
|
|
|
|
{
|
|
|
|
NSString *str;
|
|
|
|
|
|
|
|
str = [fullPath lastPathComponent];
|
|
|
|
str = [str stringByDeletingPathExtension];
|
|
|
|
iconPath = [fullPath stringByAppendingPathComponent: str];
|
|
|
|
iconPath = [iconPath stringByAppendingPathExtension: @"tiff"];
|
|
|
|
|
|
|
|
if ([mgr isReadableFileAtPath: iconPath] == NO)
|
|
|
|
{
|
|
|
|
iconPath = nil;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (iconPath != nil)
|
|
|
|
{
|
|
|
|
image = [self _saveImageFor: iconPath];
|
|
|
|
}
|
|
|
|
|
|
|
|
return image;
|
1999-08-19 23:30:03 +00:00
|
|
|
}
|
|
|
|
|
2002-01-22 09:58:44 +00:00
|
|
|
/**
|
|
|
|
* Requires the path to an application wrapper as an argument, and returns
|
|
|
|
* the full path to the executable.
|
1999-09-01 11:15:27 +00:00
|
|
|
*/
|
1999-08-19 23:30:03 +00:00
|
|
|
- (NSString*) locateApplicationBinary: (NSString*)appName
|
|
|
|
{
|
|
|
|
NSString *path;
|
|
|
|
NSString *file;
|
1999-09-01 11:15:27 +00:00
|
|
|
NSBundle *bundle = [self bundleForApp: appName];
|
1999-08-19 23:30:03 +00:00
|
|
|
|
|
|
|
if (bundle == nil)
|
1999-09-01 11:15:27 +00:00
|
|
|
{
|
|
|
|
return nil;
|
|
|
|
}
|
1999-08-19 23:30:03 +00:00
|
|
|
path = [bundle bundlePath];
|
1999-06-03 04:53:12 +00:00
|
|
|
file = [[bundle infoDictionary] objectForKey: @"NSExecutable"];
|
1999-08-19 23:30:03 +00:00
|
|
|
|
1999-09-01 11:15:27 +00:00
|
|
|
if (file == nil)
|
1999-06-03 04:53:12 +00:00
|
|
|
{
|
1999-09-01 11:15:27 +00:00
|
|
|
/*
|
|
|
|
* If there is no executable specified in the info property-list, then
|
|
|
|
* we expect the executable to reside within the app wrapper and to
|
|
|
|
* have the same name as the app wrapper but without the extension.
|
|
|
|
*/
|
|
|
|
file = [path lastPathComponent];
|
|
|
|
file = [file stringByDeletingPathExtension];
|
|
|
|
path = [path stringByAppendingPathComponent: file];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* If there is an executable specified in the info property-list, then
|
|
|
|
* it can be either an absolute path, or a path relative to the app
|
|
|
|
* wrapper, so we make sure we end up with an absolute path to return.
|
|
|
|
*/
|
|
|
|
if ([file isAbsolutePath] == YES)
|
1999-06-03 04:53:12 +00:00
|
|
|
{
|
1999-09-01 11:15:27 +00:00
|
|
|
path = file;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-10-24 09:29:43 +00:00
|
|
|
path = [path stringByAppendingPathComponent: file];
|
1999-06-03 04:53:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-09-01 11:15:27 +00:00
|
|
|
return path;
|
1999-06-03 04:53:12 +00:00
|
|
|
}
|
|
|
|
|
2002-01-22 09:58:44 +00:00
|
|
|
/**
|
|
|
|
* Sets up a user preference for which app should be used to open files
|
|
|
|
* of the specified extension.
|
|
|
|
*/
|
1999-04-28 11:16:26 +00:00
|
|
|
- (void) setBestApp: (NSString*)appName
|
|
|
|
inRole: (NSString*)role
|
|
|
|
forExtension: (NSString*)ext
|
|
|
|
{
|
|
|
|
NSMutableDictionary *map;
|
|
|
|
NSMutableDictionary *inf;
|
|
|
|
NSData *data;
|
|
|
|
|
|
|
|
ext = [ext lowercaseString];
|
2000-04-28 19:35:42 +00:00
|
|
|
if (extPreferences != nil)
|
1999-04-28 11:16:26 +00:00
|
|
|
map = [extPreferences mutableCopy];
|
|
|
|
else
|
|
|
|
map = [NSMutableDictionary new];
|
|
|
|
|
|
|
|
inf = [[map objectForKey: ext] mutableCopy];
|
|
|
|
if (inf == nil)
|
|
|
|
{
|
|
|
|
inf = [NSMutableDictionary new];
|
|
|
|
}
|
|
|
|
if (appName == nil)
|
|
|
|
{
|
|
|
|
if (role == nil)
|
|
|
|
{
|
|
|
|
NSString *iconPath = [inf objectForKey: @"Icon"];
|
|
|
|
|
1999-09-01 11:15:27 +00:00
|
|
|
RETAIN(iconPath);
|
1999-04-28 11:16:26 +00:00
|
|
|
[inf removeAllObjects];
|
|
|
|
if (iconPath)
|
|
|
|
{
|
|
|
|
[inf setObject: iconPath forKey: @"Icon"];
|
1999-09-01 11:15:27 +00:00
|
|
|
RELEASE(iconPath);
|
1999-04-28 11:16:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
[inf removeObjectForKey: role];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
[inf setObject: appName forKey: (role ? role : @"Editor")];
|
|
|
|
}
|
|
|
|
[map setObject: inf forKey: ext];
|
1999-09-01 11:15:27 +00:00
|
|
|
RELEASE(inf);
|
|
|
|
RELEASE(extPreferences);
|
2000-04-28 19:35:42 +00:00
|
|
|
extPreferences = map;
|
1999-04-28 11:16:26 +00:00
|
|
|
data = [NSSerializer serializePropertyList: extPreferences];
|
|
|
|
[data writeToFile: extPrefPath atomically: YES];
|
|
|
|
}
|
|
|
|
|
2002-01-22 09:58:44 +00:00
|
|
|
/**
|
|
|
|
* Sets up a user preference for which icon should be used to
|
|
|
|
* represent the specified file extension.
|
|
|
|
*/
|
1999-04-28 11:16:26 +00:00
|
|
|
- (void) setBestIcon: (NSString*)iconPath forExtension: (NSString*)ext
|
|
|
|
{
|
|
|
|
NSMutableDictionary *map;
|
|
|
|
NSMutableDictionary *inf;
|
|
|
|
NSData *data;
|
|
|
|
|
|
|
|
ext = [ext lowercaseString];
|
2000-04-28 19:35:42 +00:00
|
|
|
if (extPreferences != nil)
|
1999-04-28 11:16:26 +00:00
|
|
|
map = [extPreferences mutableCopy];
|
|
|
|
else
|
|
|
|
map = [NSMutableDictionary new];
|
|
|
|
|
|
|
|
inf = [[map objectForKey: ext] mutableCopy];
|
|
|
|
if (inf == nil)
|
|
|
|
inf = [NSMutableDictionary new];
|
|
|
|
if (iconPath)
|
|
|
|
[inf setObject: iconPath forKey: @"Icon"];
|
|
|
|
else
|
|
|
|
[inf removeObjectForKey: @"Icon"];
|
|
|
|
[map setObject: inf forKey: ext];
|
1999-09-01 11:15:27 +00:00
|
|
|
RELEASE(inf);
|
|
|
|
RELEASE(extPreferences);
|
2000-04-28 19:35:42 +00:00
|
|
|
extPreferences = map;
|
1999-04-28 11:16:26 +00:00
|
|
|
data = [NSSerializer serializePropertyList: extPreferences];
|
|
|
|
[data writeToFile: extPrefPath atomically: YES];
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
2001-12-01 21:14:51 +00:00
|
|
|
|
|
|
|
@implementation NSWorkspace (Private)
|
|
|
|
|
2002-01-22 18:23:56 +00:00
|
|
|
- (NSImage*) _extIconForApp: (NSString*)appName info: (NSDictionary*)extInfo
|
2001-12-01 21:14:51 +00:00
|
|
|
{
|
|
|
|
NSDictionary *typeInfo = [extInfo objectForKey: appName];
|
2002-01-22 09:58:44 +00:00
|
|
|
NSString *file = [typeInfo objectForKey: @"NSIcon"];
|
2001-12-01 21:14:51 +00:00
|
|
|
|
2005-03-30 03:13:43 +00:00
|
|
|
if (file && [file length] != 0)
|
2001-12-01 21:14:51 +00:00
|
|
|
{
|
|
|
|
if ([file isAbsolutePath] == NO)
|
|
|
|
{
|
|
|
|
NSString *iconPath;
|
|
|
|
NSBundle *bundle;
|
|
|
|
|
|
|
|
bundle = [self bundleForApp: appName];
|
|
|
|
iconPath = [bundle pathForImageResource: file];
|
|
|
|
/*
|
|
|
|
* If the icon is not in the Resources of the app, try looking
|
|
|
|
* directly in the app wrapper.
|
|
|
|
*/
|
|
|
|
if (iconPath == nil)
|
|
|
|
{
|
2003-10-24 09:29:43 +00:00
|
|
|
iconPath = [[bundle bundlePath]
|
|
|
|
stringByAppendingPathComponent: file];
|
2001-12-01 21:14:51 +00:00
|
|
|
}
|
|
|
|
file = iconPath;
|
|
|
|
}
|
|
|
|
if ([[NSFileManager defaultManager] isReadableFileAtPath: file] == YES)
|
|
|
|
{
|
2003-09-01 16:58:54 +00:00
|
|
|
return [self _saveImageFor: file];
|
2001-12-01 21:14:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
|
2005-03-30 03:13:43 +00:00
|
|
|
/** Returns the default icon to display for a file */
|
2002-01-22 18:23:56 +00:00
|
|
|
- (NSImage*) unknownFiletypeImage
|
2001-12-01 21:14:51 +00:00
|
|
|
{
|
|
|
|
static NSImage *image = nil;
|
|
|
|
|
|
|
|
if (image == nil)
|
|
|
|
{
|
2004-10-30 11:19:07 +00:00
|
|
|
image = RETAIN([NSImage _standardImageWithName: @"Unknown.tiff"]);
|
2001-12-01 21:14:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return image;
|
|
|
|
}
|
|
|
|
|
2003-09-01 16:58:54 +00:00
|
|
|
/** Try to create the image in an exception handling context */
|
|
|
|
- (NSImage*) _saveImageFor: (NSString*)iconPath
|
|
|
|
{
|
|
|
|
NSImage *tmp = nil;
|
|
|
|
|
|
|
|
NS_DURING
|
|
|
|
{
|
|
|
|
tmp = [[NSImage alloc] initWithContentsOfFile: iconPath];
|
|
|
|
if (tmp != nil)
|
|
|
|
{
|
|
|
|
AUTORELEASE(tmp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
NS_HANDLER
|
|
|
|
{
|
|
|
|
NSLog(@"BAD TIFF FILE '%@'", iconPath);
|
|
|
|
}
|
|
|
|
NS_ENDHANDLER
|
|
|
|
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Returns the freedesktop thumbnail file name for a given file name */
|
|
|
|
- (NSString*) thumbnailForFile: (NSString *)file
|
|
|
|
{
|
|
|
|
NSString *absolute;
|
|
|
|
NSString *digest;
|
|
|
|
NSString *thumbnail;
|
|
|
|
|
|
|
|
absolute = [[NSURL fileURLWithPath: [file stringByStandardizingPath]]
|
|
|
|
absoluteString];
|
2003-10-24 09:29:43 +00:00
|
|
|
// This compensates for a feature we have in NSURL, that is there to have
|
2003-09-01 16:58:54 +00:00
|
|
|
// MacOSX compatibility.
|
|
|
|
if ([absolute hasPrefix: @"file://localhost/"])
|
|
|
|
{
|
|
|
|
absolute = [@"file:///" stringByAppendingString:
|
|
|
|
[absolute substringWithRange:
|
|
|
|
NSMakeRange(17, [absolute length] - 17)]];
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: Not sure which encoding to use here.
|
|
|
|
digest = [[[[absolute dataUsingEncoding: NSASCIIStringEncoding]
|
|
|
|
md5Digest] hexadecimalRepresentation] lowercaseString];
|
|
|
|
thumbnail = [@"~/.thumbnails/normal" stringByAppendingPathComponent:
|
|
|
|
[digest stringByAppendingPathExtension: @"png"]];
|
|
|
|
|
|
|
|
return [thumbnail stringByStandardizingPath];
|
|
|
|
}
|
|
|
|
|
2001-12-01 21:14:51 +00:00
|
|
|
- (NSImage*) _iconForExtension: (NSString*)ext
|
|
|
|
{
|
|
|
|
NSImage *icon = nil;
|
|
|
|
|
|
|
|
if (ext == nil || [ext isEqualToString: @""])
|
2002-01-22 09:58:44 +00:00
|
|
|
{
|
|
|
|
return nil;
|
|
|
|
}
|
2001-12-01 21:14:51 +00:00
|
|
|
/*
|
|
|
|
* extensions are case-insensitive - convert to lowercase.
|
|
|
|
*/
|
|
|
|
ext = [ext lowercaseString];
|
|
|
|
if ((icon = [_iconMap objectForKey: ext]) == nil)
|
|
|
|
{
|
|
|
|
NSDictionary *prefs;
|
|
|
|
NSDictionary *extInfo;
|
|
|
|
NSString *iconPath;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If there is a user-specified preference for an image -
|
|
|
|
* try to use that one.
|
|
|
|
*/
|
|
|
|
prefs = [extPreferences objectForKey: ext];
|
|
|
|
iconPath = [prefs objectForKey: @"Icon"];
|
|
|
|
if (iconPath)
|
|
|
|
{
|
2003-09-01 16:58:54 +00:00
|
|
|
icon = [self _saveImageFor: iconPath];
|
2001-12-01 21:14:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (icon == nil && (extInfo = [self infoForExtension: ext]) != nil)
|
|
|
|
{
|
|
|
|
NSString *appName;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If there are any application preferences given, try to use the
|
|
|
|
* icon for this file that is used by the preferred app.
|
|
|
|
*/
|
|
|
|
if (prefs)
|
|
|
|
{
|
|
|
|
if ((appName = [extInfo objectForKey: @"Editor"]) != nil)
|
|
|
|
{
|
|
|
|
icon = [self _extIconForApp: appName info: extInfo];
|
|
|
|
}
|
|
|
|
if (icon == nil
|
|
|
|
&& (appName = [extInfo objectForKey: @"Viewer"]) != nil)
|
|
|
|
{
|
|
|
|
icon = [self _extIconForApp: appName info: extInfo];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (icon == nil)
|
|
|
|
{
|
|
|
|
NSEnumerator *enumerator;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Still no icon - try all the apps that handle this file
|
|
|
|
* extension.
|
|
|
|
*/
|
|
|
|
enumerator = [extInfo keyEnumerator];
|
|
|
|
while (icon == nil && (appName = [enumerator nextObject]) != nil)
|
|
|
|
{
|
|
|
|
icon = [self _extIconForApp: appName info: extInfo];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Nothing found at all - use the unknowntype icon.
|
|
|
|
*/
|
|
|
|
if (icon == nil)
|
|
|
|
{
|
2003-05-11 11:00:04 +00:00
|
|
|
if ([ext isEqualToString: @"app"] == YES
|
|
|
|
|| [ext isEqualToString: @"debug"] == YES
|
|
|
|
|| [ext isEqualToString: @"profile"] == YES)
|
|
|
|
{
|
2003-05-11 14:41:32 +00:00
|
|
|
if (unknownApplication == nil)
|
2003-05-11 11:00:04 +00:00
|
|
|
{
|
2004-10-30 11:19:07 +00:00
|
|
|
unknownApplication = RETAIN([NSImage _standardImageWithName:
|
|
|
|
@"UnknownApplication.tiff"]);
|
2003-05-11 11:00:04 +00:00
|
|
|
}
|
2003-05-11 14:41:32 +00:00
|
|
|
icon = unknownApplication;
|
2003-05-11 11:00:04 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
icon = [self unknownFiletypeImage];
|
|
|
|
}
|
2001-12-01 21:14:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set the icon in the cache for next time.
|
|
|
|
*/
|
|
|
|
if (icon != nil)
|
2002-01-22 09:58:44 +00:00
|
|
|
{
|
|
|
|
[_iconMap setObject: icon forKey: ext];
|
|
|
|
}
|
2001-12-01 21:14:51 +00:00
|
|
|
}
|
|
|
|
return icon;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL) _extension: (NSString*)ext
|
|
|
|
role: (NSString*)role
|
|
|
|
app: (NSString**)app
|
|
|
|
{
|
|
|
|
NSEnumerator *enumerator;
|
|
|
|
NSString *appName = nil;
|
2002-01-22 13:20:20 +00:00
|
|
|
NSDictionary *apps = [self infoForExtension: ext];
|
2001-12-01 21:14:51 +00:00
|
|
|
NSDictionary *prefs;
|
|
|
|
NSDictionary *info;
|
|
|
|
|
|
|
|
ext = [ext lowercaseString];
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Look for the name of the preferred app in this role.
|
|
|
|
* A 'nil' roll is a wildcard - find the preferred Editor or Viewer.
|
|
|
|
*/
|
|
|
|
prefs = [extPreferences objectForKey: ext];
|
|
|
|
if (role == nil || [role isEqualToString: @"Editor"])
|
|
|
|
{
|
|
|
|
appName = [prefs objectForKey: @"Editor"];
|
|
|
|
if (appName != nil)
|
|
|
|
{
|
|
|
|
info = [apps objectForKey: appName];
|
|
|
|
if (info != nil)
|
|
|
|
{
|
|
|
|
if (app != 0)
|
2002-01-22 09:58:44 +00:00
|
|
|
{
|
|
|
|
*app = appName;
|
|
|
|
}
|
2002-01-22 13:20:20 +00:00
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
else if ([self locateApplicationBinary: appName] != nil)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Return the preferred application even though it doesn't
|
|
|
|
* say it opens this type of file ... preferences overrule.
|
|
|
|
*/
|
|
|
|
if (app != 0)
|
2002-01-22 09:58:44 +00:00
|
|
|
{
|
2002-01-22 13:20:20 +00:00
|
|
|
*app = appName;
|
2002-01-22 09:58:44 +00:00
|
|
|
}
|
2001-12-01 21:14:51 +00:00
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (role == nil || [role isEqualToString: @"Viewer"])
|
|
|
|
{
|
|
|
|
appName = [prefs objectForKey: @"Viewer"];
|
|
|
|
if (appName != nil)
|
|
|
|
{
|
|
|
|
info = [apps objectForKey: appName];
|
|
|
|
if (info != nil)
|
|
|
|
{
|
|
|
|
if (app != 0)
|
2002-01-22 09:58:44 +00:00
|
|
|
{
|
|
|
|
*app = appName;
|
|
|
|
}
|
2002-01-22 13:20:20 +00:00
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
else if ([self locateApplicationBinary: appName] != nil)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Return the preferred application even though it doesn't
|
|
|
|
* say it opens this type of file ... preferences overrule.
|
|
|
|
*/
|
|
|
|
if (app != 0)
|
2002-01-22 09:58:44 +00:00
|
|
|
{
|
2002-01-22 13:20:20 +00:00
|
|
|
*app = appName;
|
2002-01-22 09:58:44 +00:00
|
|
|
}
|
2001-12-01 21:14:51 +00:00
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Go through the dictionary of apps that know about this file type and
|
|
|
|
* determine the best application to open the file by examining the
|
|
|
|
* type information for each app.
|
|
|
|
* The 'NSRole' field specifies what the app can do with the file - if it
|
|
|
|
* is missing, we assume an 'Editor' role.
|
|
|
|
*/
|
2002-01-22 09:58:44 +00:00
|
|
|
if (apps == nil || [apps count] == 0)
|
|
|
|
{
|
|
|
|
return NO;
|
|
|
|
}
|
2001-12-01 21:14:51 +00:00
|
|
|
enumerator = [apps keyEnumerator];
|
|
|
|
|
|
|
|
if (role == nil)
|
|
|
|
{
|
|
|
|
BOOL found = NO;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the requested role is 'nil', we can accept an app that is either
|
|
|
|
* an Editor (preferred) or a Viewer.
|
|
|
|
*/
|
|
|
|
while ((appName = [enumerator nextObject]) != nil)
|
|
|
|
{
|
|
|
|
NSString *str;
|
|
|
|
|
|
|
|
info = [apps objectForKey: appName];
|
|
|
|
str = [info objectForKey: @"NSRole"];
|
|
|
|
if (str == nil || [str isEqualToString: @"Editor"])
|
|
|
|
{
|
|
|
|
if (app != 0)
|
2002-01-22 13:20:20 +00:00
|
|
|
{
|
|
|
|
*app = appName;
|
|
|
|
}
|
2001-12-01 21:14:51 +00:00
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
else if ([str isEqualToString: @"Viewer"])
|
|
|
|
{
|
|
|
|
if (app != 0)
|
2002-01-22 13:20:20 +00:00
|
|
|
{
|
|
|
|
*app = appName;
|
|
|
|
}
|
2001-12-01 21:14:51 +00:00
|
|
|
found = YES;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return found;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
while ((appName = [enumerator nextObject]) != nil)
|
|
|
|
{
|
|
|
|
NSString *str;
|
|
|
|
|
|
|
|
info = [apps objectForKey: appName];
|
|
|
|
str = [info objectForKey: @"NSRole"];
|
|
|
|
if ((str == nil && [role isEqualToString: @"Editor"])
|
|
|
|
|| [str isEqualToString: role])
|
|
|
|
{
|
|
|
|
if (app != 0)
|
2002-01-22 13:20:20 +00:00
|
|
|
{
|
|
|
|
*app = appName;
|
|
|
|
}
|
2001-12-01 21:14:51 +00:00
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-01-10 16:33:39 +00:00
|
|
|
/**
|
|
|
|
* Launch an application ... if there is a workspace application, ask it
|
|
|
|
* to perform the launch for us. Otherwise we try to launch the app
|
|
|
|
* ourself as long as it is on the same host as we are.
|
|
|
|
*/
|
2002-01-22 18:23:56 +00:00
|
|
|
- (BOOL) _launchApplication: (NSString*)appName
|
|
|
|
arguments: (NSArray*)args
|
2001-12-01 21:14:51 +00:00
|
|
|
{
|
2002-01-10 16:33:39 +00:00
|
|
|
id app = nil;
|
2001-12-01 21:14:51 +00:00
|
|
|
|
2002-01-10 16:33:39 +00:00
|
|
|
// app = [self _workspaceApplication];
|
|
|
|
if (app != nil)
|
|
|
|
{
|
|
|
|
return [app _launchApplication: appName arguments: args];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-01-22 18:23:56 +00:00
|
|
|
NSTask *task;
|
2002-01-10 16:33:39 +00:00
|
|
|
NSString *path;
|
|
|
|
NSDictionary *userinfo;
|
|
|
|
NSString *host;
|
2001-12-01 21:14:51 +00:00
|
|
|
|
2002-01-10 16:33:39 +00:00
|
|
|
path = [self locateApplicationBinary: appName];
|
|
|
|
if (path == nil)
|
|
|
|
{
|
|
|
|
return NO;
|
|
|
|
}
|
2001-12-01 21:14:51 +00:00
|
|
|
|
2002-01-10 16:33:39 +00:00
|
|
|
/*
|
|
|
|
* Try to ensure that apps we launch display in this workspace
|
|
|
|
* ie they have the same -NSHost specification.
|
|
|
|
*/
|
|
|
|
host = [[NSUserDefaults standardUserDefaults] stringForKey: @"NSHost"];
|
|
|
|
if (host != nil)
|
|
|
|
{
|
|
|
|
NSHost *h;
|
2001-12-01 21:14:51 +00:00
|
|
|
|
2002-01-10 16:33:39 +00:00
|
|
|
h = [NSHost hostWithName: host];
|
|
|
|
if ([h isEqual: [NSHost currentHost]] == NO)
|
|
|
|
{
|
|
|
|
if ([args containsObject: @"-NSHost"] == NO)
|
|
|
|
{
|
|
|
|
NSMutableArray *a;
|
|
|
|
|
|
|
|
if (args == nil)
|
|
|
|
{
|
|
|
|
a = [NSMutableArray arrayWithCapacity: 2];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
a = AUTORELEASE([args mutableCopy]);
|
|
|
|
}
|
|
|
|
[a insertObject: @"-NSHost" atIndex: 0];
|
|
|
|
[a insertObject: host atIndex: 1];
|
|
|
|
args = a;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* App being launched, send
|
|
|
|
* NSWorkspaceWillLaunchApplicationNotification
|
|
|
|
*/
|
2003-05-21 22:08:17 +00:00
|
|
|
userinfo = [NSDictionary dictionaryWithObjectsAndKeys:
|
|
|
|
[[appName lastPathComponent] stringByDeletingPathExtension],
|
|
|
|
@"NSApplicationName",
|
|
|
|
appName, @"NSApplicationPath",
|
|
|
|
nil];
|
2002-01-10 16:33:39 +00:00
|
|
|
[_workspaceCenter
|
|
|
|
postNotificationName: NSWorkspaceWillLaunchApplicationNotification
|
|
|
|
object: self
|
|
|
|
userInfo: userinfo];
|
|
|
|
|
2002-01-22 18:23:56 +00:00
|
|
|
task = [NSTask launchedTaskWithLaunchPath: path arguments: args];
|
|
|
|
if (task == nil)
|
2002-01-10 16:33:39 +00:00
|
|
|
{
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* The NSWorkspaceDidLaunchApplicationNotification will be
|
|
|
|
* sent by the started application itself.
|
|
|
|
*/
|
2002-01-22 18:23:56 +00:00
|
|
|
[_launched setObject: task forKey: appName];
|
2002-01-10 16:33:39 +00:00
|
|
|
return YES;
|
|
|
|
}
|
2001-12-01 21:14:51 +00:00
|
|
|
}
|
|
|
|
|
2002-01-22 18:23:56 +00:00
|
|
|
- (id) _connectApplication: (NSString*)appName
|
2001-12-01 21:14:51 +00:00
|
|
|
{
|
2002-01-10 16:33:39 +00:00
|
|
|
NSString *host;
|
|
|
|
NSString *port;
|
2002-01-22 18:23:56 +00:00
|
|
|
NSDate *when = nil;
|
2002-01-10 16:33:39 +00:00
|
|
|
id app = nil;
|
|
|
|
|
2003-04-10 09:04:24 +00:00
|
|
|
while (app == nil)
|
2002-01-10 16:33:39 +00:00
|
|
|
{
|
2002-01-22 18:23:56 +00:00
|
|
|
host = [[NSUserDefaults standardUserDefaults] stringForKey: @"NSHost"];
|
|
|
|
if (host == nil)
|
2002-01-10 16:33:39 +00:00
|
|
|
{
|
|
|
|
host = @"";
|
|
|
|
}
|
2002-01-22 18:23:56 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
NSHost *h;
|
|
|
|
|
|
|
|
h = [NSHost hostWithName: host];
|
|
|
|
if ([h isEqual: [NSHost currentHost]] == YES)
|
|
|
|
{
|
|
|
|
host = @"";
|
|
|
|
}
|
|
|
|
}
|
2003-10-25 10:56:00 +00:00
|
|
|
port = [[appName lastPathComponent] stringByDeletingPathExtension];
|
2002-01-22 18:23:56 +00:00
|
|
|
/*
|
|
|
|
* Try to contact a running application.
|
|
|
|
*/
|
|
|
|
NS_DURING
|
|
|
|
{
|
|
|
|
app = [NSConnection rootProxyForConnectionWithRegisteredName: port
|
|
|
|
host: host];
|
|
|
|
}
|
|
|
|
NS_HANDLER
|
|
|
|
{
|
|
|
|
/* Fatal error in DO */
|
|
|
|
app = nil;
|
|
|
|
}
|
|
|
|
NS_ENDHANDLER
|
|
|
|
|
|
|
|
if (app == nil)
|
|
|
|
{
|
|
|
|
NSTask *task = [_launched objectForKey: appName];
|
2003-04-10 09:04:24 +00:00
|
|
|
NSDate *limit;
|
2001-12-01 21:14:51 +00:00
|
|
|
|
2003-04-10 09:04:24 +00:00
|
|
|
if (task == nil || [task isRunning] == NO)
|
2002-01-22 18:23:56 +00:00
|
|
|
{
|
2003-04-10 09:04:24 +00:00
|
|
|
if (task != nil) // Not running
|
2002-01-22 18:23:56 +00:00
|
|
|
{
|
2003-04-10 09:04:24 +00:00
|
|
|
[_launched removeObjectForKey: appName];
|
2002-01-22 18:23:56 +00:00
|
|
|
}
|
2003-04-10 09:04:24 +00:00
|
|
|
break; // Need to launch the app
|
|
|
|
}
|
2002-01-22 18:23:56 +00:00
|
|
|
|
2003-04-10 09:04:24 +00:00
|
|
|
if (when == nil)
|
|
|
|
{
|
|
|
|
when = [[NSDate alloc] init];
|
|
|
|
}
|
|
|
|
else if ([when timeIntervalSinceNow] < -5.0)
|
|
|
|
{
|
|
|
|
int result;
|
2002-01-22 18:23:56 +00:00
|
|
|
|
2003-04-10 09:04:24 +00:00
|
|
|
DESTROY(when);
|
|
|
|
result = NSRunAlertPanel(appName,
|
|
|
|
@"Application seems to have hung",
|
|
|
|
@"Continue", @"Terminate", @"Wait");
|
|
|
|
|
|
|
|
if (result == NSAlertDefaultReturn)
|
|
|
|
{
|
|
|
|
break; // Finished without app
|
2002-01-22 18:23:56 +00:00
|
|
|
}
|
2003-04-10 09:04:24 +00:00
|
|
|
else if (result == NSAlertOtherReturn)
|
2002-01-22 18:23:56 +00:00
|
|
|
{
|
2003-04-10 09:04:24 +00:00
|
|
|
// Continue to wait for app startup.
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
[task terminate];
|
|
|
|
[_launched removeObjectForKey: appName];
|
|
|
|
break; // Terminate hung app
|
2002-01-22 18:23:56 +00:00
|
|
|
}
|
|
|
|
}
|
2003-04-10 09:04:24 +00:00
|
|
|
|
|
|
|
// Give it another 0.5 of a second to start up.
|
|
|
|
limit = [[NSDate alloc] initWithTimeIntervalSinceNow: 0.5];
|
|
|
|
[[NSRunLoop currentRunLoop] runUntilDate: limit];
|
|
|
|
RELEASE(limit);
|
2002-01-22 18:23:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
TEST_RELEASE(when);
|
2001-12-01 21:14:51 +00:00
|
|
|
return app;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (id) _workspaceApplication
|
|
|
|
{
|
2002-01-10 16:33:39 +00:00
|
|
|
NSUserDefaults *defs = [NSUserDefaults standardUserDefaults];
|
|
|
|
NSString *appName;
|
|
|
|
id app;
|
2001-12-01 21:14:51 +00:00
|
|
|
|
|
|
|
/* What Workspace application? */
|
2001-12-07 23:02:55 +00:00
|
|
|
appName = [defs stringForKey: @"GSWorkspaceApplication"];
|
2001-12-01 21:14:51 +00:00
|
|
|
if (appName == nil)
|
2002-01-10 16:33:39 +00:00
|
|
|
{
|
2002-11-05 05:04:40 +00:00
|
|
|
appName = @"GWorkspace";
|
2002-01-10 16:33:39 +00:00
|
|
|
}
|
2001-12-01 21:14:51 +00:00
|
|
|
|
|
|
|
app = [self _connectApplication: appName];
|
|
|
|
if (app == nil)
|
|
|
|
{
|
2002-01-10 16:33:39 +00:00
|
|
|
NSString *host;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* We don't use -_launchApplication:arguents: here as that method
|
|
|
|
* calls -_workspaceApplication, and would cause recursion.
|
|
|
|
*/
|
|
|
|
host = [[NSUserDefaults standardUserDefaults] stringForKey: @"NSHost"];
|
|
|
|
if (host == nil)
|
|
|
|
{
|
|
|
|
host = @"";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
NSHost *h;
|
|
|
|
|
|
|
|
h = [NSHost hostWithName: host];
|
|
|
|
if ([h isEqual: [NSHost currentHost]] == YES)
|
|
|
|
{
|
|
|
|
host = @"";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* We can only launch a workspace app if we are displaying to the
|
|
|
|
* local host (since if we are displaying on another host we want
|
|
|
|
* to to talk to the workspace app on that host too).
|
|
|
|
*/
|
|
|
|
if ([host isEqual: @""] == YES)
|
|
|
|
{
|
|
|
|
if ([self _launchApplication: appName arguments: nil] == YES)
|
|
|
|
{
|
|
|
|
app = [self _connectApplication: appName];
|
|
|
|
}
|
|
|
|
}
|
2001-12-01 21:14:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return app;
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|