blob: 2d20ff0b92ae40023a3a6edd7173edefeec0021a [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "components/image_fetcher/ios/ios_image_data_fetcher_wrapper.h"
#import "base/mac/bind_objc_block.h"
#include "base/memory/ptr_util.h"
#include "base/task_runner.h"
#include "base/task_runner_util.h"
#import "components/image_fetcher/ios/webp_decoder.h"
#include "net/http/http_response_headers.h"
#include "net/http/http_status_code.h"
#include "net/url_request/url_fetcher.h"
#include "url/url_constants.h"
#if !defined(__has_feature) || !__has_feature(objc_arc)
#error "This file requires ARC support."
#endif
#pragma mark - IOSImageDataFetcherWrapper
namespace image_fetcher {
IOSImageDataFetcherWrapper::IOSImageDataFetcherWrapper(
net::URLRequestContextGetter* url_request_context_getter,
const scoped_refptr<base::TaskRunner>& task_runner)
: task_runner_(task_runner),
image_data_fetcher_(url_request_context_getter) {
DCHECK(task_runner_.get());
}
IOSImageDataFetcherWrapper::~IOSImageDataFetcherWrapper() {}
void IOSImageDataFetcherWrapper::FetchImageDataWebpDecoded(
const GURL& image_url,
IOSImageDataFetcherCallback callback) {
image_data_fetcher_.FetchImageData(image_url,
CallbackForImageDataFetcher(callback));
}
void IOSImageDataFetcherWrapper::FetchImageDataWebpDecoded(
const GURL& image_url,
IOSImageDataFetcherCallback callback,
const std::string& referrer,
net::URLRequest::ReferrerPolicy referrer_policy) {
DCHECK(callback);
image_data_fetcher_.FetchImageData(image_url,
CallbackForImageDataFetcher(callback),
referrer, referrer_policy);
}
void IOSImageDataFetcherWrapper::SetDataUseServiceName(
DataUseServiceName data_use_service_name) {
image_data_fetcher_.SetDataUseServiceName(data_use_service_name);
}
ImageDataFetcher::ImageDataFetcherCallback
IOSImageDataFetcherWrapper::CallbackForImageDataFetcher(
IOSImageDataFetcherCallback callback) {
scoped_refptr<base::TaskRunner> task_runner = task_runner_;
return base::BindBlockArc(^(const std::string& image_data,
const RequestMetadata& metadata) {
// Create a NSData from the returned data and notify the callback.
NSData* data =
[NSData dataWithBytes:image_data.data() length:image_data.size()];
if (!webp_transcode::WebpDecoder::IsWebpImage(image_data)) {
callback(data, metadata);
return;
}
// The image is a webp image.
RequestMetadata webp_metadata = metadata;
base::PostTaskAndReplyWithResult(
task_runner.get(), FROM_HERE, base::BindBlockArc(^NSData*() {
return webp_transcode::WebpDecoder::DecodeWebpImage(data);
}),
base::BindBlockArc(^(NSData* decodedData) {
callback(decodedData, webp_metadata);
}));
});
}
} // namespace image_fetcher