1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
|
#import "XADPlatform.h"
#import "NSDateXAD.h"
#import <fcntl.h>
#import <unistd.h>
#import <sys/stat.h>
#import <sys/time.h>
@implementation XADPlatform
//
// Archive entry extraction.
//
+(XADError)extractResourceForkEntryWithDictionary:(NSDictionary *)dict
unarchiver:(XADUnarchiver *)unarchiver toPath:(NSString *)destpath
{
return XADNotSupportedError;
}
+(XADError)updateFileAttributesAtPath:(NSString *)path
forEntryWithDictionary:(NSDictionary *)dict parser:(XADArchiveParser *)parser
preservePermissions:(BOOL)preservepermissions
{
const char *cpath=[path fileSystemRepresentation];
NSNumber *linknum=[dict objectForKey:XADIsLinkKey];
BOOL islink=linknum&&[linknum boolValue];
struct stat st;
if(lstat(cpath,&st)!=0) return XADOpenFileError; // TODO: better error
// If the file does not have write permissions, change this temporarily
// and remember to change back.
BOOL changedpermissions=NO;
if(!(st.st_mode&S_IWUSR))
{
if(!islink) chmod(cpath,0700);
changedpermissions=YES;
}
// Handle timestamps.
NSDate *modification=[dict objectForKey:XADLastModificationDateKey];
NSDate *access=[dict objectForKey:XADLastAccessDateKey];
if(modification||access)
{
struct timeval times[2]={
{st.st_atim.tv_sec,st.st_atim.tv_nsec/1000},
{st.st_mtim.tv_sec,st.st_mtim.tv_nsec/1000},
};
if(access) times[0]=[access timevalStruct];
if(modification) times[1]=[modification timevalStruct];
int res=lutimes(cpath,times);
if(res!=0&&res!=ENOSYS) return XADUnknownError; // TODO: better error
}
// Handle permissions (or change back to original permissions if they were changed).
NSNumber *permissions=[dict objectForKey:XADPosixPermissionsKey];
if(permissions||changedpermissions)
{
mode_t mode=st.st_mode;
if(permissions)
{
mode=[permissions unsignedShortValue];
if(!preservepermissions)
{
mode_t mask=umask(022);
umask(mask); // This is stupid. Is there no sane way to just READ the umask?
mode&=~(mask|S_ISUID|S_ISGID);
}
}
if(!islink)
if(chmod(cpath,mode&~S_IFMT)!=0) return XADUnknownError; // TODO: bette error
}
return XADNoError;
}
+(XADError)createLinkAtPath:(NSString *)path withDestinationPath:(NSString *)link
{
struct stat st;
const char *destcstr=[path fileSystemRepresentation];
if(lstat(destcstr,&st)==0) unlink(destcstr);
if(symlink([link fileSystemRepresentation],destcstr)!=0) return XADLinkError;
return XADNoError;
}
//
// Archive post-processing.
//
+(id)readCloneableMetadataFromPath:(NSString *)path { return nil; }
+(void)writeCloneableMetadata:(id)metadata toPath:(NSString *)path {}
+(BOOL)copyDateFromPath:(NSString *)src toPath:(NSString *)dest
{
struct stat st;
const char *csrc=[src fileSystemRepresentation];
if(stat(csrc,&st)!=0) return NO;
struct timeval times[2]={
{st.st_atim.tv_sec,st.st_atim.tv_nsec/1000},
{st.st_mtim.tv_sec,st.st_mtim.tv_nsec/1000},
};
const char *cdest=[dest fileSystemRepresentation];
if(utimes(cdest,times)!=0) return NO;
return YES;
}
+(BOOL)resetDateAtPath:(NSString *)path
{
const char *cpath=[path fileSystemRepresentation];
if(utimes(cpath,NULL)!=0) return NO;
return YES;
}
//
// Path functions.
//
+(NSString *)uniqueDirectoryPathWithParentDirectory:(NSString *)parent
{
// TODO: ensure this path is actually unique.
NSDate *now=[NSDate date];
int64_t t=[now timeIntervalSinceReferenceDate]*1000000000;
pid_t pid=getpid();
NSString *dirname=[NSString stringWithFormat:@"XADTemp%qd%d",t,pid];
if(parent) return [parent stringByAppendingPathComponent:dirname];
else return dirname;
}
+(NSString *)sanitizedPathComponent:(NSString *)component
{
if([component rangeOfString:@"/"].location==NSNotFound&&
[component rangeOfString:@"\000"].location==NSNotFound) return component;
NSMutableString *newstring=[NSMutableString stringWithString:component];
[newstring replaceOccurrencesOfString:@"/" withString:@"_" options:0 range:NSMakeRange(0,[newstring length])];
[newstring replaceOccurrencesOfString:@"\000" withString:@"_" options:0 range:NSMakeRange(0,[newstring length])];
return newstring;
}
//
// Time functions.
//
+(double)currentTimeInSeconds
{
struct timeval tv;
gettimeofday(&tv,NULL);
return (double)tv.tv_sec+(double)tv.tv_usec/1000000.0;
}
@end
|