forked from karelia/KSFileUtilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
KSWebLocation.m
249 lines (201 loc) · 6.27 KB
/
KSWebLocation.m
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
//
// KSWebLocation.m
//
// Created by Mike Abdullah
// Copyright © 2007 Karelia Software
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//
#import "KSWebLocation.h"
#import "KSURLFormatter.h"
@implementation KSWebLocation
+ (instancetype)webLocationWithURL:(NSURL *)URL;
{
return [self webLocationWithURL:URL title:nil];
}
+ (instancetype)webLocationWithURL:(NSURL *)URL title:(NSString *)title
{
return [[self alloc] initWithURL:URL title:title];
}
#pragma mark Init & Dealloc
- (instancetype)initWithURL:(NSURL *)URL title:(NSString *)name
{
NSParameterAssert(URL);
if ((self = [super init]))
{
_URL = [URL copy];
_title = [name copy];
}
return self;
}
- (instancetype)initWithURL:(NSURL *)URL;
{
return [self initWithURL:URL title:nil];
}
- (instancetype)init
{
return [self initWithURL:nil title:nil];
}
#pragma mark Accessors
- (NSURL *)URL { return _URL; }
- (NSString *)title { return _title; }
- (NSString *)description;
{
return [NSString stringWithFormat:
@"%@ %@ %@",
super.description,
self.URL.absoluteString,
self.title];
}
#pragma mark Equality
- (NSUInteger)hash
{
NSUInteger result = self.URL.hash | self.title.hash;
return result;
}
- (BOOL)isEqual:(id)anObject
{
if (self == anObject)
{
return YES;
}
else if ([anObject isKindOfClass:[KSWebLocation class]])
{
return [self isEqualToWebLocation:anObject];
}
else
{
return NO;
}
}
- (BOOL)isEqualToWebLocation:(KSWebLocation *)aWebLocation
{
BOOL result = [aWebLocation.URL isEqual:self.URL] && [aWebLocation.title isEqualToString:self.title];
return result;
}
#pragma mark Copying
- (id)copyWithZone:(NSZone *)zone
{
// KSWebLocations are effectively immutable (could add a mutable subclass if needed in the future) so retain
return self;
}
#pragma mark Archiving
- (void)encodeWithCoder:(NSCoder *)encoder
{
[encoder encodeObject:self.URL forKey:@"URL"];
[encoder encodeObject:self.title forKey:@"name"];
}
- (instancetype)initWithCoder:(NSCoder *)decoder
{
if ((self = [super init]))
{
_URL = [decoder decodeObjectForKey:@"URL"];
_title = [decoder decodeObjectForKey:@"name"];
}
return self;
}
#pragma mark Support
// Pass in nil for aName if we want to use ID
+ (NSData *)readFromResourceFileAtPath:(NSString *)aPath type:(ResType) aType named:(NSString *)aName id:(NSInteger)anID
{
ResFileRefNum fileRef = 0;
NSData *result = nil;
@try
{
FSRef theFSRef;
if (noErr == FSPathMakeRef((const UInt8 *)aPath.UTF8String, &theFSRef, NULL ))
{
fileRef = FSOpenResFile(&theFSRef, fsRdPerm);
if (noErr == ResError())
{
Handle theResHandle = NULL;
ResFileRefNum thePreviousRefNum = CurResFile(); // save current resource
Str255 thePName;
UseResFile(fileRef); // set this resource to be current
if (noErr == ResError())
{
if (aName) // use name
{
Str255 pString;
// Create pascal string -- assume MacRoman encoding for resource names?
BOOL success = CFStringGetPascalString((CFStringRef)aName,
pString,
aName.length,
kCFStringEncodingMacRomanLatin1);
if (success)
{
theResHandle = Get1NamedResource( aType, thePName );
}
}
else // use ID
{
theResHandle = Get1Resource( aType, anID );
}
if (theResHandle && noErr == ResError())
{
// Wow, this is a trip down memory lane for Dan!
HLock(theResHandle);
result = [NSData dataWithBytes:*theResHandle length:GetHandleSize(theResHandle)];
HUnlock(theResHandle);
ReleaseResource(theResHandle);
}
}
UseResFile( thePreviousRefNum ); // reset back to resource previously set
}
}
}
@finally
{
if( fileRef > 0)
{
CloseResFile(fileRef);
}
}
return result;
}
@end
#pragma mark -
@implementation KSWebLocation (WeblocFiles)
+ (instancetype)webLocationWithContentsOfWeblocFile:(NSURL *)weblocURL
{
return [[self alloc] initWithContentsOfWeblocFile:weblocURL];
}
- (instancetype)initWithContentsOfWeblocFile:(NSURL *)weblocURL
{
NSString *weblocPath = weblocURL.path;
// Use the Carbon Resource Manager to read 'url ' resource #256.
// String sems to be pre ASCII, with 2-bytes converted to % escapes
NSData *urlData = [[self class] readFromResourceFileAtPath:weblocPath
type:'url '
named:nil
id:256];
NSString *URLString = [[NSString alloc] initWithData:urlData encoding:NSASCIIStringEncoding];
NSURL *URL = [KSURLFormatter URLFromString:URLString];
// Use the Carbon Resource Manager to read 'urln' resource #256.
// empirically, this seems to be UTF8 encoded.
NSData *nameData = [[self class] readFromResourceFileAtPath:weblocPath
type:'urln'
named:nil
id:256];
NSString *nameString = [[NSString alloc] initWithData:nameData
encoding:NSUTF8StringEncoding];
self = [self initWithURL:URL title:nameString];
return self;
}
@end