mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 17:10:48 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@20923 72102866-910b-0410-8b05-ffd578937521
1393 lines
41 KiB
Objective-C
1393 lines
41 KiB
Objective-C
/* Implementation of filesystem & path-related functions for GNUstep
|
|
Copyright (C) 1996-2004 Free Software Foundation, Inc.
|
|
|
|
Written by: Andrew Kachites McCallum <address@hidden>
|
|
Created: May 1996
|
|
Rewrite by: Sheldon Gill
|
|
Date: Jan 2004
|
|
|
|
This file is part of the GNUstep Base 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
|
|
License along with this library; if not, write to the Free
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
|
|
|
<title>NSPathUtilities function reference</title>
|
|
$Date$ $Revision$
|
|
*/
|
|
|
|
/**
|
|
<unit>
|
|
<heading>Path Utility Functions</heading>
|
|
<p>
|
|
Path utilities provides functions to dynamically discover paths
|
|
for the platform the application is running on.
|
|
This avoids the need for hard coding paths, making porting easier
|
|
and also allowing for places to change without breaking
|
|
applications.
|
|
(why do this? Well imagine we're running GNUstep 1 and the new
|
|
wonderful GNUstep 2 becomes available but we're not sure of it
|
|
yet. You could install /GNUstep/System2/ and have applications
|
|
use which ever System you wanted at the time...)
|
|
</p>
|
|
<p>
|
|
On unix systems, the paths are initialised by reading a configuration
|
|
file. Something like "/etc/GNUstep/GNUstep.conf". This provides the basic
|
|
information required by the library to establish all locations required.
|
|
</p>
|
|
<p>
|
|
On windows, the paths are initialised by reading information from the
|
|
windows registry.
|
|
HKEY_LOCAL_MACHINE\Software\GNU\GNUstep contains the machine wide
|
|
definititions for system paths.
|
|
</p>
|
|
<p>
|
|
See <REF "filesystem.pdf">GNUstep File System Heirarchy</REF> document
|
|
for more information and detailed descriptions.</p>
|
|
</unit>
|
|
*/
|
|
|
|
#include "config.h"
|
|
#include "GNUstepBase/preface.h"
|
|
#include "Foundation/NSObjCRuntime.h"
|
|
#include "Foundation/NSString.h"
|
|
#include "Foundation/NSPathUtilities.h"
|
|
#include "Foundation/NSException.h"
|
|
#include "Foundation/NSArray.h"
|
|
#include "Foundation/NSDebug.h"
|
|
#include "Foundation/NSDictionary.h"
|
|
#include "Foundation/NSFileManager.h"
|
|
#include "Foundation/NSProcessInfo.h"
|
|
#include "Foundation/NSString.h"
|
|
#include "Foundation/NSValue.h"
|
|
#include "Foundation/NSLock.h"
|
|
#include "Foundation/NSUserDefaults.h"
|
|
#include "GNUstepBase/GSCategories.h"
|
|
#if defined(__WIN32__)
|
|
#include "GNUstepBase/Win32_Utilities.h"
|
|
#endif
|
|
|
|
#include "GSPrivate.h"
|
|
#include "GNUstepBase/Win32Support.h"
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h> // for getuid()
|
|
#endif
|
|
#ifdef HAVE_PWD_H
|
|
#include <pwd.h> // for getpwnam()
|
|
#endif
|
|
#include <sys/types.h>
|
|
#include <stdio.h>
|
|
|
|
/* Defines used to highlight design decisions. It's possible these could
|
|
be made compile time or even user configurable.
|
|
*/
|
|
#define OPTION_PLATFORM_SUPPORT // To find platform specific things
|
|
//#define OPTION_COMPILED_PATHS // Only use compile time path information
|
|
//#define OPTION_NO_ENVIRONMENT // Don't use environment vars for path info
|
|
|
|
#define lowlevelstringify(X) #X
|
|
#define stringify(X) lowlevelstringify(X)
|
|
|
|
/* The global configuration file. The real value is read from config.h */
|
|
#ifndef GNUSTEP_CONFIGURATION_FILE
|
|
//#define GNUSTEP_CONFIGURATION_FILE /usr/GNUstep/System/.GNUsteprc
|
|
#define GNUSTEP_CONFIGURATION_FILE /etc/GNUstep/GNUstep.conf
|
|
#endif
|
|
/* The name of the user-specific configuration file */
|
|
#define DEFAULT_STEPRC_FILE @".GNUsteprc"
|
|
/* The standard path for user Defaults files */
|
|
#define DEFAULT_DEFAULTS_PATH @"Defaults"
|
|
/* The standard path to user GNUstep resources */
|
|
#define DEFAULT_USER_ROOT @"GNUstep"
|
|
|
|
|
|
#define MGR() [NSFileManager defaultManager]
|
|
|
|
/*
|
|
* NB. use fprintf() rather than NSLog() to avoid possibility of recursion
|
|
* when features of NSLog() cause patrh utilities to be used.
|
|
*/
|
|
#define PrintOnce(format, args...) \
|
|
do { static BOOL beenHere = NO; if (beenHere == NO) {\
|
|
beenHere = YES; \
|
|
fprintf(stderr, format, ## args); }} while (0)
|
|
|
|
/* ------------------ */
|
|
/* Internal variables */
|
|
/* ------------------ */
|
|
|
|
// For backwards compatibility
|
|
static BOOL forceD;
|
|
static BOOL forceU;
|
|
static NSString *oldDRoot;
|
|
static NSString *oldURoot;
|
|
|
|
static NSString *configFile;
|
|
|
|
/* names for the environment or conf-file variables */
|
|
//static NSString *USER_ROOT = @"GNUSTEP_USER_ROOT";
|
|
static NSString *LOCAL_ROOT = @"GNUSTEP_LOCAL_ROOT";
|
|
static NSString *NETWORK_ROOT = @"GNUSTEP_NETWORK_ROOT";
|
|
static NSString *SYSTEM_ROOT = @"GNUSTEP_SYSTEM_ROOT";
|
|
|
|
#ifdef OPTION_COMPILED_PATHS
|
|
static NSString *gnustepUserRoot = nil;
|
|
static NSString *gnustepLocalRoot = GNUSTEP_LOCAL_ROOT;
|
|
static NSString *gnustepNetworkRoot = GNUSTEP_NETWORK_ROOT;
|
|
static NSString *gnustepSystemRoot = GNUSTEP_INSTALL_PREFIX;
|
|
|
|
static NSString *gnustepRcFileName = nil;
|
|
static NSString *gnustepDefaultsPath = DEFAULT_STEPRC_FILE;
|
|
static NSString *gnustepUserPath = DEFAULT_USER_ROOT;
|
|
#else
|
|
/* We read these four paths only once */
|
|
static NSString *gnustepUserRoot = nil; /* GNUSTEP_USER_ROOT path */
|
|
static NSString *gnustepLocalRoot = nil; /* GNUSTEP_LOCAL_ROOT path */
|
|
static NSString *gnustepNetworkRoot = nil; /* GNUSTEP_NETWORK_ROOT path */
|
|
static NSString *gnustepSystemRoot = nil; /* GNUSTEP_SYSTEM_ROOT path */
|
|
|
|
static NSString *gnustepRcFileName = nil; /* .GNUsteprc file name */
|
|
static NSString *gnustepDefaultsPath = nil; /* Defaults dir in home */
|
|
static NSString *gnustepUserPath = nil; /* dir in home for user */
|
|
|
|
#endif /* OPTION_COMPILED_PATHS else */
|
|
|
|
static NSString *theUserName = nil; /* The user's login name */
|
|
static NSString *tempDir = nil; /* user's temporary directory */
|
|
|
|
#ifdef OPTION_PLATFORM_SUPPORT
|
|
static NSString *osSysPrefs = nil;
|
|
static NSString *osSysApps = nil;
|
|
static NSString *osSysLibs = nil;
|
|
static NSString *osSysAdmin = nil;
|
|
|
|
static NSString *platformResources = nil;
|
|
static NSString *platformApps = nil;
|
|
static NSString *platformLibs = nil;
|
|
static NSString *platformAdmin = nil;
|
|
|
|
static NSString *localResources = nil;
|
|
static NSString *localApps = nil;
|
|
static NSString *localLibs = nil;
|
|
|
|
/* Keys for Platform support in conf-file. */
|
|
#define SYS_APPS @"SYS_APPS"
|
|
#define SYS_LIBS @"SYS_LIBS"
|
|
#define SYS_PREFS @"SYS_PREFS"
|
|
#define SYS_ADMIN @"SYS_ADMIN"
|
|
#define SYS_RESOURCES @"SYS_RESOURCES"
|
|
|
|
#define PLATFORM_APPS @"PLATFORM_APPS"
|
|
#define PLATFORM_LIBS @"PLATFORM_LIBS"
|
|
#define PLATFORM_ADMIN @"PLATFORM_ADMIN"
|
|
#define PLATFORM_RESOURCES @"PLATFORM_RESOURCES"
|
|
|
|
#define PLATFORM_LOCAL_APPS @"PLATFORM_LOCAL_APPS"
|
|
#define PLATFORM_LOCAL_LIBS @"PLATFORM_LOCAL_LIBS"
|
|
#define PLATFORM_LOCAL_ADMIN @"PLATFORM_LOCAL_ADMIN"
|
|
#define PLATFORM_LOCAL_RESOURCES @"PLATFORM_LOCAL_RESOURCES"
|
|
#endif /* OPTION_PLATFORM_SUPPORT */
|
|
|
|
/* ============================= */
|
|
/* Internal function prototypes. */
|
|
/* ============================= */
|
|
static NSString *internalizePath(NSString *s);
|
|
static NSString *internalizePathCString(const char *c);
|
|
|
|
static NSString *setUserGNUstepPath(NSString *userName,
|
|
NSString **defaultsPath,
|
|
NSString **userPath);
|
|
|
|
static NSDictionary *GSReadStepConfFile(NSString *name);
|
|
|
|
static void InitialisePathUtilities(void);
|
|
static void ShutdownPathUtilities(void);
|
|
|
|
/* make sure that the path 'path' is in internal format (unix-style) */
|
|
static inline NSString*
|
|
internalizePathCString(const char *path)
|
|
{
|
|
unsigned int len;
|
|
|
|
if (path == 0)
|
|
{
|
|
return nil;
|
|
}
|
|
|
|
len = strlen(path);
|
|
return [MGR() stringWithFileSystemRepresentation: path length: len];
|
|
}
|
|
|
|
/* make sure that the path 's' is in internal format (unix-style) */
|
|
static inline NSString*
|
|
internalizePath(NSString *s)
|
|
{
|
|
const char *ptr;
|
|
unsigned int len;
|
|
|
|
if (s == nil)
|
|
{
|
|
return nil;
|
|
}
|
|
|
|
ptr = [s cString];
|
|
len = strlen(ptr);
|
|
return [MGR() stringWithFileSystemRepresentation: ptr length: len];
|
|
}
|
|
|
|
/* Convenience MACRO to ease legibility and coding */
|
|
/* Conditionally assign lval to var */
|
|
#define TEST_ASSIGN(var, lval) \
|
|
if ((var == nil)&&(lval != nil)) \
|
|
{ \
|
|
var = lval; \
|
|
}
|
|
|
|
/* Get a path string from a dictionary */
|
|
static inline NSString *
|
|
getPathConfig(NSDictionary *dict, NSString *key)
|
|
{
|
|
NSString *path;
|
|
|
|
NSCParameterAssert(dict!=nil);
|
|
|
|
path = [dict objectForKey: key];
|
|
if (path != nil)
|
|
{
|
|
path = internalizePath(path);
|
|
}
|
|
TEST_RETAIN(path);
|
|
|
|
return path;
|
|
}
|
|
|
|
|
|
static NSString *
|
|
removeTilde (NSString *home, NSString *val)
|
|
{
|
|
if ([val isEqual: @"~"])
|
|
{
|
|
val = @"";
|
|
}
|
|
else if ([val length] > 1 && [val characterAtIndex: 0] == '~')
|
|
{
|
|
val = [val substringFromIndex: 2];
|
|
}
|
|
return val;
|
|
}
|
|
|
|
/*
|
|
* Read .GNUsteprc file for user and set paths accordingly
|
|
*/
|
|
static NSString *setUserGNUstepPath(NSString *userName,
|
|
NSString **defaultsPath,
|
|
NSString **userPath)
|
|
{
|
|
NSDictionary *dict;
|
|
NSString *home, *path;
|
|
NSString *steprcFile;
|
|
NSString *userRoot;
|
|
|
|
/* Look for rc file (".GNUsteprc") file in user's home directory */
|
|
home = NSHomeDirectoryForUser(userName);
|
|
if (home == nil)
|
|
{
|
|
/* It's OK if path is nil. We're might be running as user nobody in
|
|
which case we don't want to access user stuff. Possibly it's a
|
|
misconfigured Windows environment, though... */
|
|
return nil;
|
|
}
|
|
|
|
if ([gnustepRcFileName length] > 0)
|
|
{
|
|
steprcFile = [home stringByAppendingPathComponent: gnustepRcFileName];
|
|
|
|
dict = GSReadStepConfFile(steprcFile);
|
|
if (dict != nil)
|
|
{
|
|
path = [dict objectForKey: @"GNUSTEP_DEFAULTS_ROOT"];
|
|
if (path != nil)
|
|
{
|
|
path = removeTilde(home, path);
|
|
TEST_ASSIGN(*defaultsPath, path);
|
|
}
|
|
path = [dict objectForKey: @"GNUSTEP_USER_ROOT"];
|
|
if (path != nil)
|
|
{
|
|
path = removeTilde(home, path);
|
|
TEST_ASSIGN(*userPath, path);
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Look at the .GNUsteprc file in GNUSTEP_SYSTEM_ROOT. This is obsolete
|
|
now that we are using the GNUstep conf file, but is kept in for
|
|
transition purposes.
|
|
*/
|
|
steprcFile
|
|
= [gnustepSystemRoot stringByAppendingPathComponent: @".GNUsteprc"];
|
|
steprcFile = [steprcFile stringByStandardizingPath];
|
|
if ([steprcFile isEqual: configFile] == NO)
|
|
{
|
|
dict = GSReadStepConfFile(steprcFile);
|
|
if (dict != nil)
|
|
{
|
|
PrintOnce("Warning: Configuration: The file %s has been "
|
|
"deprecated. Please use the configuration file %s to "
|
|
"set standard paths.\n",
|
|
[steprcFile fileSystemRepresentation],
|
|
stringify(GNUSTEP_CONFIGURATION_FILE));
|
|
forceD = [[dict objectForKey: @"FORCE_DEFAULTS_ROOT"] boolValue];
|
|
forceU = [[dict objectForKey: @"FORCE_USER_ROOT"] boolValue];
|
|
ASSIGN(oldDRoot, [dict objectForKey: @"GNUSTEP_DEFAULTS_ROOT"]);
|
|
ASSIGN(oldURoot, [dict objectForKey: @"GNUSTEP_USER_ROOT"]);
|
|
}
|
|
}
|
|
|
|
if ((path = oldDRoot) != nil)
|
|
{
|
|
path = removeTilde(home, path);
|
|
if (forceD)
|
|
*defaultsPath = path;
|
|
else
|
|
TEST_ASSIGN(*defaultsPath, path);
|
|
}
|
|
if ((path = oldURoot) != nil)
|
|
{
|
|
path = removeTilde(home, path);
|
|
if (forceU)
|
|
*userPath = path;
|
|
else
|
|
TEST_ASSIGN(*userPath, path);
|
|
}
|
|
|
|
/* set the user path and defaults directory to default values if needed */
|
|
TEST_ASSIGN(*defaultsPath, DEFAULT_DEFAULTS_PATH);
|
|
TEST_ASSIGN(*userPath, DEFAULT_USER_ROOT);
|
|
|
|
/* Now we set the user's root path for the gnustep files. */
|
|
if ([*userPath isAbsolutePath])
|
|
userRoot = *userPath;
|
|
else
|
|
userRoot = [home stringByAppendingPathComponent: *userPath];
|
|
return userRoot;
|
|
}
|
|
|
|
/* Initialise all things required by this module */
|
|
static void InitialisePathUtilities(void)
|
|
{
|
|
NSDictionary *env;
|
|
|
|
/* Set up our root paths */
|
|
NS_DURING
|
|
{
|
|
#if defined(__WIN32__)
|
|
HKEY regkey;
|
|
#endif
|
|
|
|
/* Initialise Win32 things if on that platform */
|
|
Win32Initialise(); // should be called by DLL_PROCESS_ATTACH
|
|
|
|
[gnustep_global_lock lock];
|
|
|
|
#ifndef OPTION_NO_ENVIRONMENT
|
|
/* First we look at the environment */
|
|
env = [[NSProcessInfo processInfo] environment];
|
|
|
|
TEST_ASSIGN(gnustepSystemRoot , [env objectForKey: SYSTEM_ROOT]);
|
|
TEST_ASSIGN(gnustepNetworkRoot, [env objectForKey: NETWORK_ROOT]);
|
|
TEST_ASSIGN(gnustepLocalRoot , [env objectForKey: LOCAL_ROOT]);
|
|
#endif /* !OPTION_NO_ENVIRONMENT */
|
|
#if defined(__WIN32__)
|
|
regkey = Win32OpenRegistry(HKEY_LOCAL_MACHINE,
|
|
"\\Software\\GNU\\GNUstep");
|
|
if (regkey != (HKEY)NULL)
|
|
{
|
|
TEST_ASSIGN(gnustepSystemRoot,
|
|
Win32NSStringFromRegistry(regkey, SYSTEM_ROOT));
|
|
TEST_ASSIGN(gnustepNetworkRoot,
|
|
Win32NSStringFromRegistry(regkey, NETWORK_ROOT));
|
|
TEST_ASSIGN(gnustepLocalRoot,
|
|
Win32NSStringFromRegistry(regkey, LOCAL_ROOT));
|
|
RegCloseKey(regkey);
|
|
}
|
|
|
|
#if 0
|
|
// Not implemented yet
|
|
platformApps = Win32FindDirectory(CLSID_APPS);
|
|
platformLibs = Win32FindDirectory(CLSID_LIBS);
|
|
#endif
|
|
#else
|
|
/* Now we source the configuration file if it exists */
|
|
configFile
|
|
= [NSString stringWithCString: stringify(GNUSTEP_CONFIGURATION_FILE)];
|
|
configFile = RETAIN([configFile stringByStandardizingPath]);
|
|
if ([MGR() fileExistsAtPath: configFile])
|
|
{
|
|
NSDictionary *d = GSReadStepConfFile(configFile);
|
|
|
|
if (d != nil)
|
|
{
|
|
TEST_ASSIGN(gnustepSystemRoot , [d objectForKey: SYSTEM_ROOT]);
|
|
TEST_ASSIGN(gnustepNetworkRoot, [d objectForKey: NETWORK_ROOT]);
|
|
TEST_ASSIGN(gnustepLocalRoot , [d objectForKey: LOCAL_ROOT]);
|
|
|
|
gnustepRcFileName = [d objectForKey: @"USER_GNUSTEP_RC"];
|
|
gnustepDefaultsPath = [d objectForKey: @"USER_GNUSTEP_DEFAULTS"];
|
|
gnustepUserPath = [d objectForKey: @"USER_GNUSTEP_DIR"];
|
|
|
|
{
|
|
id o;
|
|
// Next four are for backwards compatibility;
|
|
o = [d objectForKey: @"FORCE_DEFAULTS_ROOT"];
|
|
if (o != nil)
|
|
{
|
|
PrintOnce("Warning: Configuration: "
|
|
"FORCE_DEFAULTS_ROOT is deprecated.\n");
|
|
forceD = [o boolValue];
|
|
}
|
|
o = [d objectForKey: @"FORCE_USER_ROOT"];
|
|
if (o != nil)
|
|
{
|
|
PrintOnce("Warning: Configuration: "
|
|
"FORCE_USER_ROOT is deprecated.\n");
|
|
forceU = [o boolValue];
|
|
}
|
|
ASSIGN(oldDRoot, [d objectForKey: @"GNUSTEP_DEFAULTS_ROOT"]);
|
|
if (oldDRoot != nil)
|
|
{
|
|
PrintOnce("Warning: Configuration: "
|
|
"GNUSTEP_DEFAULTS_ROOT is deprecated.\n");
|
|
}
|
|
ASSIGN(oldURoot, [d objectForKey: @"GNUSTEP_USER_ROOT"]);
|
|
if (oldURoot != nil)
|
|
{
|
|
PrintOnce("Warning: Configuration: "
|
|
"GNUSTEP_USER_ROOT is deprecated.\n");
|
|
}
|
|
}
|
|
|
|
#ifdef OPTION_PLATFORM_SUPPORT
|
|
osSysPrefs = getPathConfig(d, SYS_PREFS);
|
|
osSysApps = getPathConfig(d, SYS_APPS);
|
|
osSysLibs = getPathConfig(d, SYS_LIBS);
|
|
osSysAdmin = getPathConfig(d, SYS_ADMIN);
|
|
|
|
platformResources = getPathConfig(d, PLATFORM_RESOURCES);
|
|
platformApps = getPathConfig(d, PLATFORM_APPS);
|
|
platformLibs = getPathConfig(d, PLATFORM_LIBS);
|
|
platformAdmin = getPathConfig(d, PLATFORM_ADMIN);
|
|
|
|
localResources = getPathConfig(d, PLATFORM_LOCAL_RESOURCES);
|
|
localApps = getPathConfig(d, PLATFORM_LOCAL_APPS);
|
|
localLibs = getPathConfig(d, PLATFORM_LOCAL_LIBS);
|
|
#endif /* OPTION_PLATFORM SUPPORT */
|
|
}
|
|
}
|
|
#endif
|
|
|
|
/* System admins may force the user and defaults paths by
|
|
* setting USER_GNUSTEP_RC to be an empty string.
|
|
* If they simply don't define it at all, we assign a default
|
|
* value here.
|
|
*/
|
|
TEST_ASSIGN(gnustepRcFileName, DEFAULT_STEPRC_FILE);
|
|
|
|
/* If the user has an rc file we need to source it */
|
|
gnustepUserRoot = setUserGNUstepPath(NSUserName(),
|
|
&gnustepDefaultsPath, &gnustepUserPath);
|
|
|
|
/* Make sure that they're in path internal format */
|
|
internalizePath(gnustepSystemRoot);
|
|
internalizePath(gnustepNetworkRoot);
|
|
internalizePath(gnustepLocalRoot);
|
|
internalizePath(gnustepUserRoot);
|
|
|
|
/* Finally we check and report problems... */
|
|
if (gnustepSystemRoot == nil)
|
|
{
|
|
gnustepSystemRoot = internalizePathCString(\
|
|
STRINGIFY(GNUSTEP_INSTALL_PREFIX));
|
|
fprintf (stderr, "Warning - GNUSTEP_SYSTEM_ROOT is not set " \
|
|
"- using %s\n", [gnustepSystemRoot lossyCString]);
|
|
}
|
|
if (gnustepNetworkRoot == nil)
|
|
{
|
|
gnustepNetworkRoot = internalizePathCString(\
|
|
STRINGIFY(GNUSTEP_NETWORK_ROOT));
|
|
fprintf (stderr, "Warning - GNUSTEP_NETWORK_ROOT is not set " \
|
|
"- using %s\n", [gnustepNetworkRoot lossyCString]);
|
|
}
|
|
if (gnustepLocalRoot == nil)
|
|
{
|
|
gnustepLocalRoot = internalizePathCString(\
|
|
STRINGIFY(GNUSTEP_LOCAL_ROOT));
|
|
fprintf (stderr, "Warning - GNUSTEP_LOCAL_ROOT is not set " \
|
|
"- using %s\n", [gnustepLocalRoot lossyCString]);
|
|
}
|
|
|
|
/* We're keeping these strings... */
|
|
TEST_RETAIN(gnustepSystemRoot);
|
|
TEST_RETAIN(gnustepNetworkRoot);
|
|
TEST_RETAIN(gnustepLocalRoot);
|
|
TEST_RETAIN(gnustepUserRoot);
|
|
|
|
TEST_RETAIN(gnustepRcFileName);
|
|
TEST_RETAIN(gnustepDefaultsPath);
|
|
TEST_RETAIN(gnustepUserPath);
|
|
|
|
[gnustep_global_lock unlock];
|
|
}
|
|
NS_HANDLER
|
|
{
|
|
/* unlock then re-raise the exception */
|
|
[gnustep_global_lock unlock];
|
|
[localException raise];
|
|
}
|
|
NS_ENDHANDLER
|
|
}
|
|
|
|
/*
|
|
* Close down and release all things allocated.
|
|
*/
|
|
static void ShutdownPathUtilities(void)
|
|
{
|
|
TEST_RELEASE(gnustepSystemRoot);
|
|
TEST_RELEASE(gnustepNetworkRoot);
|
|
TEST_RELEASE(gnustepLocalRoot);
|
|
TEST_RELEASE(gnustepUserRoot);
|
|
|
|
TEST_RELEASE(gnustepRcFileName);
|
|
TEST_RELEASE(gnustepDefaultsPath);
|
|
TEST_RELEASE(gnustepUserPath);
|
|
|
|
#ifdef OPTION_PLATFORM_SUPPORT
|
|
TEST_RELEASE(osSysPrefs);
|
|
TEST_RELEASE(osSysApps);
|
|
TEST_RELEASE(osSysLibs);
|
|
TEST_RELEASE(osSysAdmin);
|
|
|
|
TEST_RELEASE(platformResources);
|
|
TEST_RELEASE(platformApps);
|
|
TEST_RELEASE(platformLibs);
|
|
TEST_RELEASE(platformAdmin);
|
|
|
|
TEST_RELEASE(localResources);
|
|
TEST_RELEASE(localApps);
|
|
TEST_RELEASE(localLibs);
|
|
#endif /* OPTION_PLATFORM SUPPORT */
|
|
|
|
TEST_RELEASE(tempDir);
|
|
|
|
/* Shutdown Win32 support */
|
|
Win32Finalise();
|
|
}
|
|
|
|
|
|
/**
|
|
* Reads a file and expects it to be in basic unix "conf" style format with
|
|
* one key = value per line. Sometimes referred to as "strings" format.<br/ >
|
|
* Creates a dictionary of the (key,value) pairs.<br/ >
|
|
* Lines beginning with a hash '#' are deemed comment lines and ignored.<br/ >
|
|
* The value is all characters from the first non-whitespace after the '='
|
|
* until the end of line '\n' which will include any internal spaces.<br/ >
|
|
* NB. This is <em>VERY</em> non-standard in that it returns an object which is
|
|
* <em>NOT</em> autoreleased.
|
|
*/
|
|
static NSDictionary *
|
|
GSReadStepConfFile(NSString *fileName)
|
|
{
|
|
NSMutableDictionary *dict;
|
|
NSDictionary *attributes;
|
|
NSString *file;
|
|
NSArray *lines;
|
|
unsigned count;
|
|
|
|
if ([MGR() isReadableFileAtPath: fileName] == NO)
|
|
{
|
|
return nil;
|
|
}
|
|
|
|
attributes = [MGR() fileAttributesAtPath: fileName traverseLink: YES];
|
|
if (([attributes filePosixPermissions] & 022) != 0)
|
|
{
|
|
fprintf(stderr, "The file '%s' is writable by someone other than"
|
|
" its owner.\nIgnoring it.\n", [fileName fileSystemRepresentation]);
|
|
return nil;
|
|
}
|
|
|
|
dict = [NSMutableDictionary dictionaryWithCapacity: 16];
|
|
if (dict == nil)
|
|
{
|
|
return nil; // should throw an exception??
|
|
}
|
|
|
|
file = [NSString stringWithContentsOfFile: fileName];
|
|
lines = [file componentsSeparatedByString: @"\n"];
|
|
count = [lines count];
|
|
|
|
while (count-- > 0)
|
|
{
|
|
NSRange r;
|
|
NSString *line;
|
|
NSString *key;
|
|
NSString *val;
|
|
|
|
line = [[lines objectAtIndex: count] stringByTrimmingSpaces];
|
|
|
|
if (([line length]) && ([line characterAtIndex: 0] != '#'))
|
|
{
|
|
r = [line rangeOfString: @"="];
|
|
if (r.length == 1)
|
|
{
|
|
key = [line substringToIndex: r.location];
|
|
val = [line substringFromIndex: NSMaxRange(r)];
|
|
|
|
key = [key stringByTrimmingSpaces];
|
|
val = [val stringByTrimmingSpaces];
|
|
|
|
if ([key length] > 0)
|
|
[dict setObject: val forKey: key];
|
|
}
|
|
else
|
|
{
|
|
key = [line stringByTrimmingSpaces];
|
|
val = nil;
|
|
}
|
|
}
|
|
}
|
|
return dict;
|
|
}
|
|
|
|
/* See NSPathUtilities.h for description */
|
|
void
|
|
GSSetUserName(NSString *aName)
|
|
{
|
|
NSCParameterAssert([aName length] > 0);
|
|
|
|
/*
|
|
* Do nothing if it's not a different user.
|
|
*/
|
|
if ([theUserName isEqualToString: aName])
|
|
{
|
|
return;
|
|
}
|
|
|
|
/*
|
|
* Release the memory
|
|
*/
|
|
[gnustep_global_lock lock];
|
|
ShutdownPathUtilities();
|
|
|
|
/*
|
|
* Reset things as new user
|
|
*/
|
|
ASSIGN(theUserName, aName);
|
|
InitialisePathUtilities();
|
|
[NSUserDefaults resetStandardUserDefaults];
|
|
|
|
[gnustep_global_lock unlock];
|
|
}
|
|
|
|
/**
|
|
* Return the caller's login name as an NSString object.<br/ >
|
|
* Under unix-like systems, the name associated with the current
|
|
* effective user ID is used.<br/ >
|
|
* Under ms-windows, the 'LOGNAME' environemnt is used, or if that fails, the
|
|
* GetUserName() call is used to find the user name.
|
|
*/
|
|
/* NOTE FOR DEVELOPERS.
|
|
* If you change the behavior of this method you must also change
|
|
* user_home.c in the makefiles package to match.
|
|
*/
|
|
NSString *
|
|
NSUserName(void)
|
|
{
|
|
#if defined(__WIN32__)
|
|
if (theUserName == nil)
|
|
{
|
|
const char *loginName = 0;
|
|
/* The GetUserName function returns the current user name */
|
|
char buf[1024];
|
|
DWORD n = 1024;
|
|
|
|
if (GetEnvironmentVariable("LOGNAME", buf, 1024) != 0 && buf[0] != '\0')
|
|
loginName = buf;
|
|
else if (GetUserName(buf, &n) != 0 && buf[0] != '\0')
|
|
loginName = buf;
|
|
if (loginName)
|
|
theUserName = [[NSString alloc] initWithCString: loginName];
|
|
else
|
|
[NSException raise: NSInternalInconsistencyException
|
|
format: @"Unable to determine current user name"];
|
|
}
|
|
#else
|
|
/* Set olduid to some invalid uid that we could never start off running
|
|
as. */
|
|
static int olduid = -1;
|
|
#ifdef HAVE_GETEUID
|
|
int uid = geteuid();
|
|
#else
|
|
int uid = getuid();
|
|
#endif /* HAVE_GETEUID */
|
|
|
|
if (theUserName == nil || uid != olduid)
|
|
{
|
|
const char *loginName = 0;
|
|
#ifdef HAVE_GETPWUID
|
|
struct passwd *pwent = getpwuid (uid);
|
|
loginName = pwent->pw_name;
|
|
#endif /* HAVE_GETPWUID */
|
|
olduid = uid;
|
|
if (loginName)
|
|
theUserName = [[NSString alloc] initWithCString: loginName];
|
|
else
|
|
[NSException raise: NSInternalInconsistencyException
|
|
format: @"Unable to determine current user name"];
|
|
}
|
|
#endif
|
|
return theUserName;
|
|
}
|
|
|
|
|
|
/**
|
|
* Return the caller's home directory as an NSString object.
|
|
* Calls NSHomeDirectoryForUser() to do this.
|
|
*/
|
|
NSString *
|
|
NSHomeDirectory(void)
|
|
{
|
|
return NSHomeDirectoryForUser (NSUserName ());
|
|
}
|
|
|
|
/**
|
|
* Returns loginName's home directory as an NSString object.
|
|
*/
|
|
/* NOTE FOR DEVELOPERS.
|
|
* If you change the behavior of this method you must also change
|
|
* user_home.c in the makefiles package to match.
|
|
*/
|
|
NSString *
|
|
NSHomeDirectoryForUser(NSString *loginName)
|
|
{
|
|
NSString *s = nil;
|
|
#if !defined(__MINGW__)
|
|
struct passwd *pw;
|
|
|
|
[gnustep_global_lock lock];
|
|
pw = getpwnam ([loginName cString]);
|
|
if (pw != 0 && pw->pw_dir != NULL)
|
|
{
|
|
s = [NSString stringWithCString: pw->pw_dir];
|
|
}
|
|
[gnustep_global_lock unlock];
|
|
#else
|
|
s = Win32GetUserProfileDirectory(loginName);
|
|
#endif
|
|
s = internalizePath(s);
|
|
return s;
|
|
}
|
|
|
|
/**
|
|
* Returns the full username of the current user.
|
|
* If unable to determine this, returns the standard user name.
|
|
*/
|
|
NSString *
|
|
NSFullUserName(void)
|
|
{
|
|
#if defined(__WIN32__)
|
|
/* FIXME: Win32 way to get full user name via Net API */
|
|
return NSUserName();
|
|
#else
|
|
#ifdef HAVE_PWD_H
|
|
struct passwd *pw;
|
|
|
|
pw = getpwnam([NSUserName() cString]);
|
|
return [NSString stringWithCString: pw->pw_gecos];
|
|
#else
|
|
NSLog(@"Warning: NSFullUserName not implemented\n");
|
|
return NSUserName();
|
|
#endif /* HAVE_PWD_H */
|
|
#endif /* defined(__Win32__) else */
|
|
}
|
|
|
|
/** Returns a string containing the path to the GNUstep system
|
|
installation directory. This function is guarenteed to return a non-nil
|
|
answer (unless something is seriously wrong, in which case the application
|
|
will probably crash anyway) */
|
|
NSString *
|
|
GSSystemRootDirectory(void)
|
|
{
|
|
GSOnceFLog(@"Deprecated function");
|
|
if (gnustepSystemRoot == nil)
|
|
{
|
|
InitialisePathUtilities();
|
|
}
|
|
return gnustepSystemRoot;
|
|
}
|
|
|
|
/**
|
|
* Return the path of the defaults directory for userName.<br />
|
|
* This examines the .GNUsteprc file in the home directory of the
|
|
* user for the GNUSTEP_DEFAULTS_ROOT or the GNUSTEP_USER_ROOT
|
|
* directory definitions, over-riding those in GNUstep.conf.
|
|
*/
|
|
NSString *
|
|
GSDefaultsRootForUser(NSString *userName)
|
|
{
|
|
NSString *home;
|
|
NSString *defaultsPath = nil;
|
|
NSString *userPath = nil;
|
|
|
|
if ([userName length] == 0)
|
|
{
|
|
userName = NSUserName();
|
|
}
|
|
if (gnustepSystemRoot == nil)
|
|
{
|
|
InitialisePathUtilities();
|
|
}
|
|
if ([userName isEqual: NSUserName()])
|
|
{
|
|
home = gnustepUserRoot;
|
|
defaultsPath = gnustepDefaultsPath;
|
|
}
|
|
else
|
|
{
|
|
home = setUserGNUstepPath(userName, &defaultsPath, &userPath);
|
|
}
|
|
|
|
if ([defaultsPath isAbsolutePath])
|
|
{
|
|
home = defaultsPath;
|
|
}
|
|
else if (home != nil)
|
|
{
|
|
home = [home stringByAppendingPathComponent: defaultsPath];
|
|
}
|
|
|
|
return internalizePath(home);
|
|
}
|
|
|
|
/** Returns an array of strings which contain paths that should be in
|
|
the standard search order for resources, etc. If the environment
|
|
variable GNUSTEP_PATHPREFIX_LIST is set. It returns the list of
|
|
paths set in that variable. Otherwise, it returns the user, local,
|
|
network, and system paths, in that order. This function is
|
|
guarenteed to return a non-nil answer (unless something is
|
|
seriously wrong, in which case the application will probably crash
|
|
anyway) */
|
|
NSArray *
|
|
GSStandardPathPrefixes(void)
|
|
{
|
|
NSDictionary *env;
|
|
NSString *prefixes;
|
|
NSArray *prefixArray;
|
|
|
|
GSOnceFLog(@"Deprecated function");
|
|
env = [[NSProcessInfo processInfo] environment];
|
|
prefixes = [env objectForKey: @"GNUSTEP_PATHPREFIX_LIST"];
|
|
if (prefixes != nil)
|
|
{
|
|
unsigned c;
|
|
|
|
#if defined(__WIN32__)
|
|
prefixArray = [prefixes componentsSeparatedByString: @";"];
|
|
#else
|
|
prefixArray = [prefixes componentsSeparatedByString: @":"];
|
|
#endif
|
|
if ((c = [prefixArray count]) <= 1)
|
|
{
|
|
/* This probably means there was some parsing error, but who
|
|
knows. Play it safe though... */
|
|
prefixArray = nil;
|
|
}
|
|
else
|
|
{
|
|
NSString *a[c];
|
|
unsigned i;
|
|
|
|
[prefixArray getObjects: a];
|
|
for (i = 0; i < c; i++)
|
|
{
|
|
a[c] = internalizePath(a[c]);
|
|
}
|
|
prefixArray = [NSArray arrayWithObjects: a count: c];
|
|
}
|
|
}
|
|
if (prefixes == nil)
|
|
{
|
|
NSString *strings[4];
|
|
NSString *str;
|
|
unsigned count = 0;
|
|
|
|
if (gnustepSystemRoot == nil)
|
|
{
|
|
InitialisePathUtilities();
|
|
}
|
|
str = gnustepUserRoot;
|
|
if (str != nil)
|
|
strings[count++] = str;
|
|
|
|
str = gnustepLocalRoot;
|
|
if (str != nil)
|
|
strings[count++] = str;
|
|
|
|
str = gnustepNetworkRoot;
|
|
if (str != nil)
|
|
strings[count++] = str;
|
|
|
|
str = gnustepSystemRoot;
|
|
if (str != nil)
|
|
strings[count++] = str;
|
|
|
|
if (count)
|
|
prefixArray = [NSArray arrayWithObjects: strings count: count];
|
|
else
|
|
prefixArray = [NSArray array];
|
|
}
|
|
return prefixArray;
|
|
}
|
|
|
|
/**
|
|
* Returns the standard paths in which applications are stored and
|
|
* should be searched for. Calls NSSearchPathForDirectoriesInDomains()<br/ >
|
|
* Refer to the GNUstep File System Heirarchy documentation for more info.
|
|
*/
|
|
NSArray *
|
|
NSStandardApplicationPaths(void)
|
|
{
|
|
return NSSearchPathForDirectoriesInDomains(NSAllApplicationsDirectory,
|
|
NSAllDomainsMask, YES);
|
|
}
|
|
|
|
/**
|
|
* Returns the standard paths in which resources are stored and
|
|
* should be searched for. Calls NSSearchPathForDirectoriesInDomains()<br/ >
|
|
* Refer to the GNUstep File System Heirarchy documentation for more info.
|
|
*/
|
|
NSArray *
|
|
NSStandardLibraryPaths(void)
|
|
{
|
|
return NSSearchPathForDirectoriesInDomains(NSAllLibrariesDirectory,
|
|
NSAllDomainsMask, YES);
|
|
}
|
|
|
|
/**
|
|
* Returns the name of a directory in which temporary files can be stored.
|
|
* Under GNUstep this is a location which is not readable by other users.
|
|
* <br />
|
|
* If a suitable directory can't be found or created, this function raises an
|
|
* NSGenericException.
|
|
*/
|
|
NSString *
|
|
NSTemporaryDirectory(void)
|
|
{
|
|
NSFileManager *manager;
|
|
NSString *tempDirName;
|
|
NSString *baseTempDirName = nil;
|
|
NSDictionary *attr;
|
|
int perm;
|
|
int owner;
|
|
BOOL flag;
|
|
#if !defined(__WIN32__)
|
|
int uid;
|
|
#else
|
|
char buffer[1024];
|
|
|
|
if (GetTempPath(1024, buffer))
|
|
{
|
|
baseTempDirName = internalizePathCString(buffer);
|
|
}
|
|
#endif
|
|
|
|
/*
|
|
* If the user has supplied a directory name in the TEMP or TMP
|
|
* environment variable, attempt to use that unless we already
|
|
* have a tem porary directory specified.
|
|
*/
|
|
if (baseTempDirName == nil)
|
|
{
|
|
NSDictionary *env = [[NSProcessInfo processInfo] environment];
|
|
|
|
baseTempDirName = [env objectForKey: @"TEMP"];
|
|
if (baseTempDirName == nil)
|
|
{
|
|
baseTempDirName = [env objectForKey: @"TMP"];
|
|
if (baseTempDirName == nil)
|
|
{
|
|
#if defined(__MINGW__)
|
|
#ifdef __CYGWIN__
|
|
baseTempDirName = @"/cygdrive/c/";
|
|
#else
|
|
baseTempDirName = @"/c/";
|
|
#endif
|
|
#else
|
|
baseTempDirName = @"/tmp";
|
|
#endif
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Check that the base directory exists ... if it doesn't we can't
|
|
* go any further.
|
|
*/
|
|
tempDirName = baseTempDirName;
|
|
manager = [NSFileManager defaultManager];
|
|
if ([manager fileExistsAtPath: tempDirName isDirectory: &flag] == NO
|
|
|| flag == NO)
|
|
{
|
|
[NSException raise: NSGenericException
|
|
format: @"Temporary directory (%@) does not exist",
|
|
tempDirName];
|
|
return nil; /* Not reached. */
|
|
}
|
|
|
|
/*
|
|
* Check that we are the directory owner, and that we, and nobody else,
|
|
* have access to it. If other people have access, try to create a secure
|
|
* subdirectory.
|
|
*/
|
|
attr = [manager fileAttributesAtPath: tempDirName traverseLink: YES];
|
|
owner = [[attr objectForKey: NSFileOwnerAccountID] intValue];
|
|
perm = [[attr objectForKey: NSFilePosixPermissions] intValue];
|
|
perm = perm & 0777;
|
|
|
|
// Mateu Batle: secure temporary directories don't work in MinGW
|
|
#ifndef __MINGW__
|
|
|
|
#if defined(__MINGW__)
|
|
uid = owner;
|
|
#else
|
|
#ifdef HAVE_GETEUID
|
|
uid = geteuid();
|
|
#else
|
|
uid = getuid();
|
|
#endif /* HAVE_GETEUID */
|
|
#endif
|
|
if ((perm != 0700 && perm != 0600) || owner != uid)
|
|
{
|
|
/*
|
|
NSLog(@"Temporary directory (%@) may be insecure ... attempting to "
|
|
@"add secure subdirectory", tempDirName);
|
|
*/
|
|
|
|
tempDirName
|
|
= [baseTempDirName stringByAppendingPathComponent: NSUserName()];
|
|
if ([manager fileExistsAtPath: tempDirName] == NO)
|
|
{
|
|
NSNumber *p = [NSNumber numberWithInt: 0700];
|
|
|
|
attr = [NSDictionary dictionaryWithObject: p
|
|
forKey: NSFilePosixPermissions];
|
|
if ([manager createDirectoryAtPath: tempDirName
|
|
attributes: attr] == NO)
|
|
{
|
|
[NSException raise: NSGenericException
|
|
format: @"Attempt to create a secure temporary directory (%@) failed.",
|
|
tempDirName];
|
|
return nil; /* Not reached. */
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Check that the new directory is really secure.
|
|
*/
|
|
attr = [manager fileAttributesAtPath: tempDirName traverseLink: YES];
|
|
owner = [[attr objectForKey: NSFileOwnerAccountID] intValue];
|
|
perm = [[attr objectForKey: NSFilePosixPermissions] intValue];
|
|
perm = perm & 0777;
|
|
if ((perm != 0700 && perm != 0600) || owner != uid)
|
|
{
|
|
[NSException raise: NSGenericException
|
|
format: @"Attempt to create a secure temporary directory (%@) failed.",
|
|
tempDirName];
|
|
return nil; /* Not reached. */
|
|
}
|
|
}
|
|
#endif
|
|
|
|
if ([manager isWritableFileAtPath: tempDirName] == NO)
|
|
{
|
|
[NSException raise: NSGenericException
|
|
format: @"Temporary directory (%@) is not writable",
|
|
tempDirName];
|
|
return nil; /* Not reached. */
|
|
}
|
|
return tempDirName;
|
|
}
|
|
|
|
/**
|
|
* Deprecated function. Returns the location of the <em>root</em>
|
|
* directory of the GNUstep file heirarchy. Don't assume that /System,
|
|
* /Network etc exist in this path! Use other path utility functions for that.
|
|
* Refer to the GNUstep File System Heirarchy documentation for more info.
|
|
*/
|
|
NSString *
|
|
NSOpenStepRootDirectory(void)
|
|
{
|
|
NSString *root;
|
|
|
|
root = [[[NSProcessInfo processInfo] environment]
|
|
objectForKey: @"GNUSTEP_ROOT"];
|
|
if (root == nil)
|
|
{
|
|
#if defined(__MINGW__)
|
|
#ifdef __CYGWIN__
|
|
root = @"/cygdrive/c/";
|
|
#else
|
|
root = @"~c/";
|
|
#endif
|
|
#else
|
|
root = @"/";
|
|
#endif
|
|
}
|
|
else
|
|
{
|
|
root = internalizePath(root);
|
|
}
|
|
return root;
|
|
}
|
|
|
|
/**
|
|
* Returns an array of search paths to look at for resources.<br/ >
|
|
* The paths are returned in domain order: LOCAL, NETWORK then SYSTEM.
|
|
*/
|
|
NSArray *
|
|
NSSearchPathForDirectoriesInDomains(NSSearchPathDirectory directoryKey,
|
|
NSSearchPathDomainMask domainMask, BOOL expandTilde)
|
|
{
|
|
static NSString *adminDir = @"Administrator";
|
|
static NSString *appsDir = @"Applications";
|
|
static NSString *devDir = @"Developer";
|
|
static NSString *demosDir = @"Demos";
|
|
static NSString *libraryDir = @"Library";
|
|
static NSString *supportDir = @"ApplicationSupport";
|
|
static NSString *docDir = @"Documentation";
|
|
static NSString *fontsDir = @"Fonts";
|
|
static NSString *frameworkDir = @"Frameworks";
|
|
static NSString *libsDir = @"Libraries";
|
|
static NSString *toolsDir = @"Tools";
|
|
NSMutableArray *paths = [NSMutableArray new];
|
|
NSString *path;
|
|
unsigned i;
|
|
unsigned count;
|
|
|
|
if (gnustepSystemRoot == nil)
|
|
{
|
|
InitialisePathUtilities();
|
|
}
|
|
NSCAssert(gnustepSystemRoot!=nil,@"Path utilities without initialisation!");
|
|
|
|
/*
|
|
* The order in which we return paths is important - user must come
|
|
* first, followed by local, followed by network, followed by system.
|
|
* The calling code can then loop on the returned paths, and stop as
|
|
* soon as it finds something. So things in user automatically
|
|
* override things in system etc.
|
|
*/
|
|
|
|
/*
|
|
* FIXME - The following code will not respect this order for
|
|
* NSAllApplicationsDirectory. This should be fixed I think.
|
|
* SHELDON: Have a fix pending...
|
|
*/
|
|
|
|
#define ADD_PATH(mask, base_dir, add_dir) \
|
|
if (domainMask & mask) \
|
|
{ \
|
|
path = [base_dir stringByAppendingPathComponent: add_dir]; \
|
|
if (path != nil) \
|
|
[paths addObject: path]; \
|
|
}
|
|
#ifdef OPTION_PLATFORM_SUPPORT
|
|
#define ADD_PLATFORM_PATH(mask, add_dir) \
|
|
if (domainMask & mask) \
|
|
{ \
|
|
if (add_dir != nil) \
|
|
[paths addObject: add_dir]; \
|
|
}
|
|
#else
|
|
#define ADD_PLATFORM_PATH(mask, add_dir)
|
|
#endif /* OPTION_PLATFORM_SUPPORT */
|
|
|
|
if (directoryKey == NSApplicationDirectory
|
|
|| directoryKey == NSAllApplicationsDirectory)
|
|
{
|
|
ADD_PATH(NSUserDomainMask, gnustepUserRoot, appsDir);
|
|
ADD_PATH(NSLocalDomainMask, gnustepLocalRoot, appsDir);
|
|
ADD_PATH(NSNetworkDomainMask, gnustepNetworkRoot, appsDir);
|
|
ADD_PATH(NSSystemDomainMask, gnustepSystemRoot, appsDir);
|
|
|
|
ADD_PLATFORM_PATH(NSLocalDomainMask, localApps);
|
|
ADD_PLATFORM_PATH(NSSystemDomainMask, platformApps);
|
|
ADD_PLATFORM_PATH(NSSystemDomainMask, osSysApps);
|
|
}
|
|
if (directoryKey == NSDemoApplicationDirectory
|
|
|| directoryKey == NSAllApplicationsDirectory)
|
|
{
|
|
NSString *devDemosDir = [devDir stringByAppendingPathComponent: demosDir];
|
|
ADD_PATH(NSSystemDomainMask, gnustepSystemRoot, devDemosDir);
|
|
}
|
|
if (directoryKey == NSDeveloperApplicationDirectory
|
|
|| directoryKey == NSAllApplicationsDirectory)
|
|
{
|
|
NSString *devAppsDir = [devDir stringByAppendingPathComponent: appsDir];
|
|
|
|
ADD_PATH(NSUserDomainMask, gnustepUserRoot, devAppsDir);
|
|
ADD_PATH(NSLocalDomainMask, gnustepLocalRoot, devAppsDir);
|
|
ADD_PATH(NSNetworkDomainMask, gnustepNetworkRoot, devAppsDir);
|
|
ADD_PATH(NSSystemDomainMask, gnustepSystemRoot, devAppsDir);
|
|
}
|
|
if (directoryKey == NSAdminApplicationDirectory
|
|
|| directoryKey == NSAllApplicationsDirectory)
|
|
{
|
|
NSString *devAdminDir;
|
|
|
|
devAdminDir = [devDir stringByAppendingPathComponent: adminDir];
|
|
/* NSUserDomainMask - users have no Administrator directory */
|
|
ADD_PATH(NSLocalDomainMask, gnustepLocalRoot, devAdminDir);
|
|
ADD_PATH(NSNetworkDomainMask, gnustepNetworkRoot, devAdminDir);
|
|
ADD_PATH(NSSystemDomainMask, gnustepSystemRoot, devAdminDir);
|
|
|
|
ADD_PLATFORM_PATH(NSSystemDomainMask, osSysAdmin);
|
|
ADD_PLATFORM_PATH(NSSystemDomainMask, platformAdmin);
|
|
}
|
|
if (directoryKey == NSLibraryDirectory
|
|
|| directoryKey == NSAllLibrariesDirectory)
|
|
{
|
|
ADD_PATH(NSUserDomainMask, gnustepUserRoot, libraryDir);
|
|
ADD_PATH(NSLocalDomainMask, gnustepLocalRoot, libraryDir);
|
|
ADD_PATH(NSNetworkDomainMask, gnustepNetworkRoot, libraryDir);
|
|
ADD_PATH(NSSystemDomainMask, gnustepSystemRoot, libraryDir);
|
|
|
|
ADD_PLATFORM_PATH(NSLocalDomainMask, localResources);
|
|
ADD_PLATFORM_PATH(NSSystemDomainMask, platformResources);
|
|
}
|
|
if (directoryKey == NSDeveloperDirectory)
|
|
{
|
|
ADD_PATH(NSUserDomainMask, gnustepUserRoot, devDir);
|
|
ADD_PATH(NSLocalDomainMask, gnustepLocalRoot, devDir);
|
|
ADD_PATH(NSNetworkDomainMask, gnustepNetworkRoot, devDir);
|
|
ADD_PATH(NSSystemDomainMask, gnustepSystemRoot, devDir);
|
|
}
|
|
if (directoryKey == NSUserDirectory)
|
|
{
|
|
if (domainMask & NSUserDomainMask)
|
|
{
|
|
[paths addObject: gnustepUserRoot];
|
|
}
|
|
}
|
|
if (directoryKey == NSDocumentationDirectory)
|
|
{
|
|
NSString *gsdocDir = [libraryDir stringByAppendingPathComponent: docDir];
|
|
|
|
ADD_PATH(NSUserDomainMask, gnustepUserRoot, gsdocDir);
|
|
ADD_PATH(NSLocalDomainMask, gnustepLocalRoot, gsdocDir);
|
|
ADD_PATH(NSNetworkDomainMask, gnustepNetworkRoot, gsdocDir);
|
|
ADD_PATH(NSSystemDomainMask, gnustepSystemRoot, gsdocDir);
|
|
}
|
|
/* Now the GNUstep additions */
|
|
if (directoryKey == GSApplicationSupportDirectory)
|
|
{
|
|
NSString *appSupDir;
|
|
|
|
appSupDir = [libraryDir stringByAppendingPathComponent: supportDir];
|
|
ADD_PATH(NSUserDomainMask, gnustepUserRoot, appSupDir);
|
|
ADD_PATH(NSLocalDomainMask, gnustepLocalRoot, appSupDir);
|
|
ADD_PATH(NSNetworkDomainMask, gnustepNetworkRoot, appSupDir);
|
|
ADD_PATH(NSSystemDomainMask, gnustepSystemRoot, appSupDir);
|
|
}
|
|
if (directoryKey == GSFrameworksDirectory)
|
|
{
|
|
NSString *frameDir;
|
|
|
|
frameDir = [libraryDir stringByAppendingPathComponent: frameworkDir];
|
|
ADD_PATH(NSUserDomainMask, gnustepUserRoot, frameDir);
|
|
ADD_PATH(NSLocalDomainMask, gnustepLocalRoot, frameDir);
|
|
ADD_PATH(NSNetworkDomainMask, gnustepNetworkRoot, frameDir);
|
|
ADD_PATH(NSSystemDomainMask, gnustepSystemRoot, frameDir);
|
|
}
|
|
if (directoryKey == GSFontsDirectory)
|
|
{
|
|
NSString *fontDir = [libraryDir stringByAppendingPathComponent: fontsDir];
|
|
|
|
ADD_PATH(NSUserDomainMask, gnustepUserRoot, fontDir);
|
|
ADD_PATH(NSLocalDomainMask, gnustepLocalRoot, fontDir);
|
|
ADD_PATH(NSNetworkDomainMask, gnustepNetworkRoot, fontDir);
|
|
ADD_PATH(NSSystemDomainMask, gnustepSystemRoot, fontDir);
|
|
}
|
|
if (directoryKey == GSLibrariesDirectory)
|
|
{
|
|
NSString *gslibsDir;
|
|
|
|
gslibsDir = [libraryDir stringByAppendingPathComponent: libsDir];
|
|
ADD_PATH(NSUserDomainMask, gnustepUserRoot, gslibsDir);
|
|
ADD_PATH(NSLocalDomainMask, gnustepLocalRoot, gslibsDir);
|
|
ADD_PATH(NSNetworkDomainMask, gnustepNetworkRoot, gslibsDir);
|
|
ADD_PATH(NSSystemDomainMask, gnustepSystemRoot, gslibsDir);
|
|
|
|
ADD_PLATFORM_PATH(NSLocalDomainMask, localLibs);
|
|
ADD_PLATFORM_PATH(NSSystemDomainMask, platformLibs);
|
|
ADD_PLATFORM_PATH(NSSystemDomainMask, osSysLibs);
|
|
}
|
|
if (directoryKey == GSToolsDirectory)
|
|
{
|
|
ADD_PATH(NSUserDomainMask, gnustepUserRoot, toolsDir);
|
|
ADD_PATH(NSLocalDomainMask, gnustepLocalRoot, toolsDir);
|
|
ADD_PATH(NSNetworkDomainMask, gnustepNetworkRoot, toolsDir);
|
|
ADD_PATH(NSSystemDomainMask, gnustepSystemRoot, toolsDir);
|
|
|
|
ADD_PLATFORM_PATH(NSLocalDomainMask, localApps);
|
|
ADD_PLATFORM_PATH(NSSystemDomainMask, platformApps);
|
|
ADD_PLATFORM_PATH(NSSystemDomainMask, osSysApps);
|
|
ADD_PLATFORM_PATH(NSSystemDomainMask, platformAdmin);
|
|
ADD_PLATFORM_PATH(NSSystemDomainMask, osSysAdmin);
|
|
}
|
|
|
|
#undef ADD_PATH
|
|
#undef ADD_PLATFORM_PATH
|
|
|
|
count = [paths count];
|
|
for (i = 0; i < count; i++)
|
|
{
|
|
path = [paths objectAtIndex: i];
|
|
|
|
/* remove paths which don't exist on this system */
|
|
if ([MGR() fileExistsAtPath: path] == NO)
|
|
{
|
|
[paths removeObjectAtIndex: i];
|
|
i--;
|
|
count--;
|
|
}
|
|
/*
|
|
* this may look like a performance hit at first glance, but if these
|
|
* string methods don't alter the string, they return the receiver
|
|
*/
|
|
else if (expandTilde == YES)
|
|
{
|
|
[paths replaceObjectAtIndex: i
|
|
withObject: [path stringByExpandingTildeInPath]];
|
|
}
|
|
else
|
|
{
|
|
[paths replaceObjectAtIndex: i
|
|
withObject: [path stringByAbbreviatingWithTildeInPath]];
|
|
}
|
|
}
|
|
|
|
AUTORELEASE (paths);
|
|
return paths;
|
|
}
|