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 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334
|
/*
* Copyright (C) 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#import "WebResourcePrivate.h"
#import "WebFrameInternal.h"
#import "WebNSDictionaryExtras.h"
#import "WebNSURLExtras.h"
#import <WebCore/ArchiveResource.h>
#import <WebCore/LegacyWebArchive.h>
#import <WebCore/TextEncoding.h>
#import <WebCore/WebCoreObjCExtras.h>
#import <WebCore/WebCoreURLResponse.h>
#import <wtf/PassRefPtr.h>
using namespace WebCore;
static NSString * const WebResourceDataKey = @"WebResourceData";
static NSString * const WebResourceFrameNameKey = @"WebResourceFrameName";
static NSString * const WebResourceMIMETypeKey = @"WebResourceMIMEType";
static NSString * const WebResourceURLKey = @"WebResourceURL";
static NSString * const WebResourceTextEncodingNameKey = @"WebResourceTextEncodingName";
static NSString * const WebResourceResponseKey = @"WebResourceResponse";
#define WebResourceVersion 1
@interface WebResourcePrivate : NSObject
{
@public
ArchiveResource* coreResource;
}
- (id)initWithCoreResource:(PassRefPtr<ArchiveResource>)coreResource;
@end
@implementation WebResourcePrivate
#ifndef BUILDING_ON_TIGER
+ (void)initialize
{
WebCoreObjCFinalizeOnMainThread(self);
}
#endif
- (id)init
{
return [super init];
}
- (id)initWithCoreResource:(PassRefPtr<ArchiveResource>)passedResource
{
self = [super init];
if (!self)
return self;
// Acquire the PassRefPtr<>'s ref as our own manual ref
coreResource = passedResource.releaseRef();
return self;
}
- (void)dealloc
{
if (coreResource)
coreResource->deref();
[super dealloc];
}
- (void)finalize
{
if (coreResource)
coreResource->deref();
[super finalize];
}
@end
@implementation WebResource
- (id)init
{
self = [super init];
if (!self)
return nil;
_private = [[WebResourcePrivate alloc] init];
return self;
}
- (id)initWithData:(NSData *)data URL:(NSURL *)URL MIMEType:(NSString *)MIMEType textEncodingName:(NSString *)textEncodingName frameName:(NSString *)frameName
{
return [self _initWithData:data URL:URL MIMEType:MIMEType textEncodingName:textEncodingName frameName:frameName response:nil copyData:YES];
}
- (id)initWithCoder:(NSCoder *)decoder
{
self = [super init];
if (!self)
return nil;
NSData *data = nil;
NSURL *url = nil;
NSString *mimeType = nil, *textEncoding = nil, *frameName = nil;
NSURLResponse *response = nil;
@try {
id object = [decoder decodeObjectForKey:WebResourceDataKey];
if ([object isKindOfClass:[NSData class]])
data = object;
object = [decoder decodeObjectForKey:WebResourceURLKey];
if ([object isKindOfClass:[NSURL class]])
url = object;
object = [decoder decodeObjectForKey:WebResourceMIMETypeKey];
if ([object isKindOfClass:[NSString class]])
mimeType = object;
object = [decoder decodeObjectForKey:WebResourceTextEncodingNameKey];
if ([object isKindOfClass:[NSString class]])
textEncoding = object;
object = [decoder decodeObjectForKey:WebResourceFrameNameKey];
if ([object isKindOfClass:[NSString class]])
frameName = object;
object = [decoder decodeObjectForKey:WebResourceResponseKey];
if ([object isKindOfClass:[NSURLResponse class]])
response = object;
} @catch(id) {
[self release];
return nil;
}
_private = [[WebResourcePrivate alloc] initWithCoreResource:ArchiveResource::create(SharedBuffer::wrapNSData(data), url, mimeType, textEncoding, frameName, response)];
return self;
}
- (void)encodeWithCoder:(NSCoder *)encoder
{
ArchiveResource *resource = _private->coreResource;
NSData *data = nil;
NSURL *url = nil;
NSString *mimeType = nil, *textEncoding = nil, *frameName = nil;
NSURLResponse *response = nil;
if (resource) {
if (resource->data())
data = [resource->data()->createNSData() autorelease];
url = resource->url();
mimeType = resource->mimeType();
textEncoding = resource->textEncoding();
frameName = resource->frameName();
response = resource->response().nsURLResponse();
}
[encoder encodeObject:data forKey:WebResourceDataKey];
[encoder encodeObject:url forKey:WebResourceURLKey];
[encoder encodeObject:mimeType forKey:WebResourceMIMETypeKey];
[encoder encodeObject:textEncoding forKey:WebResourceTextEncodingNameKey];
[encoder encodeObject:frameName forKey:WebResourceFrameNameKey];
[encoder encodeObject:response forKey:WebResourceResponseKey];
}
- (void)dealloc
{
[_private release];
[super dealloc];
}
- (id)copyWithZone:(NSZone *)zone
{
return [self retain];
}
- (NSData *)data
{
if (_private->coreResource && _private->coreResource->data())
return [_private->coreResource->data()->createNSData() autorelease];
return 0;
}
- (NSURL *)URL
{
return _private->coreResource ? (NSURL *)_private->coreResource->url() : 0;
}
- (NSString *)MIMEType
{
return _private->coreResource ? (NSString *)_private->coreResource->mimeType() : 0;
}
- (NSString *)textEncodingName
{
return _private->coreResource ? (NSString *)_private->coreResource->textEncoding() : 0;
}
- (NSString *)frameName
{
return _private->coreResource ? (NSString *)_private->coreResource->frameName() : 0;
}
- (id)description
{
return [NSString stringWithFormat:@"<%@ %@>", [self className], [self URL]];
}
@end
@implementation WebResource (WebResourceInternal)
- (id)_initWithCoreResource:(PassRefPtr<ArchiveResource>)coreResource
{
self = [super init];
if (!self)
return nil;
_private = [[WebResourcePrivate alloc] initWithCoreResource:coreResource];
return self;
}
- (WebCore::ArchiveResource *)_coreResource
{
return _private->coreResource;
}
@end
@implementation WebResource (WebResourcePrivate)
// SPI for Mail (5066325)
// FIXME: This "ignoreWhenUnarchiving" concept is an ugly one - can we find a cleaner solution for those who need this SPI?
- (void)_ignoreWhenUnarchiving
{
if (_private->coreResource)
_private->coreResource->ignoreWhenUnarchiving();
}
- (id)_initWithData:(NSData *)data
URL:(NSURL *)URL
MIMEType:(NSString *)MIMEType
textEncodingName:(NSString *)textEncodingName
frameName:(NSString *)frameName
response:(NSURLResponse *)response
copyData:(BOOL)copyData
{
self = [super init];
if (!self)
return nil;
if (!data || !URL || !MIMEType) {
[self release];
return nil;
}
_private = [[WebResourcePrivate alloc] initWithCoreResource:ArchiveResource::create(SharedBuffer::wrapNSData(copyData ? [[data copy] autorelease] : data), URL, MIMEType, textEncodingName, frameName, response)];
return self;
}
- (id)_initWithData:(NSData *)data URL:(NSURL *)URL response:(NSURLResponse *)response
{
// Pass NO for copyData since the data doesn't need to be copied since we know that callers will no longer modify it.
// Copying it will also cause a performance regression.
return [self _initWithData:data
URL:URL
MIMEType:[response _webcore_MIMEType]
textEncodingName:[response textEncodingName]
frameName:nil
response:response
copyData:NO];
}
- (NSFileWrapper *)_fileWrapperRepresentation
{
SharedBuffer* coreData = _private->coreResource ? _private->coreResource->data() : 0;
NSData *data = coreData ? [coreData->createNSData() autorelease] : nil;
NSFileWrapper *wrapper = [[[NSFileWrapper alloc] initRegularFileWithContents:data] autorelease];
NSString *preferredFilename = _private->coreResource ? (NSString *)_private->coreResource->response().suggestedFilename() : nil;
if (!preferredFilename || ![preferredFilename length]) {
NSURL *url = _private->coreResource ? (NSURL *)_private->coreResource->url() : nil;
NSString *mimeType = _private->coreResource ? (NSString *)_private->coreResource->mimeType() : nil;
preferredFilename = [url _webkit_suggestedFilenameWithMIMEType:mimeType];
}
[wrapper setPreferredFilename:preferredFilename];
return wrapper;
}
- (NSURLResponse *)_response
{
NSURLResponse *response = nil;
if (_private->coreResource)
response = _private->coreResource->response().nsURLResponse();
return response ? response : [[[NSURLResponse alloc] init] autorelease];
}
- (NSString *)_stringValue
{
WebCore::TextEncoding encoding(_private->coreResource ? (NSString *)_private->coreResource->textEncoding() : nil);
if (!encoding.isValid())
encoding = WindowsLatin1Encoding();
SharedBuffer* coreData = _private->coreResource ? _private->coreResource->data() : 0;
return encoding.decode(reinterpret_cast<const char*>(coreData ? coreData->data() : 0), coreData ? coreData->size() : 0);
}
@end
|