-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathPGWebAdapter.m
174 lines (146 loc) · 6.81 KB
/
PGWebAdapter.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
/* Copyright © 2007-2009, The Sequential Project
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* 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.
* Neither the name of the the Sequential Project 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 THE SEQUENTIAL PROJECT ''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 THE SEQUENTIAL PROJECT 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 "PGWebAdapter.h"
// Models
#import "PGNode.h"
#import "PGContainerAdapter.h"
#import "PGResourceIdentifier.h"
#import "PGDataProvider.h"
#import "PGURLLoad.h"
// Controllers
#import "PGDocumentController.h"
// Other Sources
#import "PGFoundationAdditions.h"
@interface PGWebDataProvider : PGDataProvider
{
@private
PGResourceIdentifier *_identifier;
}
- (id)initWithResourceIdentifier:(PGResourceIdentifier *)identifier;
@property(readonly) PGResourceIdentifier *identifier;
@end
@implementation PGWebAdapter
#pragma mark +PGDataProviderCustomizing
+ (PGDataProvider *)customDataProviderWithResourceIdentifier:(PGResourceIdentifier *)ident displayableName:(NSString *)name
{
if([ident isFileIdentifier]) return nil;
NSURL *const URL = [ident URL];
if([[NSArray arrayWithObjects:@"http", @"https", nil] containsObject:[URL scheme]]) return [[[PGWebDataProvider alloc] initWithResourceIdentifier:ident] autorelease];
return nil;
}
#pragma mark -PGResourceAdapter
- (void)load
{
NSURL *const URL = [[(PGDataProvider *)[self dataProvider] identifier] URL];
if([URL isFileURL]) return [[self node] fallbackFromFailedAdapter:self];
[_faviconLoad cancelAndNotify:NO];
[_faviconLoad release];
_faviconLoad = [[PGURLLoad alloc] initWithRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"/favicon.ico" relativeToURL:URL] cachePolicy:NSURLRequestReturnCacheDataElseLoad timeoutInterval:15.0f] parent:self delegate:self];
[_mainLoad cancelAndNotify:NO];
[_mainLoad release];
_mainLoad = [[PGURLLoad alloc] initWithRequest:[NSURLRequest requestWithURL:URL cachePolicy:NSURLRequestReturnCacheDataElseLoad timeoutInterval:15.0f] parent:self delegate:self];
}
#pragma mark -NSObject
- (void)dealloc
{
[_mainLoad cancelAndNotify:NO];
[_mainLoad release];
[_faviconLoad cancelAndNotify:NO];
[_faviconLoad release];
[super dealloc];
}
#pragma mark -<PGActivityOwner>
- (CGFloat)progressForActivity:(PGActivity *)activity
{
return [[_mainLoad activity] progress];
}
#pragma mark -<PGURLLoadDelegate>
- (void)loadLoadingDidProgress:(PGURLLoad *)sender
{
if(sender == _mainLoad) [[self node] PG_postNotificationName:PGNodeLoadingDidProgressNotification];
}
- (void)loadDidReceiveResponse:(PGURLLoad *)sender
{
if(sender != _mainLoad) return;
id const resp = [sender response];
if([resp respondsToSelector:@selector(statusCode)] && ([resp statusCode] < 200 || [resp statusCode] >= 300)) {
[_mainLoad cancelAndNotify:NO];
[_faviconLoad cancelAndNotify:NO];
[self setError:[NSError PG_errorWithDomain:PGNodeErrorDomain code:PGGenericError localizedDescription:[NSString stringWithFormat:NSLocalizedString(@"The error %ld %@ was generated while loading the URL %@.", @"The URL returned a error status code. %ld is replaced by the status code, the first %@ is replaced by the human-readable error (automatically localized), the second %@ is replaced by the full URL."), (long)[resp statusCode], [NSHTTPURLResponse localizedStringForStatusCode:[resp statusCode]], [resp URL]] userInfo:nil]];
[[self node] loadFinishedForAdapter:self];
return;
}
PGDataProvider *const potentialDataProvider = [PGDataProvider providerWithURLResponse:resp data:nil];
NSMutableArray *const potentialAdapterClasses = [[[potentialDataProvider adapterClassesForNode:[self node]] mutableCopy] autorelease];
if(![self shouldRecursivelyCreateChildren]) for(Class const adapterClass in [[potentialAdapterClasses copy] autorelease]) if([adapterClass isKindOfClass:[PGContainerAdapter class]]) [potentialAdapterClasses removeObjectIdenticalTo:adapterClass]; // Instead of using -isKindOfClass:, add a class method or something.
if([potentialAdapterClasses count]) return;
[_mainLoad cancelAndNotify:NO];
[_faviconLoad cancelAndNotify:NO];
[[self node] fallbackFromFailedAdapter:self];
}
- (void)loadDidSucceed:(PGURLLoad *)sender
{
if(sender == _mainLoad) {
[_faviconLoad cancelAndNotify:NO];
[[self node] setDataProvider:[PGDataProvider providerWithURLResponse:[_mainLoad response] data:[_mainLoad data]]];
} else if(sender == _faviconLoad) {
NSImage *const favicon = [[[NSImage alloc] initWithData:[_faviconLoad data]] autorelease];
if(favicon) [[[self node] identifier] setIcon:favicon]; // Don't clear the favicon we already have if we can't load a new one.
}
}
- (void)loadDidFail:(PGURLLoad *)sender
{
if(sender != _mainLoad) return;
[_faviconLoad cancelAndNotify:NO];
[self setError:[NSError PG_errorWithDomain:PGNodeErrorDomain code:PGGenericError localizedDescription:[NSString stringWithFormat:NSLocalizedString(@"The URL %@ could not be loaded.", @"The URL could not be loaded for an unknown reason. %@ is replaced by the full URL."), [[_mainLoad request] URL]] userInfo:nil]];
[[self node] loadFinishedForAdapter:self];
}
- (void)loadDidCancel:(PGURLLoad *)sender
{
if(sender != _mainLoad) return;
[_faviconLoad cancelAndNotify:NO];
[[self node] loadFinishedForAdapter:self];
}
@end
@implementation PGWebDataProvider
#pragma mark -PGWebDataProvider
- (id)initWithResourceIdentifier:(PGResourceIdentifier *)identifier
{
if((self = [super init])) {
_identifier = [identifier retain];
}
return self;
}
@synthesize identifier = _identifier;
#pragma mark -PGDataProvider(PGResourceAdapterLoading)
- (NSArray *)adapterClassesForNode:(PGNode *)node
{
return [NSArray arrayWithObject:[PGWebAdapter class]];
}
#pragma mark -NSObject
- (void)dealloc
{
[_identifier release];
[super dealloc];
}
@end