mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 08:26:27 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@17407 72102866-910b-0410-8b05-ffd578937521
3205 lines
81 KiB
Objective-C
3205 lines
81 KiB
Objective-C
/**
|
||
NSFileManager.m
|
||
|
||
Copyright (C) 1997-2002 Free Software Foundation, Inc.
|
||
|
||
Author: Mircea Oancea <mircea@jupiter.elcom.pub.ro>
|
||
Author: Ovidiu Predescu <ovidiu@net-community.com>
|
||
Date: Feb 1997
|
||
Updates and fixes: Richard Frith-Macdonald
|
||
|
||
Author: Nicola Pero <n.pero@mi.flashnet.it>
|
||
Date: Apr 2001
|
||
Rewritten NSDirectoryEnumerator
|
||
|
||
Author: Richard frith-Macdonald <rfm@gnu.org>
|
||
Date: Sep 2002
|
||
Rewritten attribute handling code
|
||
|
||
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>NSFileManager class reference</title>
|
||
$Date$ $Revision$
|
||
*/
|
||
|
||
#include "config.h"
|
||
#include <string.h>
|
||
#include "GNUstepBase/preface.h"
|
||
#include "Foundation/NSFileManager.h"
|
||
#include "Foundation/NSException.h"
|
||
#include "Foundation/NSAutoreleasePool.h"
|
||
#include "Foundation/NSLock.h"
|
||
#include "Foundation/NSDebug.h"
|
||
#include "Foundation/NSProcessInfo.h"
|
||
#include "Foundation/NSEnumerator.h"
|
||
#include "Foundation/NSSet.h"
|
||
#include "GSPrivate.h"
|
||
|
||
#include <stdio.h>
|
||
|
||
/* determine directory reading files */
|
||
|
||
#if defined(HAVE_DIRENT_H)
|
||
# include <dirent.h>
|
||
#elif defined(HAVE_SYS_DIR_H)
|
||
# include <sys/dir.h>
|
||
#elif defined(HAVE_SYS_NDIR_H)
|
||
# include <sys/ndir.h>
|
||
#elif defined(HAVE_NDIR_H)
|
||
# include <ndir.h>
|
||
#endif
|
||
|
||
#ifdef HAVE_UNISTD_H
|
||
#include <unistd.h>
|
||
#endif
|
||
#ifdef HAVE_WINDOWS_H
|
||
# include <windows.h>
|
||
#endif
|
||
|
||
#if defined(__MINGW__)
|
||
#include <stdio.h>
|
||
#include <tchar.h>
|
||
#define WIN32ERR ((DWORD)0xFFFFFFFF)
|
||
#endif
|
||
|
||
/* determine filesystem max path length */
|
||
|
||
#if defined(_POSIX_VERSION) || defined(__WIN32__)
|
||
# include <limits.h> /* for PATH_MAX */
|
||
# if defined(__MINGW32__)
|
||
# include <sys/utime.h>
|
||
# else
|
||
# include <utime.h>
|
||
# endif
|
||
#else
|
||
# ifdef HAVE_SYS_PARAM_H
|
||
# include <sys/param.h> /* for MAXPATHLEN */
|
||
# endif
|
||
#endif
|
||
|
||
#ifndef PATH_MAX
|
||
# ifdef _POSIX_VERSION
|
||
# define PATH_MAX _POSIX_PATH_MAX
|
||
# else
|
||
# ifdef MAXPATHLEN
|
||
# define PATH_MAX MAXPATHLEN
|
||
# else
|
||
# define PATH_MAX 1024
|
||
# endif
|
||
# endif
|
||
#endif
|
||
|
||
/* determine if we have statfs struct and function */
|
||
|
||
#ifdef HAVE_SYS_VFS_H
|
||
# include <sys/vfs.h>
|
||
#endif
|
||
|
||
#ifdef HAVE_SYS_STATVFS_H
|
||
# include <sys/statvfs.h>
|
||
#endif
|
||
|
||
#ifdef HAVE_SYS_STATFS_H
|
||
# include <sys/statfs.h>
|
||
#endif
|
||
|
||
#ifdef HAVE_SYS_FILE_H
|
||
#include <sys/file.h>
|
||
#endif
|
||
|
||
#ifdef HAVE_SYS_MOUNT_H
|
||
#include <sys/mount.h>
|
||
#endif
|
||
|
||
#include <errno.h>
|
||
|
||
#ifdef HAVE_SYS_STAT_H
|
||
#include <sys/stat.h>
|
||
#endif
|
||
|
||
#include <fcntl.h>
|
||
#ifdef HAVE_PWD_H
|
||
#include <pwd.h> /* For struct passwd */
|
||
#endif
|
||
#ifdef HAVE_GRP_H
|
||
#include <grp.h> /* For struct group */
|
||
#endif
|
||
#ifdef HAVE_UTIME_H
|
||
# include <utime.h>
|
||
#endif
|
||
|
||
/*
|
||
* On systems that have the O_BINARY flag, use it for a binary copy.
|
||
*/
|
||
#if defined(O_BINARY)
|
||
#define GSBINIO O_BINARY
|
||
#else
|
||
#define GSBINIO 0
|
||
#endif
|
||
|
||
/* include usual headers */
|
||
|
||
#include "Foundation/NSArray.h"
|
||
#include "Foundation/NSDictionary.h"
|
||
#include "Foundation/NSData.h"
|
||
#include "Foundation/NSDate.h"
|
||
#include "Foundation/NSString.h"
|
||
#include "Foundation/NSValue.h"
|
||
#include "Foundation/NSPathUtilities.h"
|
||
#include "Foundation/NSFileManager.h"
|
||
|
||
/*
|
||
* GSAttrDictionary is a private NSDictionary subclass used to
|
||
* handle file attributes efficiently ... using lazy evaluation
|
||
* to ensure that we only do the minimum work necessary at any time.
|
||
*/
|
||
@interface GSAttrDictionary : NSDictionary
|
||
{
|
||
#ifdef __MINGW__
|
||
char *name;
|
||
#endif
|
||
struct stat statbuf;
|
||
}
|
||
+ (NSDictionary*) attributesAt: (const char*)cpath traverseLink: (BOOL)traverse;
|
||
@end
|
||
|
||
/*
|
||
* We also need a special enumerator class to enumerate the dictionary.
|
||
*/
|
||
@interface GSAttrDictionaryEnumerator : NSEnumerator
|
||
{
|
||
NSDictionary *dictionary;
|
||
NSEnumerator *enumerator;
|
||
}
|
||
+ (NSEnumerator*) enumeratorFor: (NSDictionary*)d;
|
||
@end
|
||
|
||
|
||
|
||
@interface NSFileManager (PrivateMethods)
|
||
|
||
/* Copies the contents of source file to destination file. Assumes source
|
||
and destination are regular files or symbolic links. */
|
||
- (BOOL) _copyFile: (NSString*)source
|
||
toFile: (NSString*)destination
|
||
handler: (id)handler;
|
||
|
||
/* Recursively copies the contents of source directory to destination. */
|
||
- (BOOL) _copyPath: (NSString*)source
|
||
toPath: (NSString*)destination
|
||
handler: (id)handler;
|
||
|
||
/* Recursively links the contents of source directory to destination. */
|
||
- (BOOL) _linkPath: (NSString*)source
|
||
toPath: (NSString*)destination
|
||
handler: handler;
|
||
|
||
/* encapsulates the will Process check for existence of selector. */
|
||
- (void) _sendToHandler: (id) handler
|
||
willProcessPath: (NSString*) path;
|
||
|
||
/* methods to encapsulates setting up and calling the handler
|
||
in case of an error */
|
||
- (BOOL) _proceedAccordingToHandler: (id) handler
|
||
forError: (NSString*) error
|
||
inPath: (NSString*) path;
|
||
|
||
- (BOOL) _proceedAccordingToHandler: (id) handler
|
||
forError: (NSString*) error
|
||
inPath: (NSString*) path
|
||
fromPath: (NSString*) frompath
|
||
toPath: (NSString*) toPath;
|
||
|
||
|
||
|
||
|
||
@end /* NSFileManager (PrivateMethods) */
|
||
|
||
/**
|
||
* This is the main class for management of the local filesystem.
|
||
*/
|
||
@implementation NSFileManager
|
||
|
||
// Getting the default manager
|
||
|
||
static NSFileManager* defaultManager = nil;
|
||
|
||
/**
|
||
* Returns a shared default file manager which may be used throughout an
|
||
* application.
|
||
*/
|
||
+ (NSFileManager*) defaultManager
|
||
{
|
||
if (defaultManager == nil)
|
||
{
|
||
NS_DURING
|
||
{
|
||
[gnustep_global_lock lock];
|
||
if (defaultManager == nil)
|
||
{
|
||
defaultManager = [[self alloc] init];
|
||
}
|
||
[gnustep_global_lock unlock];
|
||
}
|
||
NS_HANDLER
|
||
{
|
||
// unlock then re-raise the exception
|
||
[gnustep_global_lock unlock];
|
||
[localException raise];
|
||
}
|
||
NS_ENDHANDLER
|
||
}
|
||
return defaultManager;
|
||
}
|
||
|
||
- (void) dealloc
|
||
{
|
||
TEST_RELEASE(_lastError);
|
||
[super dealloc];
|
||
}
|
||
|
||
/**
|
||
* Changes the current directory used for all subsequent operations.<br />
|
||
* All non-absolute paths are interpreted relative to this directory.<br />
|
||
* The current directory is set on a per-task basis, so the current
|
||
* directory for other file manager instances will also be changed
|
||
* by this method.
|
||
*/
|
||
- (BOOL) changeCurrentDirectoryPath: (NSString*)path
|
||
{
|
||
const char* cpath = [self fileSystemRepresentationWithPath: path];
|
||
|
||
#if defined(__MINGW__)
|
||
return SetCurrentDirectory(cpath) == TRUE ? YES : NO;
|
||
#else
|
||
return (chdir(cpath) == 0);
|
||
#endif
|
||
}
|
||
|
||
/**
|
||
* Change the attributes of the file at path to those specified.<br />
|
||
* Returns YES if all requested changes were made (or if the dictionary
|
||
* was nil or empty, so no changes were requested), NO otherwise.<br />
|
||
* On failure, some fo the requested changes may have taken place.<br />
|
||
*/
|
||
- (BOOL) changeFileAttributes: (NSDictionary*)attributes atPath: (NSString*)path
|
||
{
|
||
const char *cpath;
|
||
unsigned long num;
|
||
NSString *str;
|
||
NSDate *date;
|
||
BOOL allOk = YES;
|
||
|
||
if (attributes == nil)
|
||
{
|
||
return YES;
|
||
}
|
||
cpath = [self fileSystemRepresentationWithPath: path];
|
||
#ifndef __MINGW__
|
||
num = [attributes fileOwnerAccountID];
|
||
if (num != NSNotFound)
|
||
{
|
||
if (chown(cpath, num, -1) != 0)
|
||
{
|
||
allOk = NO;
|
||
str = [NSString stringWithFormat:
|
||
@"Unable to change NSFileOwnerAccountID to '%u' - %s",
|
||
num, GSLastErrorStr(errno)];
|
||
ASSIGN(_lastError, str);
|
||
}
|
||
}
|
||
else
|
||
{
|
||
if ((str = [attributes fileOwnerAccountName]) != nil)
|
||
{
|
||
BOOL ok = NO;
|
||
#ifdef HAVE_PWD_H
|
||
struct passwd *pw = getpwnam([str cString]);
|
||
|
||
if (pw != 0)
|
||
{
|
||
ok = (chown(cpath, pw->pw_uid, -1) == 0);
|
||
chown(cpath, -1, pw->pw_gid);
|
||
}
|
||
#endif
|
||
if (ok == NO)
|
||
{
|
||
allOk = NO;
|
||
str = [NSString stringWithFormat:
|
||
@"Unable to change NSFileOwnerAccountName to '%@' - %s",
|
||
str, GSLastErrorStr(errno)];
|
||
ASSIGN(_lastError, str);
|
||
}
|
||
}
|
||
}
|
||
|
||
num = [attributes fileGroupOwnerAccountID];
|
||
if (num != NSNotFound)
|
||
{
|
||
if (chown(cpath, -1, num) != 0)
|
||
{
|
||
allOk = NO;
|
||
str = [NSString stringWithFormat:
|
||
@"Unable to change NSFileGroupOwnerAccountID to '%u' - %s",
|
||
num, GSLastErrorStr(errno)];
|
||
ASSIGN(_lastError, str);
|
||
}
|
||
}
|
||
else if ((str = [attributes fileGroupOwnerAccountName]) != nil)
|
||
{
|
||
BOOL ok = NO;
|
||
#ifdef HAVE_GRP_H
|
||
struct group *gp = getgrnam([str cString]);
|
||
|
||
if (gp)
|
||
{
|
||
if (chown(cpath, -1, gp->gr_gid) == 0)
|
||
ok = YES;
|
||
}
|
||
#endif
|
||
if (ok == NO)
|
||
{
|
||
allOk = NO;
|
||
str = [NSString stringWithFormat:
|
||
@"Unable to change NSFileGroupOwnerAccountName to '%@' - %s",
|
||
str, GSLastErrorStr(errno)];
|
||
ASSIGN(_lastError, str);
|
||
}
|
||
}
|
||
#endif /* __MINGW__ */
|
||
|
||
num = [attributes filePosixPermissions];
|
||
if (num != NSNotFound)
|
||
{
|
||
if (chmod(cpath, num) != 0)
|
||
{
|
||
allOk = NO;
|
||
str = [NSString stringWithFormat:
|
||
@"Unable to change NSFilePosixPermissions to '%o' - %s",
|
||
num, GSLastErrorStr(errno)];
|
||
ASSIGN(_lastError, str);
|
||
}
|
||
}
|
||
|
||
date = [attributes fileModificationDate];
|
||
if (date != nil)
|
||
{
|
||
BOOL ok = NO;
|
||
struct stat sb;
|
||
#if defined(__WIN32__) || defined(_POSIX_VERSION)
|
||
struct utimbuf ub;
|
||
#else
|
||
time_t ub[2];
|
||
#endif
|
||
|
||
if (stat(cpath, &sb) != 0)
|
||
{
|
||
ok = NO;
|
||
}
|
||
#if defined(__WIN32__)
|
||
else if (sb.st_mode & _S_IFDIR)
|
||
{
|
||
ok = YES; // Directories don't have modification times.
|
||
}
|
||
#endif
|
||
else
|
||
{
|
||
#if defined(__WIN32__) || defined(_POSIX_VERSION)
|
||
ub.actime = sb.st_atime;
|
||
ub.modtime = [date timeIntervalSince1970];
|
||
ok = (utime(cpath, &ub) == 0);
|
||
#else
|
||
ub[0] = sb.st_atime;
|
||
ub[1] = [date timeIntervalSince1970];
|
||
ok = (utime((char*)cpath, ub) == 0);
|
||
#endif
|
||
}
|
||
if (ok == NO)
|
||
{
|
||
allOk = NO;
|
||
str = [NSString stringWithFormat:
|
||
@"Unable to change NSFileModificationDate to '%@' - %s",
|
||
date, GSLastErrorStr(errno)];
|
||
ASSIGN(_lastError, str);
|
||
}
|
||
}
|
||
|
||
return allOk;
|
||
}
|
||
|
||
/**
|
||
* Returns an array of path components suitably modified for display
|
||
* to the end user. This modification may render the returned strings
|
||
* unusable for path manipulation, so you should work with two arrays ...
|
||
* one returned by this method (for display tio the user), and a
|
||
* parallel one returned by [NSString-pathComponents] (for path
|
||
* manipulation).
|
||
*/
|
||
- (NSArray*) componentsToDisplayForPath: (NSString*)path
|
||
{
|
||
return [path pathComponents];
|
||
}
|
||
|
||
/**
|
||
* Reads the file at path an returns its contents as an NSData object.<br />
|
||
* If an error occurs or if path specifies a directory etc then nil is
|
||
* returned.
|
||
*/
|
||
- (NSData*) contentsAtPath: (NSString*)path
|
||
{
|
||
return [NSData dataWithContentsOfFile: path];
|
||
}
|
||
|
||
/**
|
||
* Returns YES if the contents of the file or directory at path1 are the same
|
||
* as those at path2.<br />
|
||
* If path1 and path2 are files, this is a simple comparison. If they are
|
||
* directories, the contents of the files in those subdirectories are
|
||
* compared recursively.<br />
|
||
* Symbolic links are not followed.<br />
|
||
* A comparison checks first file identity, then size, then content.
|
||
*/
|
||
- (BOOL) contentsEqualAtPath: (NSString*)path1 andPath: (NSString*)path2
|
||
{
|
||
NSDictionary *d1;
|
||
NSDictionary *d2;
|
||
NSString *t;
|
||
|
||
if ([path1 isEqual: path2])
|
||
return YES;
|
||
d1 = [self fileAttributesAtPath: path1 traverseLink: NO];
|
||
d2 = [self fileAttributesAtPath: path2 traverseLink: NO];
|
||
t = [d1 fileType];
|
||
if ([t isEqual: [d2 fileType]] == NO)
|
||
{
|
||
return NO;
|
||
}
|
||
if ([t isEqual: NSFileTypeRegular])
|
||
{
|
||
if ([d1 fileSize] == [d2 fileSize])
|
||
{
|
||
NSData *c1 = [NSData dataWithContentsOfFile: path1];
|
||
NSData *c2 = [NSData dataWithContentsOfFile: path2];
|
||
|
||
if ([c1 isEqual: c2])
|
||
{
|
||
return YES;
|
||
}
|
||
}
|
||
return NO;
|
||
}
|
||
else if ([t isEqual: NSFileTypeDirectory])
|
||
{
|
||
NSArray *a1 = [self directoryContentsAtPath: path1];
|
||
NSArray *a2 = [self directoryContentsAtPath: path2];
|
||
unsigned index, count = [a1 count];
|
||
BOOL ok = YES;
|
||
|
||
if ([a1 isEqual: a2] == NO)
|
||
{
|
||
return NO;
|
||
}
|
||
for (index = 0; ok == YES && index < count; index++)
|
||
{
|
||
NSString *n = [a1 objectAtIndex: index];
|
||
NSString *p1;
|
||
NSString *p2;
|
||
CREATE_AUTORELEASE_POOL(pool);
|
||
|
||
p1 = [path1 stringByAppendingPathComponent: n];
|
||
p2 = [path2 stringByAppendingPathComponent: n];
|
||
d1 = [self fileAttributesAtPath: p1 traverseLink: NO];
|
||
d2 = [self fileAttributesAtPath: p2 traverseLink: NO];
|
||
t = [d1 fileType];
|
||
if ([t isEqual: [d2 fileType]] == NO)
|
||
{
|
||
ok = NO;
|
||
}
|
||
else if ([t isEqual: NSFileTypeDirectory])
|
||
{
|
||
ok = [self contentsEqualAtPath: p1 andPath: p2];
|
||
}
|
||
RELEASE(pool);
|
||
}
|
||
return ok;
|
||
}
|
||
else
|
||
{
|
||
return YES;
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Creates a new directory, and sets its attributes as specified.<br />
|
||
* Creates other directories in the path as necessary.<br />
|
||
* Returns YES on success, NO on failure.
|
||
*/
|
||
- (BOOL) createDirectoryAtPath: (NSString*)path
|
||
attributes: (NSDictionary*)attributes
|
||
{
|
||
#if defined(__MINGW__)
|
||
NSEnumerator *paths = [[path pathComponents] objectEnumerator];
|
||
NSString *subPath;
|
||
NSString *completePath = nil;
|
||
|
||
while ((subPath = [paths nextObject]))
|
||
{
|
||
BOOL isDir = NO;
|
||
if (completePath == nil)
|
||
completePath = subPath;
|
||
else
|
||
completePath = [completePath stringByAppendingPathComponent:subPath];
|
||
|
||
if ([self fileExistsAtPath:completePath isDirectory:&isDir])
|
||
{
|
||
if (!isDir)
|
||
NSLog(@"WARNING: during creation of directory %@:"
|
||
@" sub path %@ exists, but is not a directory !",
|
||
path, completePath);
|
||
}
|
||
else
|
||
{
|
||
const char *cpath;
|
||
cpath = [self fileSystemRepresentationWithPath: completePath];
|
||
if (CreateDirectory(cpath, NULL) == FALSE)
|
||
{
|
||
return NO;
|
||
}
|
||
}
|
||
}
|
||
|
||
#else
|
||
const char *cpath;
|
||
char dirpath[PATH_MAX+1];
|
||
struct stat statbuf;
|
||
int len, cur;
|
||
NSDictionary *needChown = nil;
|
||
|
||
/*
|
||
* If there is no file owner specified, and we are running setuid to
|
||
* root, then we assume we need to change ownership to correct user.
|
||
*/
|
||
if (attributes == nil || ([attributes fileOwnerAccountID] == NSNotFound
|
||
&& [attributes fileOwnerAccountName] == nil))
|
||
{
|
||
if (geteuid() == 0 && [@"root" isEqualToString: NSUserName()] == NO)
|
||
{
|
||
needChown = [NSDictionary dictionaryWithObjectsAndKeys:
|
||
NSFileOwnerAccountName, NSUserName(), nil];
|
||
}
|
||
}
|
||
cpath = [self fileSystemRepresentationWithPath: path];
|
||
len = strlen(cpath);
|
||
if (len > PATH_MAX) // name too long
|
||
{
|
||
ASSIGN(_lastError, @"Could not create directory - name too long");
|
||
return NO;
|
||
}
|
||
|
||
if (strcmp(cpath, "/") == 0 || len == 0) // cannot use "/" or ""
|
||
{
|
||
ASSIGN(_lastError, @"Could not create directory - no name given");
|
||
return NO;
|
||
}
|
||
|
||
strcpy(dirpath, cpath);
|
||
dirpath[len] = '\0';
|
||
if (dirpath[len-1] == '/')
|
||
dirpath[len-1] = '\0';
|
||
cur = 0;
|
||
|
||
do
|
||
{
|
||
// find next '/'
|
||
while (dirpath[cur] != '/' && cur < len)
|
||
cur++;
|
||
// if first char is '/' then again; (cur == len) -> last component
|
||
if (cur == 0)
|
||
{
|
||
cur++;
|
||
continue;
|
||
}
|
||
// check if path from 0 to cur is valid
|
||
dirpath[cur] = '\0';
|
||
if (stat(dirpath, &statbuf) == 0)
|
||
{
|
||
if (cur == len)
|
||
{
|
||
ASSIGN(_lastError,
|
||
@"Could not create directory - already exists");
|
||
return NO;
|
||
}
|
||
}
|
||
else
|
||
{
|
||
// make new directory
|
||
if (mkdir(dirpath, 0777) != 0)
|
||
{
|
||
NSString *s;
|
||
|
||
s = [NSString stringWithFormat: @"Could not create '%s' - '%s'",
|
||
dirpath, GSLastErrorStr(errno)];
|
||
ASSIGN(_lastError, s);
|
||
return NO;
|
||
}
|
||
// if last directory and attributes then change
|
||
if (cur == len && attributes != nil)
|
||
{
|
||
if ([self changeFileAttributes: attributes
|
||
atPath: [self stringWithFileSystemRepresentation: dirpath
|
||
length: cur]] == NO)
|
||
return NO;
|
||
if (needChown != nil)
|
||
{
|
||
if ([self changeFileAttributes: needChown
|
||
atPath: [self stringWithFileSystemRepresentation: dirpath
|
||
length: cur]] == NO)
|
||
{
|
||
NSLog(@"Failed to change ownership of '%s' to '%@'",
|
||
dirpath, NSUserName());
|
||
}
|
||
}
|
||
return YES;
|
||
}
|
||
}
|
||
dirpath[cur] = '/';
|
||
cur++;
|
||
}
|
||
while (cur < len);
|
||
|
||
#endif /* !MINGW */
|
||
|
||
// change attributes of last directory
|
||
if ([attributes count] == 0)
|
||
{
|
||
return YES;
|
||
}
|
||
return [self changeFileAttributes: attributes atPath: path];
|
||
}
|
||
|
||
/**
|
||
* Creates a new file, and sets its attributes as specified.<br />
|
||
* Initialises the file content with the specified data.<br />
|
||
* Returns YES on success, NO on failure.
|
||
*/
|
||
- (BOOL) createFileAtPath: (NSString*)path
|
||
contents: (NSData*)contents
|
||
attributes: (NSDictionary*)attributes
|
||
{
|
||
const char *cpath = [self fileSystemRepresentationWithPath: path];
|
||
|
||
#if defined(__MINGW__)
|
||
HANDLE fh;
|
||
DWORD written = 0;
|
||
DWORD len = [contents length];
|
||
|
||
fh = CreateFile(cpath, GENERIC_WRITE, 0, 0, CREATE_ALWAYS,
|
||
FILE_ATTRIBUTE_NORMAL, 0);
|
||
if (fh == INVALID_HANDLE_VALUE)
|
||
{
|
||
return NO;
|
||
}
|
||
else
|
||
{
|
||
if (len > 0)
|
||
{
|
||
WriteFile(fh, [contents bytes], len, &written, NULL);
|
||
}
|
||
CloseHandle(fh);
|
||
if (attributes != nil
|
||
&& [self changeFileAttributes: attributes atPath: path] == NO)
|
||
{
|
||
return NO;
|
||
}
|
||
return YES;
|
||
}
|
||
#else
|
||
int fd;
|
||
int len;
|
||
int written;
|
||
|
||
fd = open(cpath, GSBINIO|O_WRONLY|O_TRUNC|O_CREAT, 0644);
|
||
if (fd < 0)
|
||
{
|
||
return NO;
|
||
}
|
||
if (attributes != nil
|
||
&& [self changeFileAttributes: attributes atPath: path] == NO)
|
||
{
|
||
close (fd);
|
||
return NO;
|
||
}
|
||
|
||
/*
|
||
* If there is no file owner specified, and we are running setuid to
|
||
* root, then we assume we need to change ownership to correct user.
|
||
*/
|
||
if (attributes == nil || ([attributes fileOwnerAccountID] == NSNotFound
|
||
&& [attributes fileOwnerAccountName] == nil))
|
||
{
|
||
if (geteuid() == 0 && [@"root" isEqualToString: NSUserName()] == NO)
|
||
{
|
||
attributes = [NSDictionary dictionaryWithObjectsAndKeys:
|
||
NSFileOwnerAccountName, NSUserName(), nil];
|
||
if (![self changeFileAttributes: attributes atPath: path])
|
||
{
|
||
NSLog(@"Failed to change ownership of '%@' to '%@'",
|
||
path, NSUserName());
|
||
}
|
||
}
|
||
}
|
||
len = [contents length];
|
||
if (len > 0)
|
||
{
|
||
written = write(fd, [contents bytes], len);
|
||
}
|
||
else
|
||
{
|
||
written = 0;
|
||
}
|
||
close (fd);
|
||
#endif
|
||
return written == len;
|
||
}
|
||
|
||
/**
|
||
* Returns the current working directory used by all instance of the file
|
||
* manager in the current task.
|
||
*/
|
||
- (NSString*) currentDirectoryPath
|
||
{
|
||
char path[PATH_MAX];
|
||
|
||
#if defined(__MINGW__)
|
||
if (GetCurrentDirectory(PATH_MAX, path) > PATH_MAX)
|
||
return nil;
|
||
#else
|
||
#ifdef HAVE_GETCWD
|
||
if (getcwd(path, PATH_MAX-1) == NULL)
|
||
return nil;
|
||
#else
|
||
if (getwd(path) == NULL)
|
||
return nil;
|
||
#endif /* HAVE_GETCWD */
|
||
#endif /* !MINGW */
|
||
|
||
return [self stringWithFileSystemRepresentation: path length: strlen(path)];
|
||
}
|
||
|
||
/**
|
||
* Copies the file or directory at source to destination, using a
|
||
* handler object which should respond to
|
||
* [NSObject-fileManager:willProcessPath:] and
|
||
* [NSObject-fileManager:shouldProceedAfterError:] messages.
|
||
*/
|
||
- (BOOL) copyPath: (NSString*)source
|
||
toPath: (NSString*)destination
|
||
handler: (id)handler
|
||
{
|
||
NSDictionary *attrs;
|
||
NSString *fileType;
|
||
|
||
attrs = [self fileAttributesAtPath: source traverseLink: NO];
|
||
if (attrs == nil)
|
||
{
|
||
return NO;
|
||
}
|
||
fileType = [attrs fileType];
|
||
if ([fileType isEqualToString: NSFileTypeDirectory] == YES)
|
||
{
|
||
/* If destination directory is a descendant of source directory copying
|
||
isn't possible. */
|
||
if ([[destination stringByAppendingString: @"/"]
|
||
hasPrefix: [source stringByAppendingString: @"/"]])
|
||
{
|
||
return NO;
|
||
}
|
||
|
||
[self _sendToHandler: handler willProcessPath: destination];
|
||
|
||
if ([self createDirectoryAtPath: destination attributes: attrs] == NO)
|
||
{
|
||
return [self _proceedAccordingToHandler: handler
|
||
forError: _lastError
|
||
inPath: destination
|
||
fromPath: source
|
||
toPath: destination];
|
||
}
|
||
|
||
if ([self _copyPath: source toPath: destination handler: handler] == NO)
|
||
{
|
||
return NO;
|
||
}
|
||
}
|
||
else if ([fileType isEqualToString: NSFileTypeSymbolicLink] == YES)
|
||
{
|
||
NSString *path;
|
||
BOOL result;
|
||
|
||
[self _sendToHandler: handler willProcessPath: source];
|
||
|
||
path = [self pathContentOfSymbolicLinkAtPath: source];
|
||
result = [self createSymbolicLinkAtPath: destination pathContent: path];
|
||
if (result == NO)
|
||
{
|
||
result = [self _proceedAccordingToHandler: handler
|
||
forError: @"cannot link to file"
|
||
inPath: source
|
||
fromPath: source
|
||
toPath: destination];
|
||
|
||
if (result == NO)
|
||
{
|
||
return NO;
|
||
}
|
||
}
|
||
}
|
||
else
|
||
{
|
||
[self _sendToHandler: handler willProcessPath: source];
|
||
|
||
if ([self _copyFile: source toFile: destination handler: handler] == NO)
|
||
{
|
||
return NO;
|
||
}
|
||
}
|
||
[self changeFileAttributes: attrs atPath: destination];
|
||
return YES;
|
||
}
|
||
|
||
/**
|
||
* Moves the file or directory at source to destination, using a
|
||
* handler object which should respond to
|
||
* [NSObject-fileManager:willProcessPath:] and
|
||
* [NSObject-fileManager:shouldProceedAfterError:] messages.
|
||
*/
|
||
- (BOOL) movePath: (NSString*)source
|
||
toPath: (NSString*)destination
|
||
handler: (id)handler
|
||
{
|
||
BOOL sourceIsDir, fileExists;
|
||
const char* sourcePath = [self fileSystemRepresentationWithPath: source];
|
||
const char* destPath = [self fileSystemRepresentationWithPath: destination];
|
||
NSString* destinationParent;
|
||
unsigned int sourceDevice, destinationDevice;
|
||
|
||
fileExists = [self fileExistsAtPath: source isDirectory: &sourceIsDir];
|
||
if (!fileExists)
|
||
{
|
||
return NO;
|
||
}
|
||
|
||
/* Check to see if the source and destination's parent are on the same
|
||
physical device so we can perform a rename syscall directly. */
|
||
sourceDevice = [[self fileSystemAttributesAtPath: source] fileSystemNumber];
|
||
destinationParent = [destination stringByDeletingLastPathComponent];
|
||
if ([destinationParent isEqual: @""])
|
||
destinationParent = @".";
|
||
destinationDevice
|
||
= [[self fileSystemAttributesAtPath: destinationParent] fileSystemNumber];
|
||
|
||
if (sourceDevice != destinationDevice)
|
||
{
|
||
/* If destination directory is a descendant of source directory moving
|
||
isn't possible. */
|
||
if (sourceIsDir && [[destination stringByAppendingString: @"/"]
|
||
hasPrefix: [source stringByAppendingString: @"/"]])
|
||
return NO;
|
||
|
||
if ([self copyPath: source toPath: destination handler: handler])
|
||
{
|
||
NSDictionary *attributes;
|
||
|
||
attributes = [self fileAttributesAtPath: source
|
||
traverseLink: NO];
|
||
[self changeFileAttributes: attributes atPath: destination];
|
||
return [self removeFileAtPath: source handler: handler];
|
||
}
|
||
else
|
||
return NO;
|
||
}
|
||
else
|
||
{
|
||
/* source and destination are on the same device so we can simply
|
||
invoke rename on source. */
|
||
[self _sendToHandler: handler willProcessPath: source];
|
||
|
||
if (rename (sourcePath, destPath) == -1)
|
||
{
|
||
return [self _proceedAccordingToHandler: handler
|
||
forError: @"cannot move file"
|
||
inPath: source
|
||
fromPath: source
|
||
toPath: destination];
|
||
}
|
||
return YES;
|
||
}
|
||
|
||
return NO;
|
||
}
|
||
|
||
/**
|
||
* <p>Links the file or directory at source to destination, using a
|
||
* handler object which should respond to
|
||
* [NSObject-fileManager:willProcessPath:] and
|
||
* [NSObject-fileManager:shouldProceedAfterError:] messages.
|
||
* </p>
|
||
* <p>If the destination is a directory, the source path is linked
|
||
* into that directory, otherwise the destination must not exist,
|
||
* but its parent directory must exist and the source will be linked
|
||
* into the parent as the name specified by the destination.
|
||
* </p>
|
||
* <p>If the source is a symbolic link, it is copied to the destination.<br />
|
||
* If the source is a directory, it is copied to the destination and its
|
||
* contents are linked into the new directory.<br />
|
||
* Otherwise, a hard link is made from the destination to the source.
|
||
* </p>
|
||
*/
|
||
- (BOOL) linkPath: (NSString*)source
|
||
toPath: (NSString*)destination
|
||
handler: (id)handler
|
||
{
|
||
#ifdef HAVE_LINK
|
||
NSDictionary *attrs;
|
||
NSString *fileType;
|
||
BOOL isDir;
|
||
|
||
if ([self fileExistsAtPath: destination isDirectory: &isDir] == YES
|
||
&& isDir == YES)
|
||
{
|
||
destination = [destination stringByAppendingPathComponent:
|
||
[source lastPathComponent]];
|
||
}
|
||
|
||
attrs = [self fileAttributesAtPath: source traverseLink: NO];
|
||
if (attrs == nil)
|
||
{
|
||
return NO;
|
||
}
|
||
|
||
[self _sendToHandler: handler willProcessPath: destination];
|
||
|
||
fileType = [attrs fileType];
|
||
if ([fileType isEqualToString: NSFileTypeDirectory] == YES)
|
||
{
|
||
/* If destination directory is a descendant of source directory linking
|
||
isn't possible because of recursion. */
|
||
if ([[destination stringByAppendingString: @"/"]
|
||
hasPrefix: [source stringByAppendingString: @"/"]])
|
||
{
|
||
return NO;
|
||
}
|
||
|
||
if ([self createDirectoryAtPath: destination attributes: attrs] == NO)
|
||
{
|
||
return [self _proceedAccordingToHandler: handler
|
||
forError: _lastError
|
||
inPath: destination
|
||
fromPath: source
|
||
toPath: destination];
|
||
}
|
||
|
||
if ([self _linkPath: source toPath: destination handler: handler] == NO)
|
||
{
|
||
return NO;
|
||
}
|
||
}
|
||
else if ([fileType isEqual: NSFileTypeSymbolicLink])
|
||
{
|
||
NSString *path;
|
||
|
||
path = [self pathContentOfSymbolicLinkAtPath: source];
|
||
if ([self createSymbolicLinkAtPath: destination
|
||
pathContent: path] == NO)
|
||
{
|
||
if ([self _proceedAccordingToHandler: handler
|
||
forError: @"cannot create symbolic link"
|
||
inPath: source
|
||
fromPath: source
|
||
toPath: destination] == NO)
|
||
{
|
||
return NO;
|
||
}
|
||
}
|
||
}
|
||
else
|
||
{
|
||
if (link([source fileSystemRepresentation],
|
||
[destination fileSystemRepresentation]) < 0)
|
||
{
|
||
if ([self _proceedAccordingToHandler: handler
|
||
forError: @"cannot create hard link"
|
||
inPath: source
|
||
fromPath: source
|
||
toPath: destination] == NO)
|
||
{
|
||
return NO;
|
||
}
|
||
}
|
||
}
|
||
[self changeFileAttributes: attrs atPath: destination];
|
||
return YES;
|
||
#else
|
||
return NO; // Links not supported on this platform
|
||
#endif
|
||
}
|
||
|
||
/**
|
||
* Removes the file or directory at path, using a
|
||
* handler object which should respond to
|
||
* [NSObject-fileManager:willProcessPath:] and
|
||
* [NSObject-fileManager:shouldProceedAfterError:] messages.
|
||
*/
|
||
- (BOOL) removeFileAtPath: (NSString*)path
|
||
handler: handler
|
||
{
|
||
BOOL is_dir;
|
||
const char *cpath;
|
||
|
||
if ([path isEqualToString: @"."] || [path isEqualToString: @".."])
|
||
{
|
||
[NSException raise: NSInvalidArgumentException
|
||
format: @"Attempt to remove illegal path"];
|
||
}
|
||
|
||
[self _sendToHandler: handler willProcessPath: path];
|
||
|
||
cpath = [self fileSystemRepresentationWithPath: path];
|
||
if (cpath == 0 || *cpath == '\0')
|
||
{
|
||
return NO;
|
||
}
|
||
else
|
||
{
|
||
#if defined(__MINGW__)
|
||
DWORD res;
|
||
|
||
res = GetFileAttributes(cpath);
|
||
if (res == WIN32ERR)
|
||
{
|
||
return NO;
|
||
}
|
||
if (res & FILE_ATTRIBUTE_DIRECTORY)
|
||
{
|
||
is_dir = YES;
|
||
}
|
||
else
|
||
{
|
||
is_dir = NO;
|
||
}
|
||
#else
|
||
struct stat statbuf;
|
||
|
||
if (lstat(cpath, &statbuf) != 0)
|
||
{
|
||
return NO;
|
||
}
|
||
is_dir = ((statbuf.st_mode & S_IFMT) == S_IFDIR);
|
||
#endif /* MINGW */
|
||
}
|
||
|
||
if (!is_dir)
|
||
{
|
||
#if defined(__MINGW__)
|
||
if (DeleteFile(cpath) == FALSE)
|
||
#else
|
||
if (unlink(cpath) < 0)
|
||
#endif
|
||
{
|
||
return [self _proceedAccordingToHandler: handler
|
||
forError: [NSString stringWithCString: GSLastErrorStr (errno)]
|
||
inPath: path];
|
||
}
|
||
else
|
||
{
|
||
return YES;
|
||
}
|
||
}
|
||
else
|
||
{
|
||
NSArray *contents = [self directoryContentsAtPath: path];
|
||
unsigned count = [contents count];
|
||
unsigned i;
|
||
|
||
for (i = 0; i < count; i++)
|
||
{
|
||
NSString *item;
|
||
NSString *next;
|
||
BOOL result;
|
||
CREATE_AUTORELEASE_POOL(arp);
|
||
|
||
item = [contents objectAtIndex: i];
|
||
next = [path stringByAppendingPathComponent: item];
|
||
result = [self removeFileAtPath: next handler: handler];
|
||
RELEASE(arp);
|
||
if (result == NO)
|
||
{
|
||
return NO;
|
||
}
|
||
}
|
||
|
||
if (rmdir([path fileSystemRepresentation]) < 0)
|
||
{
|
||
return [self _proceedAccordingToHandler: handler
|
||
forError: [NSString stringWithCString: GSLastErrorStr (errno)]
|
||
inPath: path];
|
||
}
|
||
else
|
||
{
|
||
return YES;
|
||
}
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Returns YES if a file (or directory etc) exists at the specified path.
|
||
*/
|
||
- (BOOL) fileExistsAtPath: (NSString*)path
|
||
{
|
||
return [self fileExistsAtPath: path isDirectory: NULL];
|
||
}
|
||
|
||
/**
|
||
* Returns YES if a file (or directory etc) exists at the specified path.<br />
|
||
* If the isDirectory argument is not a nul pointer, stores a flag in the
|
||
* location it points to, to indicate whether the file is a directory or not.
|
||
*/
|
||
- (BOOL) fileExistsAtPath: (NSString*)path isDirectory: (BOOL*)isDirectory
|
||
{
|
||
const char* cpath = [self fileSystemRepresentationWithPath: path];
|
||
|
||
if (cpath == 0 || *cpath == '\0')
|
||
{
|
||
return NO;
|
||
}
|
||
else
|
||
{
|
||
#if defined(__MINGW__)
|
||
DWORD res;
|
||
|
||
res = GetFileAttributes(cpath);
|
||
if (res == WIN32ERR)
|
||
{
|
||
return NO;
|
||
}
|
||
if (isDirectory != 0)
|
||
{
|
||
if (res & FILE_ATTRIBUTE_DIRECTORY)
|
||
{
|
||
*isDirectory = YES;
|
||
}
|
||
else
|
||
{
|
||
*isDirectory = NO;
|
||
}
|
||
}
|
||
return YES;
|
||
#else
|
||
struct stat statbuf;
|
||
|
||
if (stat(cpath, &statbuf) != 0)
|
||
return NO;
|
||
|
||
if (isDirectory)
|
||
{
|
||
*isDirectory = ((statbuf.st_mode & S_IFMT) == S_IFDIR);
|
||
}
|
||
|
||
return YES;
|
||
#endif /* MINGW */
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Returns YES if a file (or directory etc) exists at the specified path
|
||
* and is readable.
|
||
*/
|
||
- (BOOL) isReadableFileAtPath: (NSString*)path
|
||
{
|
||
const char* cpath = [self fileSystemRepresentationWithPath: path];
|
||
|
||
if (cpath == 0 || *cpath == '\0')
|
||
{
|
||
return NO;
|
||
}
|
||
else
|
||
{
|
||
#if defined(__MINGW__)
|
||
DWORD res= GetFileAttributes(cpath);
|
||
|
||
if (res == WIN32ERR)
|
||
{
|
||
return NO;
|
||
}
|
||
return YES;
|
||
#else
|
||
return (access(cpath, R_OK) == 0);
|
||
#endif
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Returns YES if a file (or directory etc) exists at the specified path
|
||
* and is writable.
|
||
*/
|
||
- (BOOL) isWritableFileAtPath: (NSString*)path
|
||
{
|
||
const char* cpath = [self fileSystemRepresentationWithPath: path];
|
||
|
||
if (cpath == 0 || *cpath == '\0')
|
||
{
|
||
return NO;
|
||
}
|
||
else
|
||
{
|
||
#if defined(__MINGW__)
|
||
DWORD res= GetFileAttributes(cpath);
|
||
|
||
if (res == WIN32ERR)
|
||
{
|
||
return NO;
|
||
}
|
||
return (res & FILE_ATTRIBUTE_READONLY) ? NO : YES;
|
||
#else
|
||
return (access(cpath, W_OK) == 0);
|
||
#endif
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Returns YES if a file (or directory etc) exists at the specified path
|
||
* and is executable (if a directory is executable, you can access its
|
||
* contents).
|
||
*/
|
||
- (BOOL) isExecutableFileAtPath: (NSString*)path
|
||
{
|
||
const char* cpath = [self fileSystemRepresentationWithPath: path];
|
||
|
||
if (cpath == 0 || *cpath == '\0')
|
||
return NO;
|
||
else
|
||
{
|
||
#if defined(__MINGW__)
|
||
DWORD res= GetFileAttributes(cpath);
|
||
int len = strlen(cpath);
|
||
|
||
if (res == WIN32ERR)
|
||
return NO;
|
||
if (len > 4 && strcmp(&cpath[len-4], ".exe") == 0)
|
||
return YES;
|
||
/* FIXME: On unix, directory accessable == executable, so we simulate that
|
||
here for Windows. Is there a better check for directory access? */
|
||
if (res & FILE_ATTRIBUTE_DIRECTORY)
|
||
return YES;
|
||
return NO;
|
||
#else
|
||
return (access(cpath, X_OK) == 0);
|
||
#endif
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Returns YES if a file (or directory etc) exists at the specified path
|
||
* and is deletable.
|
||
*/
|
||
- (BOOL) isDeletableFileAtPath: (NSString*)path
|
||
{
|
||
const char* cpath = [self fileSystemRepresentationWithPath: path];
|
||
|
||
if (cpath == 0 || *cpath == '\0')
|
||
{
|
||
return NO;
|
||
}
|
||
else
|
||
{
|
||
// TODO - handle directories
|
||
#if defined(__MINGW__)
|
||
DWORD res= GetFileAttributes(cpath);
|
||
|
||
if (res == WIN32ERR)
|
||
{
|
||
return NO;
|
||
}
|
||
return (res & FILE_ATTRIBUTE_READONLY) ? NO : YES;
|
||
#else
|
||
path = [path stringByDeletingLastPathComponent];
|
||
if ([path length] == 0)
|
||
{
|
||
path = @".";
|
||
}
|
||
cpath = [self fileSystemRepresentationWithPath: path];
|
||
|
||
return (access(cpath, X_OK | W_OK) == 0);
|
||
#endif
|
||
}
|
||
}
|
||
|
||
/**
|
||
* If a file (or directory etc) exists at the specified path, and can be
|
||
* queriesd for its attributes, this method returns a dictionary containing
|
||
* the various attributes of that file. Otherwise nil is returned.<br />
|
||
* If the flag is NO and the file is a symbolic link, the attributes of
|
||
* the link itsself (rather than the file it points to) are returned.<br />
|
||
* <p>
|
||
* The dictionary keys for attributes are -
|
||
* </p>
|
||
* <deflist>
|
||
* <term>NSFileAppendOnly</term>
|
||
* <desc>NSNumber ... boolean</desc>
|
||
* <term>NSFileCreationDate</term>
|
||
* <desc>NSDate when the file was created (if supported)</desc>
|
||
* <term>NSFileDeviceIdentifier</term>
|
||
* <desc>NSNumber (identifies the device on which the file is stored)</desc>
|
||
* <term>NSFileExtensionHidden</term>
|
||
* <desc>NSNumber ... boolean</desc>
|
||
* <term>NSFileGroupOwnerAccountName</term>
|
||
* <desc>NSString name of the file group</desc>
|
||
* <term>NSFileGroupOwnerAccountID</term>
|
||
* <desc>NSNumber ID of the file group</desc>
|
||
* <term>NSFileHFSCreatorCode</term>
|
||
* <desc>NSNumber not used</desc>
|
||
* <term>NSFileHFSTypeCode</term>
|
||
* <desc>NSNumber not used</desc>
|
||
* <term>NSFileImmutable</term>
|
||
* <desc>NSNumber ... boolean</desc>
|
||
* <term>NSFileModificationDate</term>
|
||
* <desc>NSDate when the file was last modified</desc>
|
||
* <term>NSFileOwnerAccountName</term>
|
||
* <desc>NSString name of the file owner</desc>
|
||
* <term>NSFileOwnerAccountID</term>
|
||
* <desc>NSNumber ID of the file owner</desc>
|
||
* <term>NSFilePosixPermissions</term>
|
||
* <desc>NSNumber posix access permissions mask</desc>
|
||
* <term>NSFileReferenceCount</term>
|
||
* <desc>NSNumber number of links to this file</desc>
|
||
* <term>NSFileSize</term>
|
||
* <desc>NSNumber size of the file in bytes</desc>
|
||
* <term>NSFileSystemFileNumber</term>
|
||
* <desc>NSNumber the identifier for the file on the filesystem</desc>
|
||
* <term>NSFileSystemNumber</term>
|
||
* <desc>NSNumber the filesystem on which the file is stored</desc>
|
||
* <term>NSFileType</term>
|
||
* <desc>NSString the type of file</desc>
|
||
* </deflist>
|
||
* <p>
|
||
* The NSDictionary class also has a set of accessor methods which
|
||
* enable you to get at file attribute information more efficiently
|
||
* than using the keys above to extract it. You should generally
|
||
* use the accessor methods where they are available.
|
||
* </p>
|
||
* <list>
|
||
* <item>[NSDictionary-fileCreationDate]</item>
|
||
* <item>[NSDictionary-fileExtensionHidden]</item>
|
||
* <item>[NSDictionary-fileHFSCreatorCode]</item>
|
||
* <item>[NSDictionary-fileHFSTypeCode]</item>
|
||
* <item>[NSDictionary-fileIsAppendOnly]</item>
|
||
* <item>[NSDictionary-fileIsImmutable]</item>
|
||
* <item>[NSDictionary-fileSize]</item>
|
||
* <item>[NSDictionary-fileType]</item>
|
||
* <item>[NSDictionary-fileOwnerAccountName]</item>
|
||
* <item>[NSDictionary-fileOwnerAccountID]</item>
|
||
* <item>[NSDictionary-fileGroupOwnerAccountName]</item>
|
||
* <item>[NSDictionary-fileGroupOwnerAccountID]</item>
|
||
* <item>[NSDictionary-fileModificationDate]</item>
|
||
* <item>[NSDictionary-filePosixPermissions]</item>
|
||
* <item>[NSDictionary-fileSystemNumber]</item>
|
||
* <item>[NSDictionary-fileSystemFileNumber]</item>
|
||
* </list>
|
||
*/
|
||
- (NSDictionary*) fileAttributesAtPath: (NSString*)path traverseLink: (BOOL)flag
|
||
{
|
||
const char *cpath = [self fileSystemRepresentationWithPath: path];
|
||
NSDictionary *d;
|
||
|
||
d = [GSAttrDictionary attributesAt: cpath traverseLink: flag];
|
||
return d;
|
||
}
|
||
|
||
/**
|
||
* Returns a dictionary containing the filesystem attributes for the
|
||
* specified path (or nil if the path is not valid).<br />
|
||
* <deflist>
|
||
* <term>NSFileSystemSize</term>
|
||
* <desc>NSNumber the size of the filesystem in bytes</desc>
|
||
* <term>NSFileSystemFreeSize</term>
|
||
* <desc>NSNumber the amount of unused space on the filesystem in bytes</desc>
|
||
* <term>NSFileSystemNodes</term>
|
||
* <desc>NSNumber the number of nodes in use to store files</desc>
|
||
* <term>NSFileSystemFreeNodes</term>
|
||
* <desc>NSNumber the number of nodes available to create files</desc>
|
||
* <term>NSFileSystemNumber</term>
|
||
* <desc>NSNumber the identifying number for the filesystem</desc>
|
||
* </deflist>
|
||
*/
|
||
- (NSDictionary*) fileSystemAttributesAtPath: (NSString*)path
|
||
{
|
||
#if defined(__MINGW__)
|
||
unsigned long long totalsize, freesize;
|
||
id values[5];
|
||
id keys[5] = {
|
||
NSFileSystemSize,
|
||
NSFileSystemFreeSize,
|
||
NSFileSystemNodes,
|
||
NSFileSystemFreeNodes,
|
||
NSFileSystemNumber
|
||
};
|
||
DWORD SectorsPerCluster, BytesPerSector, NumberFreeClusters;
|
||
DWORD TotalNumberClusters;
|
||
const char *cpath = [self fileSystemRepresentationWithPath: path];
|
||
|
||
if (!GetDiskFreeSpace(cpath, &SectorsPerCluster,
|
||
&BytesPerSector, &NumberFreeClusters, &TotalNumberClusters))
|
||
return nil;
|
||
|
||
totalsize = (unsigned long long)TotalNumberClusters
|
||
* (unsigned long long)SectorsPerCluster
|
||
* (unsigned long long)BytesPerSector;
|
||
freesize = (unsigned long long)NumberFreeClusters
|
||
* (unsigned long long)SectorsPerCluster
|
||
* (unsigned long long)BytesPerSector;
|
||
|
||
values[0] = [NSNumber numberWithUnsignedLongLong: totalsize];
|
||
values[1] = [NSNumber numberWithUnsignedLongLong: freesize];
|
||
values[2] = [NSNumber numberWithLong: LONG_MAX];
|
||
values[3] = [NSNumber numberWithLong: LONG_MAX];
|
||
values[4] = [NSNumber numberWithUnsignedInt: 0];
|
||
|
||
return [NSDictionary dictionaryWithObjects: values forKeys: keys count: 5];
|
||
|
||
#else
|
||
#if defined(HAVE_SYS_VFS_H) || defined(HAVE_SYS_STATFS_H) \
|
||
|| defined(HAVE_SYS_MOUNT_H)
|
||
struct stat statbuf;
|
||
#ifdef HAVE_STATVFS
|
||
struct statvfs statfsbuf;
|
||
#else
|
||
struct statfs statfsbuf;
|
||
#endif
|
||
unsigned long long totalsize, freesize;
|
||
const char* cpath = [self fileSystemRepresentationWithPath: path];
|
||
|
||
id values[5];
|
||
id keys[5] = {
|
||
NSFileSystemSize,
|
||
NSFileSystemFreeSize,
|
||
NSFileSystemNodes,
|
||
NSFileSystemFreeNodes,
|
||
NSFileSystemNumber
|
||
};
|
||
|
||
if (stat(cpath, &statbuf) != 0)
|
||
return nil;
|
||
|
||
#ifdef HAVE_STATVFS
|
||
if (statvfs(cpath, &statfsbuf) != 0)
|
||
return nil;
|
||
#else
|
||
if (statfs(cpath, &statfsbuf) != 0)
|
||
return nil;
|
||
#endif
|
||
|
||
totalsize = (unsigned long long) statfsbuf.f_bsize
|
||
* (unsigned long long) statfsbuf.f_blocks;
|
||
freesize = (unsigned long long) statfsbuf.f_bsize
|
||
* (unsigned long long) statfsbuf.f_bavail;
|
||
|
||
values[0] = [NSNumber numberWithUnsignedLongLong: totalsize];
|
||
values[1] = [NSNumber numberWithUnsignedLongLong: freesize];
|
||
values[2] = [NSNumber numberWithLong: statfsbuf.f_files];
|
||
values[3] = [NSNumber numberWithLong: statfsbuf.f_ffree];
|
||
values[4] = [NSNumber numberWithUnsignedLong: statbuf.st_dev];
|
||
|
||
return [NSDictionary dictionaryWithObjects: values forKeys: keys count: 5];
|
||
#else
|
||
return nil;
|
||
#endif
|
||
#endif /* MINGW */
|
||
}
|
||
|
||
/**
|
||
* Returns an array of the contents of the specified directory.<br />
|
||
* The listing does <strong>not</strong> recursively list subdirectories.<br />
|
||
* The special files '.' and '..' are not listed.<br />
|
||
* Indicates an error by returning nil (eg. if path is not a directory or
|
||
* it can't be read for some reason).
|
||
*/
|
||
- (NSArray*) directoryContentsAtPath: (NSString*)path
|
||
{
|
||
NSDirectoryEnumerator *direnum;
|
||
NSMutableArray *content;
|
||
IMP nxtImp;
|
||
IMP addImp;
|
||
BOOL is_dir;
|
||
|
||
/*
|
||
* See if this is a directory (don't follow links).
|
||
*/
|
||
if ([self fileExistsAtPath: path isDirectory: &is_dir] == NO || is_dir == NO)
|
||
{
|
||
return nil;
|
||
}
|
||
/* We initialize the directory enumerator with justContents == YES,
|
||
which tells the NSDirectoryEnumerator code that we only enumerate
|
||
the contents non-recursively once, and exit. NSDirectoryEnumerator
|
||
can perform some optms using this assumption. */
|
||
direnum = [[NSDirectoryEnumerator alloc] initWithDirectoryPath: path
|
||
recurseIntoSubdirectories: NO
|
||
followSymlinks: NO
|
||
justContents: YES];
|
||
content = [NSMutableArray arrayWithCapacity: 128];
|
||
|
||
nxtImp = [direnum methodForSelector: @selector(nextObject)];
|
||
addImp = [content methodForSelector: @selector(addObject:)];
|
||
|
||
while ((path = (*nxtImp)(direnum, @selector(nextObject))) != nil)
|
||
{
|
||
(*addImp)(content, @selector(addObject:), path);
|
||
}
|
||
RELEASE(direnum);
|
||
|
||
return [content makeImmutableCopyOnFail: NO];
|
||
}
|
||
|
||
/**
|
||
* Returns the name of the file or directory at path. Converts it into
|
||
* a format for display to an end user. This may render it unusable as
|
||
* part of a file/path name.<br />
|
||
* For instance, if a user has elected not to see file extensions, this
|
||
* method may return filenames with the extension removed.<br />
|
||
* The default operation is to return the result of calling
|
||
* [NSString-lastPathComponent] on the path.
|
||
*/
|
||
- (NSString*) displayNameAtPath: (NSString*)path
|
||
{
|
||
return [path lastPathComponent];
|
||
}
|
||
|
||
/**
|
||
* Returns an enumerator which can be used to return each item with
|
||
* the directory at path in turn.<br />
|
||
* The enumeration is recursive ... following all nested subdirectories.
|
||
*/
|
||
- (NSDirectoryEnumerator*) enumeratorAtPath: (NSString*)path
|
||
{
|
||
return AUTORELEASE([[NSDirectoryEnumerator alloc]
|
||
initWithDirectoryPath: path
|
||
recurseIntoSubdirectories: YES
|
||
followSymlinks: NO
|
||
justContents: NO]);
|
||
}
|
||
|
||
/**
|
||
* Returns an array containing the (relative) paths of all the items
|
||
* in the directory at path.<br />
|
||
* The listing follows all subdirectories, so it can produce a very
|
||
* large array ... use with care.
|
||
*/
|
||
- (NSArray*) subpathsAtPath: (NSString*)path
|
||
{
|
||
NSDirectoryEnumerator *direnum;
|
||
NSMutableArray *content;
|
||
BOOL isDir;
|
||
IMP nxtImp;
|
||
IMP addImp;
|
||
|
||
if (![self fileExistsAtPath: path isDirectory: &isDir] || !isDir)
|
||
{
|
||
return nil;
|
||
}
|
||
direnum = [[NSDirectoryEnumerator alloc] initWithDirectoryPath: path
|
||
recurseIntoSubdirectories: YES
|
||
followSymlinks: NO
|
||
justContents: NO];
|
||
content = [NSMutableArray arrayWithCapacity: 128];
|
||
|
||
nxtImp = [direnum methodForSelector: @selector(nextObject)];
|
||
addImp = [content methodForSelector: @selector(addObject:)];
|
||
|
||
while ((path = (*nxtImp)(direnum, @selector(nextObject))) != nil)
|
||
{
|
||
(*addImp)(content, @selector(addObject:), path);
|
||
}
|
||
|
||
RELEASE(direnum);
|
||
|
||
return [content makeImmutableCopyOnFail: NO];
|
||
}
|
||
|
||
/**
|
||
* Creates a symbolic link at path which links to the location
|
||
* specified by otherPath.
|
||
*/
|
||
- (BOOL) createSymbolicLinkAtPath: (NSString*)path
|
||
pathContent: (NSString*)otherPath
|
||
{
|
||
#ifdef HAVE_SYMLINK
|
||
const char* newpath = [self fileSystemRepresentationWithPath: path];
|
||
const char* oldpath = [self fileSystemRepresentationWithPath: otherPath];
|
||
|
||
return (symlink(oldpath, newpath) == 0);
|
||
#else
|
||
return NO;
|
||
#endif
|
||
}
|
||
|
||
/**
|
||
* Returns the name of the file or directory that the symbolic link
|
||
* at path points to.
|
||
*/
|
||
- (NSString*) pathContentOfSymbolicLinkAtPath: (NSString*)path
|
||
{
|
||
#ifdef HAVE_READLINK
|
||
char lpath[PATH_MAX];
|
||
const char* cpath = [self fileSystemRepresentationWithPath: path];
|
||
int llen = readlink(cpath, lpath, PATH_MAX-1);
|
||
|
||
if (llen > 0)
|
||
{
|
||
return [self stringWithFileSystemRepresentation: lpath length: llen];
|
||
}
|
||
else
|
||
{
|
||
return nil;
|
||
}
|
||
#else
|
||
return nil;
|
||
#endif
|
||
}
|
||
|
||
/**
|
||
* Convert from OpenStep internal path format (unix-style) to a string in
|
||
* the local filesystem format, suitable for passing to system functions.<br />
|
||
* Under unix, this simply standardizes the path and converts to a
|
||
* C string.<br />
|
||
* Under windoze, this attempts to use local conventions to convert to a
|
||
* windows path. In GNUstep, the conventional unix syntax '~user/...' can
|
||
* be used to indicate a windoze drive specification by using the drive
|
||
* letter in place of the username, and the syntax '~@server/...' can be used
|
||
* to indicate a file located on the named windoze network server (the
|
||
* '~@' maps to the leading '//' in a windoze UNC path specification.
|
||
*/
|
||
- (const char*) fileSystemRepresentationWithPath: (NSString*)path
|
||
{
|
||
#ifdef __MINGW__
|
||
/*
|
||
* If path is in Unix format, transmogrify it so Windows functions
|
||
* can handle it
|
||
*/
|
||
NSString *newpath;
|
||
const char *c_path;
|
||
int l;
|
||
|
||
path = [path stringByStandardizingPath];
|
||
newpath = path;
|
||
c_path = [path cString];
|
||
if (c_path == 0)
|
||
{
|
||
return 0;
|
||
}
|
||
l = strlen(c_path);
|
||
if (l >= 2 && c_path[0] == '~' && c_path[1] == '@')
|
||
{
|
||
// Conver to windows UNC path.
|
||
newpath = [NSString stringWithFormat: @"//%s", &c_path[2]];
|
||
}
|
||
else if (l >= 2 && c_path[0] == '~' && isalpha(c_path[1])
|
||
&& (l == 2 || c_path[2] == '/'))
|
||
{
|
||
newpath = [NSString stringWithFormat: @"%c:%s", c_path[1],
|
||
&c_path[2]];
|
||
}
|
||
else if (l >= 3 && c_path[0] == '/' && c_path[1] == '/' && isalpha(c_path[2]))
|
||
{
|
||
if (l == 3 || c_path[3] == '/')
|
||
{
|
||
/* Cygwin "//c/" type absolute path */
|
||
newpath = [NSString stringWithFormat: @"%c:%s", c_path[2],
|
||
&c_path[3]];
|
||
}
|
||
else
|
||
{
|
||
/* Windows absolute UNC path "//name/" */
|
||
newpath = path;
|
||
}
|
||
}
|
||
else if (isalpha(c_path[0]) && c_path[1] == ':')
|
||
{
|
||
/* Windows absolute path */
|
||
newpath = path;
|
||
}
|
||
else if (c_path[0] == '/')
|
||
{
|
||
#ifdef __CYGWIN__
|
||
if (l > 11 && strncmp(c_path, "/cygdrive/", 10) == 0 && c_path[11] == '/')
|
||
{
|
||
newpath = [NSString stringWithFormat: @"%c:%s", c_path[10],
|
||
&c_path[11]];
|
||
}
|
||
else
|
||
{
|
||
NSDictionary *env;
|
||
NSString *cyghome;
|
||
|
||
env = [[NSProcessInfo processInfo] environment];
|
||
cyghome = [env objectForKey: @"CYGWIN_HOME"];
|
||
if (cyghome != nil)
|
||
{
|
||
/* FIXME: Find cygwin drive? */
|
||
newpath = cyghome;
|
||
newpath = [newpath stringByAppendingPathComponent: path];
|
||
}
|
||
else
|
||
{
|
||
newpath = path;
|
||
}
|
||
}
|
||
#else
|
||
if (l >= 2 && c_path[0] == '/' && isalpha(c_path[1])
|
||
&& (l == 2 || c_path[2] == '/'))
|
||
|
||
{
|
||
/* Mingw /drive/... format */
|
||
newpath = [NSString stringWithFormat: @"%c:%s", c_path[1],
|
||
&c_path[3]];
|
||
}
|
||
else
|
||
{
|
||
newpath = path;
|
||
}
|
||
#endif
|
||
}
|
||
else
|
||
{
|
||
newpath = path;
|
||
}
|
||
newpath = [newpath stringByReplacingString: @"/" withString: @"\\"];
|
||
return [newpath cString];
|
||
#else
|
||
/*
|
||
* NB ... Don't standardize path, since that would automatically
|
||
* follow symbolic links ... and mess up any code wishing to
|
||
* examine the link itsself.
|
||
*/
|
||
return [path cString];
|
||
#endif
|
||
}
|
||
|
||
/**
|
||
* This method converts from a local system specific filename representation
|
||
* to the internal OpenStep representation (unix-style). This should be used
|
||
* whenever a filename is read in from the local system.<br />
|
||
* In GNUstep, windoze drive specifiers are encoded in the internal path
|
||
* using the conventuional unix syntax of '~user/...' where the drive letter
|
||
* is used instead of a username.
|
||
*/
|
||
- (NSString*) stringWithFileSystemRepresentation: (const char*)string
|
||
length: (unsigned int)len
|
||
{
|
||
#ifdef __MINGW__
|
||
const char *ptr = string;
|
||
char buf[len + 20];
|
||
unsigned i;
|
||
unsigned j;
|
||
|
||
/*
|
||
* If path is in Windows format, transmogrify it so Unix functions
|
||
* can handle it
|
||
*/
|
||
if (len == 0)
|
||
{
|
||
return @"";
|
||
}
|
||
if (len >= 2 && ptr[1] == '/' && ptr[0] == '/')
|
||
{
|
||
/*
|
||
* Convert '//<servername>/' to '~@<servername>/' sequences.
|
||
*/
|
||
buf[0] = '~';
|
||
buf[1] = '@';
|
||
i = 2;
|
||
}
|
||
else if (len >= 2 && ptr[1] == ':' && isalpha(ptr[0]))
|
||
{
|
||
/*
|
||
* Convert '<driveletter>:' to '~<driveletter>/' sequences.
|
||
*/
|
||
buf[0] = '~';
|
||
buf[1] = ptr[0];
|
||
buf[2] = '/';
|
||
ptr -= 1;
|
||
len++;
|
||
i = 3;
|
||
}
|
||
#ifdef __CYGWIN__
|
||
else if (len > 9 && strncmp(ptr, "/cygdrive/", 10) == 0)
|
||
{
|
||
buf[0] = '~';
|
||
ptr += 9;
|
||
len -= 9;
|
||
i = 1;
|
||
}
|
||
#else
|
||
else if (len >= 2 && ptr[0] == '/' && isalpha(ptr[1])
|
||
&& (len == 2 || ptr[2] == '/'))
|
||
{
|
||
/*
|
||
* Convert '/<driveletter>' to '~<driveletter>' sequences.
|
||
*/
|
||
buf[0] = '~';
|
||
i = 1;
|
||
}
|
||
#endif
|
||
else
|
||
{
|
||
i = 0;
|
||
}
|
||
/*
|
||
* Convert backslashes to slashes, colaescing adjacent slashes.
|
||
* Also elide '/./' sequences, because we can do so efficiently.
|
||
*/
|
||
j = i;
|
||
while (i < len)
|
||
{
|
||
if (ptr[i] == '\\')
|
||
{
|
||
if (j == 0 || buf[j-1] != '/')
|
||
{
|
||
if (j > 2 && buf[j-2] == '/' && buf[j-1] == '.')
|
||
{
|
||
j--;
|
||
}
|
||
else
|
||
{
|
||
buf[j++] = '/';
|
||
}
|
||
}
|
||
}
|
||
else
|
||
{
|
||
buf[j++] = ptr[i];
|
||
}
|
||
i++;
|
||
}
|
||
buf[j] = '\0';
|
||
// NSLog(@"Map '%s' to '%s'", string, buf);
|
||
return [NSString stringWithCString: buf length: j];
|
||
#endif
|
||
return [NSString stringWithCString: string length: len];
|
||
}
|
||
|
||
@end /* NSFileManager */
|
||
|
||
/* A directory to enumerate. We keep a stack of the directories we
|
||
still have to enumerate. We start by putting the top-level
|
||
directory into the stack, then we start reading files from it
|
||
(using readdir). If we find a file which is actually a directory,
|
||
and if we have to recurse into it, we create a new
|
||
GSEnumeratedDirectory struct for the subdirectory, open its DIR
|
||
*pointer for reading, and put it on top of the stack, so next time
|
||
-nextObject is called, it will read from that directory instead of
|
||
the top level one. Once all the subdirectory is read, it is
|
||
removed from the stack, so the top of the stack if the top
|
||
directory again, and enumeration continues in there. */
|
||
typedef struct _GSEnumeratedDirectory {
|
||
char *path;
|
||
DIR *pointer;
|
||
} GSEnumeratedDirectory;
|
||
|
||
|
||
inline void gsedRelease(GSEnumeratedDirectory X)
|
||
{
|
||
NSZoneFree(NSDefaultMallocZone(), X.path);
|
||
closedir(X.pointer);
|
||
}
|
||
|
||
#define GSI_ARRAY_TYPES 0
|
||
#define GSI_ARRAY_TYPE GSEnumeratedDirectory
|
||
#define GSI_ARRAY_RELEASE(A, X) gsedRelease(X.ext)
|
||
#define GSI_ARRAY_RETAIN(A, X)
|
||
|
||
#include "GNUstepBase/GSIArray.h"
|
||
|
||
/* Portable replacement for strdup - return a copy of original. */
|
||
inline char *custom_strdup (const char *original)
|
||
{
|
||
char *result;
|
||
unsigned length = sizeof(char) * (strlen (original) + 1);
|
||
|
||
result = NSZoneMalloc(NSDefaultMallocZone(), length);
|
||
memcpy(result, original, length);
|
||
return result;
|
||
}
|
||
|
||
/* The return value of this function is to be freed by using NSZoneFree().
|
||
The function takes for granted that path and file are correct
|
||
filesystem paths; that path does not end with a path separator, and
|
||
file does not begin with a path separator. */
|
||
inline char *append_file_to_path (const char *path, const char *file)
|
||
{
|
||
unsigned path_length = strlen(path);
|
||
unsigned file_length = strlen(file);
|
||
unsigned total_length = path_length + 1 + file_length;
|
||
char *result;
|
||
|
||
if (path_length == 0)
|
||
{
|
||
return custom_strdup(file);
|
||
}
|
||
|
||
result = NSZoneMalloc(NSDefaultMallocZone(),
|
||
sizeof(char) * total_length + 1);
|
||
|
||
memcpy(result, path, sizeof(char) * path_length);
|
||
|
||
#ifdef __MINGW__
|
||
result[path_length] = '\\';
|
||
#else
|
||
result[path_length] = '/';
|
||
#endif
|
||
|
||
memcpy(&result[path_length + 1], file, sizeof(char) * file_length);
|
||
|
||
result[total_length] = '\0';
|
||
|
||
return result;
|
||
}
|
||
|
||
static SEL swfsSel = 0;
|
||
|
||
/**
|
||
* NSDirectoryEnumerator implementation<br />
|
||
*
|
||
* The Objective-C interface hides a traditional C implementation.
|
||
* This was the only way I could get near the speed of standard unix
|
||
* tools for big directories.
|
||
*/
|
||
|
||
@implementation NSDirectoryEnumerator
|
||
|
||
+ (void) initialize
|
||
{
|
||
if (self == [NSDirectoryEnumerator class])
|
||
{
|
||
/* Initialize the default manager which we access directly */
|
||
[NSFileManager defaultManager];
|
||
swfsSel = @selector(stringWithFileSystemRepresentation:length:);
|
||
}
|
||
}
|
||
|
||
// Initializing
|
||
|
||
- (id) initWithDirectoryPath: (NSString*)path
|
||
recurseIntoSubdirectories: (BOOL)recurse
|
||
followSymlinks: (BOOL)follow
|
||
justContents: (BOOL)justContents
|
||
{
|
||
DIR *dir_pointer;
|
||
const char *topPath;
|
||
|
||
_stringWithFileSysImp = (NSString *(*)(id, SEL, char *, unsigned))
|
||
[defaultManager methodForSelector: swfsSel];
|
||
|
||
_stack = NSZoneMalloc([self zone], sizeof(GSIArray_t));
|
||
GSIArrayInitWithZoneAndCapacity(_stack, [self zone], 64);
|
||
|
||
_flags.isRecursive = recurse;
|
||
_flags.isFollowing = follow;
|
||
_flags.justContents = justContents;
|
||
topPath = [defaultManager fileSystemRepresentationWithPath: path];
|
||
_top_path = custom_strdup(topPath);
|
||
|
||
dir_pointer = opendir(_top_path);
|
||
|
||
if (dir_pointer)
|
||
{
|
||
GSIArrayItem item;
|
||
|
||
item.ext.path = custom_strdup("");
|
||
item.ext.pointer = dir_pointer;
|
||
|
||
GSIArrayAddItem(_stack, item);
|
||
}
|
||
else
|
||
{
|
||
NSLog(@"Failed to recurse into directory '%@' - %s", path,
|
||
GSLastErrorStr(errno));
|
||
}
|
||
|
||
return self;
|
||
}
|
||
|
||
- (void) dealloc
|
||
{
|
||
GSIArrayEmpty(_stack);
|
||
NSZoneFree([self zone], _stack);
|
||
NSZoneFree(NSDefaultMallocZone(), _top_path);
|
||
if (_current_file_path != NULL)
|
||
{
|
||
NSZoneFree(NSDefaultMallocZone(), _current_file_path);
|
||
}
|
||
[super dealloc];
|
||
}
|
||
|
||
/**
|
||
* Returns a dictionary containing the attributes of the directory
|
||
* at which enumeration started. <br />
|
||
* The contents of this dictionary are as produced by
|
||
* [NSFileManager-fileAttributesAtPath:traverseLink:]
|
||
*/
|
||
- (NSDictionary*) directoryAttributes
|
||
{
|
||
NSString *topPath;
|
||
|
||
topPath = _stringWithFileSysImp(defaultManager, swfsSel, _top_path,
|
||
strlen(_top_path));
|
||
|
||
return [defaultManager fileAttributesAtPath: topPath
|
||
traverseLink: _flags.isFollowing];
|
||
}
|
||
|
||
/**
|
||
* Returns a dictionary containing the attributes of the file
|
||
* currently being enumerated. <br />
|
||
* The contents of this dictionary are as produced by
|
||
* [NSFileManager-fileAttributesAtPath:traverseLink:]
|
||
*/
|
||
- (NSDictionary*) fileAttributes
|
||
{
|
||
NSString *currentFilePath;
|
||
|
||
currentFilePath = _stringWithFileSysImp(defaultManager, swfsSel,
|
||
_current_file_path,
|
||
strlen(_current_file_path));
|
||
|
||
return [defaultManager fileAttributesAtPath: currentFilePath
|
||
traverseLink: _flags.isFollowing];
|
||
}
|
||
|
||
/**
|
||
* Informs the receiver that any descendents of the current directory
|
||
* should be skipped rather than enumerated. Use this to avaoid enumerating
|
||
* the contents of directories you are not interested in.
|
||
*/
|
||
- (void) skipDescendents
|
||
{
|
||
if (GSIArrayCount(_stack) > 0)
|
||
{
|
||
GSIArrayRemoveLastItem(_stack);
|
||
if (_current_file_path != NULL)
|
||
{
|
||
NSZoneFree(NSDefaultMallocZone(), _current_file_path);
|
||
_current_file_path = NULL;
|
||
}
|
||
}
|
||
}
|
||
|
||
// Enumerate next
|
||
|
||
- (id) nextObject
|
||
{
|
||
/*
|
||
finds the next file according to the top enumerator
|
||
- if there is a next file it is put in currentFile
|
||
- if the current file is a directory and if isRecursive calls
|
||
recurseIntoDirectory: currentFile
|
||
- if the current file is a symlink to a directory and if isRecursive
|
||
and isFollowing calls recurseIntoDirectory: currentFile
|
||
- if at end of current directory pops stack and attempts to
|
||
find the next entry in the parent
|
||
- sets currentFile to nil if there are no more files to enumerate
|
||
*/
|
||
char *return_file_name = NULL;
|
||
|
||
if (_current_file_path != NULL)
|
||
{
|
||
NSZoneFree(NSDefaultMallocZone(), _current_file_path);
|
||
_current_file_path = NULL;
|
||
}
|
||
|
||
while (GSIArrayCount(_stack) > 0)
|
||
{
|
||
GSEnumeratedDirectory dir = GSIArrayLastItem(_stack).ext;
|
||
struct dirent *dirbuf;
|
||
struct stat statbuf;
|
||
|
||
dirbuf = readdir(dir.pointer);
|
||
if (dirbuf)
|
||
{
|
||
/* Skip "." and ".." directory entries */
|
||
if (strcmp(dirbuf->d_name, ".") == 0
|
||
|| strcmp(dirbuf->d_name, "..") == 0)
|
||
continue;
|
||
|
||
/* Name of file to return */
|
||
return_file_name = append_file_to_path(dir.path, dirbuf->d_name);
|
||
|
||
/* TODO - can this one can be removed ? */
|
||
if (!_flags.justContents)
|
||
{
|
||
_current_file_path = append_file_to_path(_top_path,
|
||
return_file_name);
|
||
}
|
||
if (_flags.isRecursive == YES)
|
||
{
|
||
// Do not follow links
|
||
#ifdef S_IFLNK
|
||
if (!_flags.isFollowing)
|
||
{
|
||
if (lstat(_current_file_path, &statbuf) != 0)
|
||
break;
|
||
// If link then return it as link
|
||
if (S_IFLNK == (S_IFMT & statbuf.st_mode))
|
||
break;
|
||
}
|
||
else
|
||
#endif
|
||
{
|
||
if (stat(_current_file_path, &statbuf) != 0)
|
||
break;
|
||
}
|
||
if (S_IFDIR == (S_IFMT & statbuf.st_mode))
|
||
{
|
||
DIR* dir_pointer;
|
||
|
||
dir_pointer = opendir(_current_file_path);
|
||
|
||
if (dir_pointer)
|
||
{
|
||
GSIArrayItem item;
|
||
|
||
item.ext.path = custom_strdup(return_file_name);
|
||
item.ext.pointer = dir_pointer;
|
||
|
||
GSIArrayAddItem(_stack, item);
|
||
}
|
||
else
|
||
{
|
||
NSLog(@"Failed to recurse into directory '%s' - %s",
|
||
_current_file_path, GSLastErrorStr(errno));
|
||
}
|
||
}
|
||
}
|
||
break; // Got a file name - break out of loop
|
||
}
|
||
else
|
||
{
|
||
GSIArrayRemoveLastItem(_stack);
|
||
if (_current_file_path != NULL)
|
||
{
|
||
NSZoneFree(NSDefaultMallocZone(), _current_file_path);
|
||
_current_file_path = NULL;
|
||
}
|
||
}
|
||
}
|
||
if (return_file_name == NULL)
|
||
{
|
||
return nil;
|
||
}
|
||
else
|
||
{
|
||
NSString *result = _stringWithFileSysImp(defaultManager, swfsSel,
|
||
return_file_name,
|
||
strlen(return_file_name));
|
||
NSZoneFree(NSDefaultMallocZone(), return_file_name);
|
||
return result;
|
||
}
|
||
}
|
||
|
||
@end /* NSDirectoryEnumerator */
|
||
|
||
/*
|
||
* Attributes dictionary access
|
||
*/
|
||
|
||
@implementation NSDictionary(NSFileAttributes)
|
||
|
||
/**
|
||
* Return the file creation date attribute (or nil if not found).
|
||
*/
|
||
- (NSDate*) fileCreationDate
|
||
{
|
||
return [self objectForKey: NSFileCreationDate];
|
||
}
|
||
|
||
/**
|
||
* Return the file extension hidden attribute (or NO if not found).
|
||
*/
|
||
- (BOOL) fileExtensionHidden
|
||
{
|
||
return [[self objectForKey: NSFileExtensionHidden] boolValue];
|
||
}
|
||
|
||
- (int) fileHFSCreatorCode
|
||
{
|
||
return [[self objectForKey: NSFileHFSCreatorCode] intValue];
|
||
}
|
||
|
||
- (int) fileHFSTypeCode
|
||
{
|
||
return [[self objectForKey: NSFileHFSTypeCode] intValue];
|
||
}
|
||
|
||
/**
|
||
* Return the file append only attribute (or NO if not found).
|
||
*/
|
||
- (BOOL) fileIsAppendOnly
|
||
{
|
||
return [[self objectForKey: NSFileAppendOnly] boolValue];
|
||
}
|
||
|
||
/**
|
||
* Return the file immutable attribute (or NO if not found).
|
||
*/
|
||
- (BOOL) fileIsImmutable
|
||
{
|
||
return [[self objectForKey: NSFileImmutable] boolValue];
|
||
}
|
||
|
||
/**
|
||
* Return the size of the file, or NSNotFound if the file size attribute
|
||
* is not found in the dictionary.
|
||
*/
|
||
- (unsigned long long) fileSize
|
||
{
|
||
NSNumber *n = [self objectForKey: NSFileSize];
|
||
|
||
if (n == nil)
|
||
{
|
||
return NSNotFound;
|
||
}
|
||
return [n unsignedLongLongValue];
|
||
}
|
||
|
||
/**
|
||
* Return the file type attribute or nil if not present.
|
||
*/
|
||
- (NSString*) fileType
|
||
{
|
||
return [self objectForKey: NSFileType];
|
||
}
|
||
|
||
/**
|
||
* Return the file owner account name attribute or nil if not present.
|
||
*/
|
||
- (NSString*) fileOwnerAccountName
|
||
{
|
||
return [self objectForKey: NSFileOwnerAccountName];
|
||
}
|
||
|
||
/**
|
||
* Return the numeric value of the NSFileOwnerAccountID attribute
|
||
* in the dictionary, or NSNotFound if the attribute is not present.
|
||
*/
|
||
- (unsigned long) fileOwnerAccountID
|
||
{
|
||
NSNumber *n = [self objectForKey: NSFileOwnerAccountID];
|
||
|
||
if (n == nil)
|
||
{
|
||
return NSNotFound;
|
||
}
|
||
return [n unsignedIntValue];
|
||
}
|
||
|
||
/**
|
||
* Return the file group owner account name attribute or nil if not present.
|
||
*/
|
||
- (NSString*) fileGroupOwnerAccountName
|
||
{
|
||
return [self objectForKey: NSFileGroupOwnerAccountName];
|
||
}
|
||
|
||
/**
|
||
* Return the numeric value of the NSFileGroupOwnerAccountID attribute
|
||
* in the dictionary, or NSNotFound if the attribute is not present.
|
||
*/
|
||
- (unsigned long) fileGroupOwnerAccountID
|
||
{
|
||
NSNumber *n = [self objectForKey: NSFileGroupOwnerAccountID];
|
||
|
||
if (n == nil)
|
||
{
|
||
return NSNotFound;
|
||
}
|
||
return [n unsignedIntValue];
|
||
}
|
||
|
||
/**
|
||
* Return the file modification date attribute (or nil if not found)
|
||
*/
|
||
- (NSDate*) fileModificationDate
|
||
{
|
||
return [self objectForKey: NSFileModificationDate];
|
||
}
|
||
|
||
/**
|
||
* Return the file posix permissions attribute (or NSNotFound if
|
||
* the attribute is not present in the dictionary).
|
||
*/
|
||
- (unsigned long) filePosixPermissions
|
||
{
|
||
NSNumber *n = [self objectForKey: NSFilePosixPermissions];
|
||
|
||
if (n == nil)
|
||
{
|
||
return NSNotFound;
|
||
}
|
||
return [n unsignedLongValue];
|
||
}
|
||
|
||
/**
|
||
* Return the file system number attribute (or NSNotFound if
|
||
* the attribute is not present in the dictionary).
|
||
*/
|
||
- (unsigned long) fileSystemNumber
|
||
{
|
||
NSNumber *n = [self objectForKey: NSFileSystemNumber];
|
||
|
||
if (n == nil)
|
||
{
|
||
return NSNotFound;
|
||
}
|
||
return [n unsignedLongValue];
|
||
}
|
||
|
||
/**
|
||
* Return the file system file identification number attribute
|
||
* or NSNotFound if the attribute is not present in the dictionary).
|
||
*/
|
||
- (unsigned long) fileSystemFileNumber
|
||
{
|
||
NSNumber *n = [self objectForKey: NSFileSystemFileNumber];
|
||
|
||
if (n == nil)
|
||
{
|
||
return NSNotFound;
|
||
}
|
||
return [n unsignedLongValue];
|
||
}
|
||
@end
|
||
|
||
@implementation NSFileManager (PrivateMethods)
|
||
|
||
- (BOOL) _copyFile: (NSString*)source
|
||
toFile: (NSString*)destination
|
||
handler: (id)handler
|
||
{
|
||
#if defined(__MINGW__)
|
||
if (CopyFile([self fileSystemRepresentationWithPath: source],
|
||
[self fileSystemRepresentationWithPath: destination], NO))
|
||
{
|
||
return YES;
|
||
}
|
||
|
||
return [self _proceedAccordingToHandler: handler
|
||
forError: @"cannot copy file"
|
||
inPath: source
|
||
fromPath: source
|
||
toPath: destination];
|
||
|
||
#else
|
||
NSDictionary *attributes;
|
||
int i;
|
||
int bufsize = 8096;
|
||
int sourceFd;
|
||
int destFd;
|
||
int fileSize;
|
||
int fileMode;
|
||
int rbytes;
|
||
int wbytes;
|
||
char buffer[bufsize];
|
||
|
||
/* Assumes source is a file and exists! */
|
||
NSAssert1 ([self fileExistsAtPath: source],
|
||
@"source file '%@' does not exist!", source);
|
||
|
||
attributes = [self fileAttributesAtPath: source traverseLink: NO];
|
||
NSAssert1 (attributes, @"could not get the attributes for file '%@'",
|
||
source);
|
||
|
||
fileSize = [attributes fileSize];
|
||
fileMode = [attributes filePosixPermissions];
|
||
|
||
/* Open the source file. In case of error call the handler. */
|
||
sourceFd = open([self fileSystemRepresentationWithPath: source],
|
||
GSBINIO|O_RDONLY);
|
||
if (sourceFd < 0)
|
||
{
|
||
return [self _proceedAccordingToHandler: handler
|
||
forError: @"cannot open file for reading"
|
||
inPath: source
|
||
fromPath: source
|
||
toPath: destination];
|
||
}
|
||
|
||
/* Open the destination file. In case of error call the handler. */
|
||
destFd = open([self fileSystemRepresentationWithPath: destination],
|
||
GSBINIO|O_WRONLY|O_CREAT|O_TRUNC, fileMode);
|
||
if (destFd < 0)
|
||
{
|
||
close (sourceFd);
|
||
|
||
return [self _proceedAccordingToHandler: handler
|
||
forError: @"cannot open file for writing"
|
||
inPath: destination
|
||
fromPath: source
|
||
toPath: destination];
|
||
}
|
||
|
||
/* Read bufsize bytes from source file and write them into the destination
|
||
file. In case of errors call the handler and abort the operation. */
|
||
for (i = 0; i < fileSize; i += rbytes)
|
||
{
|
||
rbytes = read (sourceFd, buffer, bufsize);
|
||
if (rbytes < 0)
|
||
{
|
||
close (sourceFd);
|
||
close (destFd);
|
||
|
||
return [self _proceedAccordingToHandler: handler
|
||
forError: @"cannot read from file"
|
||
inPath: source
|
||
fromPath: source
|
||
toPath: destination];
|
||
}
|
||
|
||
wbytes = write (destFd, buffer, rbytes);
|
||
if (wbytes != rbytes)
|
||
{
|
||
close (sourceFd);
|
||
close (destFd);
|
||
|
||
return [self _proceedAccordingToHandler: handler
|
||
forError: @"cannot write to file"
|
||
inPath: destination
|
||
fromPath: source
|
||
toPath: destination];
|
||
}
|
||
}
|
||
close (sourceFd);
|
||
close (destFd);
|
||
|
||
return YES;
|
||
#endif
|
||
}
|
||
|
||
- (BOOL) _copyPath: (NSString*)source
|
||
toPath: (NSString*)destination
|
||
handler: handler
|
||
{
|
||
NSDirectoryEnumerator *enumerator;
|
||
NSString *dirEntry;
|
||
CREATE_AUTORELEASE_POOL(pool);
|
||
|
||
enumerator = [self enumeratorAtPath: source];
|
||
while ((dirEntry = [enumerator nextObject]))
|
||
{
|
||
NSString *sourceFile;
|
||
NSString *fileType;
|
||
NSString *destinationFile;
|
||
NSDictionary *attributes;
|
||
|
||
attributes = [enumerator fileAttributes];
|
||
fileType = [attributes fileType];
|
||
sourceFile = [source stringByAppendingPathComponent: dirEntry];
|
||
destinationFile
|
||
= [destination stringByAppendingPathComponent: dirEntry];
|
||
|
||
[self _sendToHandler: handler willProcessPath: sourceFile];
|
||
|
||
if ([fileType isEqual: NSFileTypeDirectory])
|
||
{
|
||
if (![self createDirectoryAtPath: destinationFile
|
||
attributes: attributes])
|
||
{
|
||
if (![self _proceedAccordingToHandler: handler
|
||
forError: _lastError
|
||
inPath: destinationFile
|
||
fromPath: sourceFile
|
||
toPath: destinationFile])
|
||
{
|
||
return NO;
|
||
}
|
||
}
|
||
else
|
||
{
|
||
[enumerator skipDescendents];
|
||
if (![self _copyPath: sourceFile
|
||
toPath: destinationFile
|
||
handler: handler])
|
||
return NO;
|
||
}
|
||
}
|
||
else if ([fileType isEqual: NSFileTypeRegular])
|
||
{
|
||
if (![self _copyFile: sourceFile
|
||
toFile: destinationFile
|
||
handler: handler])
|
||
return NO;
|
||
}
|
||
else if ([fileType isEqual: NSFileTypeSymbolicLink])
|
||
{
|
||
NSString *path;
|
||
|
||
path = [self pathContentOfSymbolicLinkAtPath: sourceFile];
|
||
if (![self createSymbolicLinkAtPath: destinationFile
|
||
pathContent: path])
|
||
{
|
||
if (![self _proceedAccordingToHandler: handler
|
||
forError: @"cannot create symbolic link"
|
||
inPath: sourceFile
|
||
fromPath: sourceFile
|
||
toPath: destinationFile])
|
||
{
|
||
return NO;
|
||
}
|
||
}
|
||
}
|
||
else
|
||
{
|
||
NSString *s;
|
||
|
||
s = [NSString stringWithFormat: @"cannot copy file type '%@'",
|
||
fileType];
|
||
ASSIGN(_lastError, s);
|
||
NSLog(@"%@: %@", sourceFile, s);
|
||
continue;
|
||
}
|
||
[self changeFileAttributes: attributes atPath: destinationFile];
|
||
}
|
||
RELEASE(pool);
|
||
|
||
return YES;
|
||
}
|
||
|
||
- (BOOL) _linkPath: (NSString*)source
|
||
toPath: (NSString*)destination
|
||
handler: handler
|
||
{
|
||
#ifdef HAVE_LINK
|
||
NSDirectoryEnumerator *enumerator;
|
||
NSString *dirEntry;
|
||
CREATE_AUTORELEASE_POOL(pool);
|
||
|
||
enumerator = [self enumeratorAtPath: source];
|
||
while ((dirEntry = [enumerator nextObject]))
|
||
{
|
||
NSString *sourceFile;
|
||
NSString *fileType;
|
||
NSString *destinationFile;
|
||
NSDictionary *attributes;
|
||
|
||
attributes = [enumerator fileAttributes];
|
||
fileType = [attributes fileType];
|
||
sourceFile = [source stringByAppendingPathComponent: dirEntry];
|
||
destinationFile
|
||
= [destination stringByAppendingPathComponent: dirEntry];
|
||
|
||
[self _sendToHandler: handler willProcessPath: sourceFile];
|
||
|
||
if ([fileType isEqual: NSFileTypeDirectory] == YES)
|
||
{
|
||
if ([self createDirectoryAtPath: destinationFile
|
||
attributes: attributes] == NO)
|
||
{
|
||
if ([self _proceedAccordingToHandler: handler
|
||
forError: _lastError
|
||
inPath: destinationFile
|
||
fromPath: sourceFile
|
||
toPath: destinationFile] == NO)
|
||
{
|
||
return NO;
|
||
}
|
||
}
|
||
else
|
||
{
|
||
[enumerator skipDescendents];
|
||
if ([self _linkPath: sourceFile
|
||
toPath: destinationFile
|
||
handler: handler] == NO)
|
||
{
|
||
return NO;
|
||
}
|
||
}
|
||
}
|
||
else if ([fileType isEqual: NSFileTypeSymbolicLink])
|
||
{
|
||
NSString *path;
|
||
|
||
path = [self pathContentOfSymbolicLinkAtPath: sourceFile];
|
||
if ([self createSymbolicLinkAtPath: destinationFile
|
||
pathContent: path] == NO)
|
||
{
|
||
if ([self _proceedAccordingToHandler: handler
|
||
forError: @"cannot create symbolic link"
|
||
inPath: sourceFile
|
||
fromPath: sourceFile
|
||
toPath: destinationFile] == NO)
|
||
{
|
||
return NO;
|
||
}
|
||
}
|
||
}
|
||
else
|
||
{
|
||
if (link([sourceFile fileSystemRepresentation],
|
||
[destinationFile fileSystemRepresentation]) < 0)
|
||
{
|
||
if ([self _proceedAccordingToHandler: handler
|
||
forError: @"cannot create hard link"
|
||
inPath: sourceFile
|
||
fromPath: sourceFile
|
||
toPath: destinationFile] == NO)
|
||
{
|
||
return NO;
|
||
}
|
||
}
|
||
}
|
||
[self changeFileAttributes: attributes atPath: destinationFile];
|
||
}
|
||
RELEASE(pool);
|
||
return YES;
|
||
#else
|
||
return NO;
|
||
#endif
|
||
}
|
||
|
||
- (void) _sendToHandler: (id) handler
|
||
willProcessPath: (NSString*) path
|
||
{
|
||
if ([handler respondsToSelector: @selector (fileManager:willProcessPath:)])
|
||
{
|
||
[handler fileManager: self willProcessPath: path];
|
||
}
|
||
}
|
||
|
||
- (BOOL) _proceedAccordingToHandler: (id) handler
|
||
forError: (NSString*) error
|
||
inPath: (NSString*) path
|
||
{
|
||
if ([handler respondsToSelector:
|
||
@selector (fileManager:shouldProceedAfterError:)])
|
||
{
|
||
NSDictionary *errorInfo = [NSDictionary dictionaryWithObjectsAndKeys:
|
||
path, @"Path",
|
||
error, @"Error", nil];
|
||
return [handler fileManager: self
|
||
shouldProceedAfterError: errorInfo];
|
||
}
|
||
return NO;
|
||
}
|
||
|
||
- (BOOL) _proceedAccordingToHandler: (id) handler
|
||
forError: (NSString*) error
|
||
inPath: (NSString*) path
|
||
fromPath: (NSString*) fromPath
|
||
toPath: (NSString*) toPath
|
||
{
|
||
if ([handler respondsToSelector:
|
||
@selector (fileManager:shouldProceedAfterError:)])
|
||
{
|
||
NSDictionary *errorInfo = [NSDictionary dictionaryWithObjectsAndKeys:
|
||
path, @"Path",
|
||
fromPath, @"FromPath",
|
||
toPath, @"ToPath",
|
||
error, @"Error", nil];
|
||
return [handler fileManager: self
|
||
shouldProceedAfterError: errorInfo];
|
||
}
|
||
return NO;
|
||
}
|
||
|
||
@end /* NSFileManager (PrivateMethods) */
|
||
|
||
|
||
|
||
@implementation GSAttrDictionary
|
||
|
||
static NSSet *fileKeys = nil;
|
||
|
||
+ (NSDictionary*) attributesAt: (const char*)cpath traverseLink: (BOOL)traverse
|
||
{
|
||
GSAttrDictionary *d;
|
||
|
||
if (cpath == 0 || *cpath == '\0')
|
||
{
|
||
return nil;
|
||
}
|
||
d = (GSAttrDictionary*)NSAllocateObject(self, 0, NSDefaultMallocZone());
|
||
#ifdef __MINGW__
|
||
d->name = NSZoneMalloc(NSDefaultMallocZone(), strlen(cpath)+1);
|
||
strcpy(d->name, cpath);
|
||
#endif
|
||
#if defined(S_IFLNK) && !defined(__MINGW__)
|
||
if (traverse == NO)
|
||
{
|
||
if (lstat(cpath, &d->statbuf) != 0)
|
||
{
|
||
DESTROY(d);
|
||
}
|
||
}
|
||
else
|
||
#endif
|
||
if (stat(cpath, &d->statbuf) != 0)
|
||
{
|
||
DESTROY(d);
|
||
}
|
||
return AUTORELEASE(d);
|
||
}
|
||
|
||
+ (void) initialize
|
||
{
|
||
if (fileKeys == nil)
|
||
{
|
||
fileKeys = [NSSet setWithObjects:
|
||
NSFileAppendOnly,
|
||
NSFileCreationDate,
|
||
NSFileDeviceIdentifier,
|
||
NSFileExtensionHidden,
|
||
NSFileGroupOwnerAccountName,
|
||
NSFileGroupOwnerAccountID,
|
||
NSFileHFSCreatorCode,
|
||
NSFileHFSTypeCode,
|
||
NSFileImmutable,
|
||
NSFileModificationDate,
|
||
NSFileOwnerAccountName,
|
||
NSFileOwnerAccountID,
|
||
NSFilePosixPermissions,
|
||
NSFileReferenceCount,
|
||
NSFileSize,
|
||
NSFileSystemFileNumber,
|
||
NSFileSystemNumber,
|
||
NSFileType,
|
||
nil];
|
||
RETAIN(fileKeys);
|
||
}
|
||
}
|
||
|
||
- (unsigned int) count
|
||
{
|
||
return [fileKeys count];
|
||
}
|
||
|
||
- (void) dealloc
|
||
{
|
||
#ifdef __MINGW__
|
||
if (name != 0)
|
||
NSZoneFree(NSDefaultMallocZone(), name);
|
||
#endif
|
||
[super dealloc];
|
||
}
|
||
|
||
- (NSDate*) fileCreationDate
|
||
{
|
||
/*
|
||
* FIXME ... not sure there is any way to get a creation date :-(
|
||
* Use the earlier of ctime or mtime
|
||
*/
|
||
if (statbuf.st_ctime < statbuf.st_mtime)
|
||
return [NSDate dateWithTimeIntervalSince1970: statbuf.st_ctime];
|
||
else
|
||
return [NSDate dateWithTimeIntervalSince1970: statbuf.st_mtime];
|
||
}
|
||
|
||
- (BOOL) fileExtensionHidden
|
||
{
|
||
return NO;
|
||
}
|
||
|
||
- (unsigned long) fileGroupOwnerAccountID
|
||
{
|
||
return statbuf.st_gid;
|
||
}
|
||
|
||
#if (defined(sparc) && defined(DEBUG))
|
||
static int sparc_warn = 0;
|
||
#endif
|
||
|
||
- (NSString*) fileGroupOwnerAccountName
|
||
{
|
||
NSString *result = @"UnknownGroup";
|
||
#if defined(HAVE_GRP_H) && !(defined(sparc) && defined(DEBUG))
|
||
struct group *gp;
|
||
|
||
gp = getgrgid(statbuf.st_gid);
|
||
if (gp != 0)
|
||
{
|
||
result = [NSString stringWithCString: gp->gr_name];
|
||
}
|
||
#else
|
||
#if (defined(sparc) && defined(DEBUG))
|
||
if (sparc_warn == 0)
|
||
{
|
||
sparc_warn = 1;
|
||
/* Can't be NSLog - causes recursion in [NSUser -synchronize] */
|
||
fprintf(stderr, "WARNING (NSFileManager): Disabling group enums (setgrent, etc) since this crashes gdb on sparc machines\n");
|
||
}
|
||
#endif
|
||
#endif
|
||
return result;
|
||
}
|
||
|
||
- (int) fileHFSCreatorCode
|
||
{
|
||
return 0;
|
||
}
|
||
|
||
- (int) fileHFSTypeCode
|
||
{
|
||
return 0;
|
||
}
|
||
|
||
- (BOOL) fileIsAppendOnly
|
||
{
|
||
return 0;
|
||
}
|
||
|
||
- (BOOL) fileIsImmutable
|
||
{
|
||
return 0;
|
||
}
|
||
|
||
- (NSDate*) fileModificationDate
|
||
{
|
||
return [NSDate dateWithTimeIntervalSince1970: statbuf.st_mtime];
|
||
}
|
||
|
||
- (unsigned long) filePosixPermissions
|
||
{
|
||
return (statbuf.st_mode & ~S_IFMT);
|
||
}
|
||
|
||
- (unsigned long) fileOwnerAccountID
|
||
{
|
||
return statbuf.st_uid;
|
||
}
|
||
|
||
- (NSString*) fileOwnerAccountName
|
||
{
|
||
NSString *result = @"UnknownUser";
|
||
#ifdef __MINGW_NOT_AVAILABLE_YET
|
||
{
|
||
DWORD dwRtnCode = 0;
|
||
PSID pSidOwner;
|
||
BOOL bRtnBool = TRUE;
|
||
LPTSTR AcctName;
|
||
LPTSTR DomainName;
|
||
DWORD dwAcctName = 1;
|
||
DWORD dwDomainName = 1;
|
||
SID_NAME_USE eUse = SidTypeUnknown;
|
||
HANDLE hFile;
|
||
PSECURITY_DESCRIPTOR pSD;
|
||
|
||
// Get the handle of the file object.
|
||
hFile = CreateFile(
|
||
"myfile.txt",
|
||
GENERIC_READ,
|
||
FILE_SHARE_READ,
|
||
NULL,
|
||
OPEN_EXISTING,
|
||
FILE_ATTRIBUTE_NORMAL,
|
||
NULL);
|
||
|
||
// Check GetLastError for CreateFile error code.
|
||
if (hFile == INVALID_HANDLE_VALUE) {
|
||
DWORD dwErrorCode = 0;
|
||
|
||
dwErrorCode = GetLastError();
|
||
_tprintf(TEXT("CreateFile error = %d\n"), dwErrorCode);
|
||
return -1;
|
||
}
|
||
|
||
// Allocate memory for the SID structure.
|
||
pSidOwner = (PSID)GlobalAlloc(
|
||
GMEM_FIXED,
|
||
sizeof(PSID));
|
||
|
||
// Allocate memory for the security descriptor structure.
|
||
pSD = (PSECURITY_DESCRIPTOR)GlobalAlloc(
|
||
GMEM_FIXED,
|
||
sizeof(PSECURITY_DESCRIPTOR));
|
||
|
||
// Get the owner SID of the file.
|
||
dwRtnCode = GetSecurityInfo(
|
||
hFile,
|
||
SE_FILE_OBJECT,
|
||
OWNER_SECURITY_INFORMATION,
|
||
&pSidOwner,
|
||
NULL,
|
||
NULL,
|
||
NULL,
|
||
&pSD);
|
||
|
||
// Check GetLastError for GetSecurityInfo error condition.
|
||
if (dwRtnCode != ERROR_SUCCESS) {
|
||
DWORD dwErrorCode = 0;
|
||
|
||
dwErrorCode = GetLastError();
|
||
_tprintf(TEXT("GetSecurityInfo error = %d\n"), dwErrorCode);
|
||
return -1;
|
||
}
|
||
|
||
// First call to LookupAccountSid to get the buffer sizes.
|
||
bRtnBool = LookupAccountSid(
|
||
NULL, // local computer
|
||
pSidOwner,
|
||
AcctName,
|
||
(LPDWORD)&dwAcctName,
|
||
DomainName,
|
||
(LPDWORD)&dwDomainName,
|
||
&eUse);
|
||
|
||
// Reallocate memory for the buffers.
|
||
AcctName = (char *)GlobalAlloc(
|
||
GMEM_FIXED,
|
||
dwAcctName);
|
||
|
||
// Check GetLastError for GlobalAlloc error condition.
|
||
if (AcctName == NULL) {
|
||
DWORD dwErrorCode = 0;
|
||
|
||
dwErrorCode = GetLastError();
|
||
_tprintf(TEXT("GlobalAlloc error = %d\n"), dwErrorCode);
|
||
return -1;
|
||
}
|
||
|
||
DomainName = (char *)GlobalAlloc(
|
||
GMEM_FIXED,
|
||
dwDomainName);
|
||
|
||
// Check GetLastError for GlobalAlloc error condition.
|
||
if (DomainName == NULL) {
|
||
DWORD dwErrorCode = 0;
|
||
|
||
dwErrorCode = GetLastError();
|
||
_tprintf(TEXT("GlobalAlloc error = %d\n"), dwErrorCode);
|
||
return -1;
|
||
|
||
}
|
||
|
||
// Second call to LookupAccountSid to get the account name.
|
||
bRtnBool = LookupAccountSid(
|
||
NULL, // name of local or remote computer
|
||
pSidOwner, // security identifier
|
||
AcctName, // account name buffer
|
||
(LPDWORD)&dwAcctName, // size of account name buffer
|
||
DomainName, // domain name
|
||
(LPDWORD)&dwDomainName, // size of domain name buffer
|
||
&eUse); // SID type
|
||
|
||
// Check GetLastError for LookupAccountSid error condition.
|
||
if (bRtnBool == FALSE) {
|
||
DWORD dwErrorCode = 0;
|
||
|
||
dwErrorCode = GetLastError();
|
||
|
||
if (dwErrorCode == ERROR_NONE_MAPPED)
|
||
_tprintf(TEXT("Account owner not found for specified SID.\n"));
|
||
else
|
||
_tprintf(TEXT("Error in LookupAccountSid.\n"));
|
||
return -1;
|
||
|
||
} else if (bRtnBool == TRUE)
|
||
|
||
// Print the account name.
|
||
_tprintf(TEXT("Account owner = %s\n"), AcctName);
|
||
|
||
return 0;
|
||
}
|
||
|
||
#endif
|
||
#ifdef HAVE_PWD_H
|
||
struct passwd *pw;
|
||
|
||
pw = getpwuid(statbuf.st_uid);
|
||
|
||
if (pw != 0)
|
||
{
|
||
result = [NSString stringWithCString: pw->pw_name];
|
||
}
|
||
#endif /* HAVE_PWD_H */
|
||
return result;
|
||
}
|
||
|
||
- (unsigned long long) fileSize
|
||
{
|
||
return statbuf.st_size;
|
||
}
|
||
|
||
- (unsigned long) fileSystemFileNumber
|
||
{
|
||
return statbuf.st_ino;
|
||
}
|
||
|
||
- (unsigned long) fileSystemNumber
|
||
{
|
||
return statbuf.st_dev;
|
||
}
|
||
|
||
- (NSString*) fileType
|
||
{
|
||
switch (statbuf.st_mode & S_IFMT)
|
||
{
|
||
case S_IFREG: return NSFileTypeRegular;
|
||
case S_IFDIR: return NSFileTypeDirectory;
|
||
case S_IFCHR: return NSFileTypeCharacterSpecial;
|
||
case S_IFBLK: return NSFileTypeBlockSpecial;
|
||
#ifdef S_IFLNK
|
||
case S_IFLNK: return NSFileTypeSymbolicLink;
|
||
#endif
|
||
case S_IFIFO: return NSFileTypeFifo;
|
||
#ifdef S_IFSOCK
|
||
case S_IFSOCK: return NSFileTypeSocket;
|
||
#endif
|
||
default: return NSFileTypeUnknown;
|
||
}
|
||
}
|
||
|
||
- (NSEnumerator*) keyEnumerator
|
||
{
|
||
return [fileKeys objectEnumerator];
|
||
}
|
||
|
||
- (NSEnumerator*) objectEnumerator
|
||
{
|
||
return [GSAttrDictionaryEnumerator enumeratorFor: self];
|
||
}
|
||
|
||
- (id) objectForKey: (NSString*)key
|
||
{
|
||
int count = 0;
|
||
|
||
while (key != 0 && count < 2)
|
||
{
|
||
if (key == NSFileAppendOnly)
|
||
return [NSNumber numberWithBool: [self fileIsAppendOnly]];
|
||
if (key == NSFileCreationDate)
|
||
return [self fileCreationDate];
|
||
if (key == NSFileDeviceIdentifier)
|
||
return [NSNumber numberWithUnsignedInt: statbuf.st_dev];
|
||
if (key == NSFileExtensionHidden)
|
||
return [NSNumber numberWithBool: [self fileExtensionHidden]];
|
||
if (key == NSFileGroupOwnerAccountName)
|
||
return [self fileGroupOwnerAccountName];
|
||
if (key == NSFileGroupOwnerAccountID)
|
||
return [NSNumber numberWithInt: [self fileGroupOwnerAccountID]];
|
||
if (key == NSFileHFSCreatorCode)
|
||
return [NSNumber numberWithInt: [self fileHFSCreatorCode]];
|
||
if (key == NSFileHFSTypeCode)
|
||
return [NSNumber numberWithInt: [self fileHFSTypeCode]];
|
||
if (key == NSFileImmutable)
|
||
return [NSNumber numberWithBool: [self fileIsImmutable]];
|
||
if (key == NSFileModificationDate)
|
||
return [self fileModificationDate];
|
||
if (key == NSFileOwnerAccountName)
|
||
return [self fileOwnerAccountName];
|
||
if (key == NSFileOwnerAccountID)
|
||
return [NSNumber numberWithInt: [self fileOwnerAccountID]];
|
||
if (key == NSFilePosixPermissions)
|
||
return [NSNumber numberWithUnsignedInt: [self filePosixPermissions]];
|
||
if (key == NSFileReferenceCount)
|
||
return [NSNumber numberWithUnsignedInt: statbuf.st_nlink];
|
||
if (key == NSFileSize)
|
||
return [NSNumber numberWithUnsignedLongLong: [self fileSize]];
|
||
if (key == NSFileSystemFileNumber)
|
||
return [NSNumber numberWithUnsignedInt: [self fileSystemFileNumber]];
|
||
if (key == NSFileSystemNumber)
|
||
return [NSNumber numberWithUnsignedInt: [self fileSystemNumber]];
|
||
if (key == NSFileType)
|
||
return [self fileType];
|
||
|
||
/*
|
||
* Now, if we didn't get an exact pointer match, check for
|
||
* string equalities and ensure we get an exact match next
|
||
* time round the loop.
|
||
*/
|
||
count++;
|
||
key = [fileKeys member: key];
|
||
}
|
||
if (count >= 2)
|
||
{
|
||
NSLog(@"Warning ... key '%@' not handled", key);
|
||
}
|
||
return nil;
|
||
}
|
||
|
||
@end /* GSAttrDictionary */
|
||
|
||
@implementation GSAttrDictionaryEnumerator
|
||
+ (NSEnumerator*) enumeratorFor: (NSDictionary*)d
|
||
{
|
||
GSAttrDictionaryEnumerator *e;
|
||
|
||
e = (GSAttrDictionaryEnumerator*)
|
||
NSAllocateObject(self, 0, NSDefaultMallocZone());
|
||
e->dictionary = RETAIN(d);
|
||
e->enumerator = RETAIN([fileKeys objectEnumerator]);
|
||
return AUTORELEASE(e);
|
||
}
|
||
|
||
- (void) dealloc
|
||
{
|
||
RELEASE(enumerator);
|
||
RELEASE(dictionary);
|
||
[super dealloc];
|
||
}
|
||
|
||
- (id) nextObject
|
||
{
|
||
NSString *key = [enumerator nextObject];
|
||
id val = nil;
|
||
|
||
if (key != nil)
|
||
{
|
||
val = [dictionary objectForKey: key];
|
||
}
|
||
return val;
|
||
}
|
||
@end
|
||
|
||
NSString * const NSFileAppendOnly = @"NSFileAppendOnly";
|
||
NSString * const NSFileCreationDate = @"NSFileCreationDate";
|
||
NSString * const NSFileDeviceIdentifier = @"NSFileDeviceIdentifier";
|
||
NSString * const NSFileExtensionHidden = @"NSFileExtensionHidden";
|
||
NSString * const NSFileGroupOwnerAccountID = @"NSFileGroupOwnerAccountID";
|
||
NSString * const NSFileGroupOwnerAccountName = @"NSFileGroupOwnerAccountName";
|
||
NSString * const NSFileHFSCreatorCode = @"NSFileHFSCreatorCode";
|
||
NSString * const NSFileHFSTypeCode = @"NSFileHFSTypeCode";
|
||
NSString * const NSFileImmutable = @"NSFileImmutable";
|
||
NSString * const NSFileModificationDate = @"NSFileModificationDate";
|
||
NSString * const NSFileOwnerAccountID = @"NSFileOwnerAccountID";
|
||
NSString * const NSFileOwnerAccountName = @"NSFileOwnerAccountName";
|
||
NSString * const NSFilePosixPermissions = @"NSFilePosixPermissions";
|
||
NSString * const NSFileReferenceCount = @"NSFileReferenceCount";
|
||
NSString * const NSFileSize = @"NSFileSize";
|
||
NSString * const NSFileSystemFileNumber = @"NSFileSystemFileNumber";
|
||
NSString * const NSFileSystemFreeNodes = @"NSFileSystemFreeNodes";
|
||
NSString * const NSFileSystemFreeSize = @"NSFileSystemFreeSize";
|
||
NSString * const NSFileSystemNodes = @"NSFileSystemNodes";
|
||
NSString * const NSFileSystemNumber = @"NSFileSystemNumber";
|
||
NSString * const NSFileSystemSize = @"NSFileSystemSize";
|
||
NSString * const NSFileType = @"NSFileType";
|
||
NSString * const NSFileTypeBlockSpecial = @"NSFileTypeBlockSpecial";
|
||
NSString * const NSFileTypeCharacterSpecial = @"NSFileTypeCharacterSpecial";
|
||
NSString * const NSFileTypeDirectory = @"NSFileTypeDirectory";
|
||
NSString * const NSFileTypeFifo = @"NSFileTypeFifo";
|
||
NSString * const NSFileTypeRegular = @"NSFileTypeRegular";
|
||
NSString * const NSFileTypeSocket = @"NSFileTypeSocket";
|
||
NSString * const NSFileTypeSymbolicLink = @"NSFileTypeSymbolicLink";
|
||
NSString * const NSFileTypeUnknown = @"NSFileTypeUnknown";
|
||
|
||
|