blob: 2cd35596cf613b5f1a39b7dcf04ecfec6b947277 [file] [log] [blame]
/*
* Copyright (C) 2009-2019 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.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. 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 INC. 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 "config.h"
#import "PreviewLoader.h"
#if USE(QUICK_LOOK)
#import "DocumentLoader.h"
#import "Frame.h"
#import "FrameLoader.h"
#import "FrameLoaderClient.h"
#import "Logging.h"
#import "PreviewConverter.h"
#import "PreviewLoaderClient.h"
#import "QuickLook.h"
#import "ResourceLoader.h"
#import "Settings.h"
#import <pal/spi/ios/QuickLookSPI.h>
#import <wtf/NeverDestroyed.h>
using namespace WebCore;
@interface WebPreviewLoader : NSObject {
WeakPtr<ResourceLoader> _resourceLoader;
ResourceResponse _response;
RefPtr<PreviewLoaderClient> _client;
std::unique_ptr<PreviewConverter> _converter;
RetainPtr<NSMutableArray> _bufferedDataArray;
BOOL _hasLoadedPreview;
BOOL _hasProcessedResponse;
RefPtr<SharedBuffer> _bufferedData;
long long _lengthReceived;
BOOL _needsToCallDidFinishLoading;
}
- (instancetype)initWithResourceLoader:(ResourceLoader&)resourceLoader resourceResponse:(const ResourceResponse&)resourceResponse;
- (void)appendDataArray:(NSArray<NSData *> *)dataArray;
- (void)finishedAppending;
- (void)failed;
@property (nonatomic, readonly) BOOL shouldDecidePolicyBeforeLoading;
@end
@implementation WebPreviewLoader
static RefPtr<PreviewLoaderClient>& testingClient()
{
static NeverDestroyed<RefPtr<PreviewLoaderClient>> testingClient;
return testingClient.get();
}
static PreviewLoaderClient& emptyClient()
{
static NeverDestroyed<PreviewLoaderClient> emptyClient;
return emptyClient.get();
}
- (instancetype)initWithResourceLoader:(ResourceLoader&)resourceLoader resourceResponse:(const ResourceResponse&)resourceResponse
{
if (!(self = [super init]))
return nil;
_resourceLoader = makeWeakPtr(resourceLoader);
_response = resourceResponse;
_converter = makeUnique<PreviewConverter>(self, _response);
_bufferedDataArray = adoptNS([[NSMutableArray alloc] init]);
_shouldDecidePolicyBeforeLoading = resourceLoader.frame()->settings().shouldDecidePolicyBeforeLoadingQuickLookPreview();
if (testingClient())
_client = testingClient();
else if (auto client = resourceLoader.frameLoader()->client().createPreviewLoaderClient(_converter->previewFileName(), _converter->previewUTI()))
_client = WTFMove(client);
else
_client = &emptyClient();
LOG(Network, "WebPreviewConverter created with preview file name \"%s\".", _converter->previewFileName().utf8().data());
return self;
}
- (void)appendDataArray:(NSArray<NSData *> *)dataArray
{
LOG(Network, "WebPreviewConverter appending data array with count %ld.", dataArray.count);
[_converter->platformConverter() appendDataArray:dataArray];
[_bufferedDataArray addObjectsFromArray:dataArray];
_client->didReceiveDataArray((CFArrayRef)dataArray);
}
- (void)finishedAppending
{
LOG(Network, "WebPreviewConverter finished appending data.");
[_converter->platformConverter() finishedAppendingData];
_client->didFinishLoading();
}
- (void)failed
{
LOG(Network, "WebPreviewConverter failed.");
[_converter->platformConverter() finishConverting];
_client->didFail();
}
- (void)_loadPreviewIfNeeded
{
if (!_resourceLoader)
return;
ASSERT(!_resourceLoader->reachedTerminalState());
if (_hasLoadedPreview)
return;
_hasLoadedPreview = YES;
[_bufferedDataArray removeAllObjects];
ResourceResponse response { _converter->previewResponse() };
response.setIsQuickLook(true);
ASSERT(response.mimeType().length());
_resourceLoader->documentLoader()->setPreviewConverter(WTFMove(_converter));
if (_shouldDecidePolicyBeforeLoading) {
_hasProcessedResponse = YES;
_resourceLoader->didReceivePreviewResponse(response);
return;
}
_hasProcessedResponse = NO;
_resourceLoader->didReceiveResponse(response, [self, retainedSelf = retainPtr(self)] {
_hasProcessedResponse = YES;
if (!_resourceLoader)
return;
if (_resourceLoader->reachedTerminalState())
return;
if (auto bufferedData = WTFMove(_bufferedData)) {
_resourceLoader->didReceiveData(bufferedData->data(), bufferedData->size(), _lengthReceived, DataPayloadBytes);
_lengthReceived = 0;
}
if (_resourceLoader->reachedTerminalState())
return;
if (_needsToCallDidFinishLoading) {
_needsToCallDidFinishLoading = NO;
_resourceLoader->didFinishLoading(NetworkLoadMetrics { });
}
});
}
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data lengthReceived:(long long)lengthReceived
{
if (!_resourceLoader)
return;
ASSERT_UNUSED(connection, !connection);
if (_resourceLoader->reachedTerminalState())
return;
[self _loadPreviewIfNeeded];
auto dataLength = data.length;
// QuickLook code sends us a nil data at times. The check below is the same as the one in
// ResourceHandleMac.cpp added for a different bug.
if (!dataLength)
return;
if (_hasProcessedResponse) {
_resourceLoader->didReceiveData(reinterpret_cast<const char*>(data.bytes), dataLength, lengthReceived, DataPayloadBytes);
return;
}
if (!_bufferedData)
_bufferedData = SharedBuffer::create(data);
else
_bufferedData->append(data);
_lengthReceived += lengthReceived;
}
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
if (!_resourceLoader)
return;
ASSERT_UNUSED(connection, !connection);
if (_resourceLoader->reachedTerminalState())
return;
ASSERT(_hasLoadedPreview);
if (!_hasProcessedResponse) {
_needsToCallDidFinishLoading = YES;
return;
}
_resourceLoader->didFinishLoading(NetworkLoadMetrics { });
}
static inline bool isQuickLookPasswordError(NSError *error)
{
return error.code == kQLReturnPasswordProtected && [error.domain isEqualToString:@"QuickLookErrorDomain"];
}
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
if (!_resourceLoader)
return;
ASSERT_UNUSED(connection, !connection);
if (_resourceLoader->reachedTerminalState())
return;
if (!isQuickLookPasswordError(error)) {
_resourceLoader->didFail(error);
return;
}
if (!_client->supportsPasswordEntry()) {
_resourceLoader->didFail(_resourceLoader->cannotShowURLError());
return;
}
_client->didRequestPassword([self, retainedSelf = retainPtr(self)] (const String& password) {
_converter = makeUnique<PreviewConverter>(self, _response, password);
[_converter->platformConverter() appendDataArray:_bufferedDataArray.get()];
[_converter->platformConverter() finishedAppendingData];
});
}
@end
namespace WebCore {
PreviewLoader::PreviewLoader(ResourceLoader& loader, const ResourceResponse& response)
: m_previewLoader { adoptNS([[WebPreviewLoader alloc] initWithResourceLoader:loader resourceResponse:response]) }
{
}
PreviewLoader::~PreviewLoader()
{
}
std::unique_ptr<PreviewLoader> PreviewLoader::create(ResourceLoader& loader, const ResourceResponse& response)
{
ASSERT(PreviewConverter::supportsMIMEType(response.mimeType()));
return makeUnique<PreviewLoader>(loader, response);
}
bool PreviewLoader::didReceiveResponse(const ResourceResponse&)
{
return ![m_previewLoader shouldDecidePolicyBeforeLoading];
}
bool PreviewLoader::didReceiveData(const char* data, unsigned length)
{
if (m_finishedLoadingDataIntoConverter)
return false;
[m_previewLoader appendDataArray:@[ [NSData dataWithBytes:data length:length] ]];
return true;
}
bool PreviewLoader::didReceiveBuffer(const SharedBuffer& buffer)
{
if (m_finishedLoadingDataIntoConverter)
return false;
[m_previewLoader appendDataArray:buffer.createNSDataArray().get()];
return true;
}
bool PreviewLoader::didFinishLoading()
{
if (m_finishedLoadingDataIntoConverter)
return false;
m_finishedLoadingDataIntoConverter = true;
[m_previewLoader finishedAppending];
return true;
}
void PreviewLoader::didFail()
{
if (m_finishedLoadingDataIntoConverter)
return;
m_finishedLoadingDataIntoConverter = true;
[m_previewLoader failed];
m_previewLoader = nullptr;
}
void PreviewLoader::setClientForTesting(RefPtr<PreviewLoaderClient>&& client)
{
testingClient() = WTFMove(client);
}
} // namespace WebCore
#endif // USE(QUICK_LOOK)