/* * Copyright (c) 2008, 2009, 2010, 2011 * Jonathan Schleifer * * All rights reserved. * * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE.QPL included in * the packaging of this file. * * Alternatively, it may be distributed under the terms of the GNU General * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #include "config.h" #include #include #include #import "OFURL.h" #import "OFString.h" #import "OFArray.h" #import "OFAutoreleasePool.h" #import "OFInvalidArgumentException.h" #import "OFInvalidFormatException.h" #import "OFOutOfMemoryException.h" #import "macros.h" #define ADD_STR_HASH(str) \ tmp = [str hash]; \ OF_HASH_ADD(hash, tmp >> 24); \ OF_HASH_ADD(hash, (tmp >> 16) & 0xFF); \ OF_HASH_ADD(hash, (tmp >> 8) & 0xFF); \ OF_HASH_ADD(hash, tmp & 0xFF); static OF_INLINE OFString* resolve_relative_path(OFString *path) { OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init]; OFMutableArray *array; OFString *ret; BOOL done = NO; array = [[[path componentsSeparatedByString: @"/"] mutableCopy] autorelease]; while (!done) { id *cArray = [array cArray]; size_t i, length = [array count]; done = YES; for (i = 0; i < length; i++) { if ([cArray[i] isEqual: @"."]) { [array removeObjectAtIndex: i]; done = NO; break; } if ([cArray[i] isEqual: @".."]) { [array removeObjectAtIndex: i]; if (i > 0) [array removeObjectAtIndex: i - 1]; done = NO; break; } } } ret = [[array componentsJoinedByString: @"/"] retain]; [pool release]; return [ret autorelease]; } @implementation OFURL + URLWithString: (OFString*)string { return [[[self alloc] initWithString: string] autorelease]; } + URLWithString: (OFString*)string relativeToURL: (OFURL*)URL { return [[[self alloc] initWithString: string relativeToURL: URL] autorelease]; } - initWithString: (OFString*)string { char *cString, *cString2 = NULL; self = [super init]; @try { char *tmp, *tmp2; if ((cString2 = strdup([string cString])) == NULL) @throw [OFOutOfMemoryException newWithClass: isa requestedSize: [string cStringLength]]; cString = cString2; if (!strncmp(cString, "file://", 7)) { scheme = @"file"; path = [[OFString alloc] initWithCString: cString + 7]; return self; } else if (!strncmp(cString, "http://", 7)) { scheme = @"http"; cString += 7; } else if (!strncmp(cString, "https://", 8)) { scheme = @"https"; cString += 8; } else @throw [OFInvalidFormatException newWithClass: isa]; if ((tmp = strchr(cString, '/')) != NULL) { *tmp = '\0'; tmp++; } if ((tmp2 = strchr(cString, '@')) != NULL) { char *tmp3; *tmp2 = '\0'; tmp2++; if ((tmp3 = strchr(cString, ':')) != NULL) { *tmp3 = '\0'; tmp3++; user = [[OFString alloc] initWithCString: cString]; password = [[OFString alloc] initWithCString: tmp3]; } else user = [[OFString alloc] initWithCString: cString]; cString = tmp2; } if ((tmp2 = strchr(cString, ':')) != NULL) { OFAutoreleasePool *pool; OFString *portString; *tmp2 = '\0'; tmp2++; host = [[OFString alloc] initWithCString: cString]; pool = [[OFAutoreleasePool alloc] init]; portString = [[OFString alloc] initWithCString: tmp2]; if ([portString decimalValue] > 65535) @throw [OFInvalidFormatException newWithClass: isa]; port = [portString decimalValue]; [pool release]; } else { host = [[OFString alloc] initWithCString: cString]; if ([scheme isEqual: @"http"]) port = 80; else if ([scheme isEqual: @"https"]) port = 443; else assert(0); } if ((cString = tmp) != NULL) { if ((tmp = strchr(cString, '#')) != NULL) { *tmp = '\0'; fragment = [[OFString alloc] initWithCString: tmp + 1]; } if ((tmp = strchr(cString, '?')) != NULL) { *tmp = '\0'; query = [[OFString alloc] initWithCString: tmp + 1]; } if ((tmp = strchr(cString, ';')) != NULL) { *tmp = '\0'; parameters = [[OFString alloc] initWithCString: tmp + 1]; } path = [[OFString alloc] initWithFormat: @"/%s", cString]; } else path = @""; } @catch (id e) { [self release]; @throw e; } @finally { free(cString2); } return self; } - initWithString: (OFString*)string relativeToURL: (OFURL*)URL { char *cString, *cString2 = NULL; if ([string containsString: @"://"]) return [self initWithString: string]; self = [super init]; @try { char *tmp; scheme = [URL->scheme copy]; host = [URL->host copy]; port = URL->port; user = [URL->user copy]; password = [URL->password copy]; if ((cString2 = strdup([string cString])) == NULL) @throw [OFOutOfMemoryException newWithClass: isa requestedSize: [string cStringLength]]; cString = cString2; if ((tmp = strchr(cString, '#')) != NULL) { *tmp = '\0'; fragment = [[OFString alloc] initWithCString: tmp + 1]; } if ((tmp = strchr(cString, '?')) != NULL) { *tmp = '\0'; query = [[OFString alloc] initWithCString: tmp + 1]; } if ((tmp = strchr(cString, ';')) != NULL) { *tmp = '\0'; parameters = [[OFString alloc] initWithCString: tmp + 1]; } if (*cString == '/') path = [[OFString alloc] initWithCString: cString]; else { OFAutoreleasePool *pool; OFString *s; pool = [[OFAutoreleasePool alloc] init]; if ([URL->path hasSuffix: @"/"]) s = [OFString stringWithFormat: @"%@%s", URL->path, cString]; else s = [OFString stringWithFormat: @"%@/../%s", URL->path, cString]; path = [resolve_relative_path(s) copy]; [pool release]; } } @catch (id e) { [self release]; @throw e; } @finally { free(cString2); } return self; } - (void)dealloc { [scheme release]; [host release]; [user release]; [password release]; [path release]; [parameters release]; [query release]; [fragment release]; [super dealloc]; } - (BOOL)isEqual: (id)object { OFURL *otherURL; if (![object isKindOfClass: [OFURL class]]) return NO; otherURL = (OFURL*)object; if (![otherURL->scheme isEqual: scheme]) return NO; if (![otherURL->host isEqual: host]) return NO; if (otherURL->port != port) return NO; if (![otherURL->user isEqual: user]) return NO; if (![otherURL->password isEqual: password]) return NO; if (![otherURL->path isEqual: path]) return NO; if (![otherURL->parameters isEqual: parameters]) return NO; if (![otherURL->query isEqual: query]) return NO; if (![otherURL->fragment isEqual: fragment]) return NO; return YES; } - (uint32_t)hash { uint32_t hash, tmp; OF_HASH_INIT(hash); ADD_STR_HASH(scheme); ADD_STR_HASH(host); OF_HASH_ADD(hash, (port >> 8) & 0xFF); OF_HASH_ADD(hash, port & 0xFF); ADD_STR_HASH(user); ADD_STR_HASH(password); ADD_STR_HASH(path); ADD_STR_HASH(parameters); ADD_STR_HASH(query); ADD_STR_HASH(fragment); OF_HASH_FINALIZE(hash); return hash; } - copy { OFURL *copy = [[OFURL alloc] init]; @try { copy->scheme = [scheme copy]; copy->host = [host copy]; copy->port = port; copy->user = [user copy]; copy->password = [password copy]; copy->path = [path copy]; copy->parameters = [parameters copy]; copy->query = [query copy]; copy->fragment = [fragment copy]; } @catch (id e) { [copy release]; @throw e; } return copy; } - (OFString*)scheme { OF_GETTER(scheme, YES) } - (void)setScheme: (OFString*)scheme_ { if (![scheme_ isEqual: @"http"] && ![scheme_ isEqual: @"https"]) @throw [OFInvalidArgumentException newWithClass: isa selector: _cmd]; OF_SETTER(scheme, scheme_, YES, YES) } - (OFString*)host { OF_GETTER(host, YES) } - (void)setHost: (OFString*)host_ { OF_SETTER(host, host_, YES, YES) } - (uint16_t)port { return port; } - (void)setPort: (uint16_t)port_ { port = port_; } - (OFString*)user { OF_GETTER(user, YES) } - (void)setUser: (OFString*)user_ { OF_SETTER(user, user_, YES, YES) } - (OFString*)password { OF_GETTER(password, YES) } - (void)setPassword: (OFString*)password_ { OF_SETTER(password, password_, YES, YES) } - (OFString*)path { OF_GETTER(path, YES) } - (void)setPath: (OFString*)path_ { if (([scheme isEqual: @"http"] || [scheme isEqual: @"https"]) && ![path_ hasPrefix: @"/"]) @throw [OFInvalidArgumentException newWithClass: isa selector: _cmd]; OF_SETTER(path, path_, YES, YES) } - (OFString*)parameters { OF_GETTER(parameters, YES) } - (void)setParameters: (OFString*)parameters_ { OF_SETTER(parameters, parameters_, YES, YES) } - (OFString*)query { OF_GETTER(query, YES) } - (void)setQuery: (OFString*)query_ { OF_SETTER(query, query_, YES, YES) } - (OFString*)fragment { OF_GETTER(fragment, YES) } - (void)setFragment: (OFString*)fragment_ { OF_SETTER(fragment, fragment_, YES, YES) } - (OFString*)string { OFMutableString *ret = [OFMutableString stringWithFormat: @"%@://", scheme]; BOOL needPort = YES; if ([scheme isEqual: @"file"]) { [ret appendString: path]; return ret; } if (user != nil && password != nil) [ret appendFormat: @"%@:%@@", user, password]; else if (user != nil) [ret appendFormat: @"%@@", user]; [ret appendString: host]; if (([scheme isEqual: @"http"] && port == 80) || ([scheme isEqual: @"https"] && port == 443)) needPort = NO; if (needPort) [ret appendFormat: @":%d", port]; [ret appendString: path]; if (parameters != nil) [ret appendFormat: @";%@", parameters]; if (query != nil) [ret appendFormat: @"?%@", query]; if (fragment != nil) [ret appendFormat: @"#%@", fragment]; /* * Class swizzle the string to be immutable. We declared the return type * to be OFString*, so it can't be modified anyway. But not swizzling it * would create a real copy each time -[copy] is called. */ ret->isa = [OFString class]; return ret; } - (OFString*)description { return [self string]; } - (OFString*)stringBySerializing { OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init]; OFString *ret = [[OFString alloc] initWithFormat: @"(class=OFURL,version=0)<%@>", [[self string] stringBySerializing]]; @try { [pool release]; } @finally { [ret autorelease]; } return ret; } @end