2019-04-24 04:50:25 +02:00
|
|
|
// Copyright (c) 2019 The Chromium Embedded Framework Authors. Portions
|
|
|
|
// Copyright (c) 2018 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.
|
|
|
|
|
|
|
|
#ifndef CEF_LIBCEF_BROWSER_NET_SERVICE_STREAM_READER_URL_LOADER_H_
|
|
|
|
#define CEF_LIBCEF_BROWSER_NET_SERVICE_STREAM_READER_URL_LOADER_H_
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
2023-01-30 18:43:54 +01:00
|
|
|
#include "base/functional/callback.h"
|
2019-04-24 04:50:25 +02:00
|
|
|
#include "base/threading/thread_checker.h"
|
2021-08-20 01:40:49 +02:00
|
|
|
#include "mojo/public/cpp/bindings/remote.h"
|
2019-04-24 04:50:25 +02:00
|
|
|
#include "mojo/public/cpp/system/simple_watcher.h"
|
|
|
|
#include "net/http/http_byte_range.h"
|
|
|
|
#include "services/network/public/cpp/net_adapters.h"
|
2021-08-20 01:40:49 +02:00
|
|
|
#include "services/network/public/cpp/resource_request.h"
|
2019-04-24 04:50:25 +02:00
|
|
|
#include "services/network/public/mojom/network_context.mojom.h"
|
|
|
|
#include "services/network/public/mojom/url_loader.mojom.h"
|
2020-03-04 01:29:39 +01:00
|
|
|
#include "services/network/public/mojom/url_response_head.mojom.h"
|
2019-04-24 04:50:25 +02:00
|
|
|
|
|
|
|
namespace net_service {
|
|
|
|
|
|
|
|
class InputStreamReader;
|
|
|
|
|
|
|
|
// Abstract class representing an input stream. All methods are called in
|
|
|
|
// sequence on a worker thread, but not necessarily on the same thread.
|
|
|
|
class InputStream {
|
|
|
|
public:
|
|
|
|
virtual ~InputStream() {}
|
|
|
|
|
|
|
|
// Callback for asynchronous continuation of Skip(). If |bytes_skipped| > 0
|
|
|
|
// then either Skip() will be called again until the requested number of
|
|
|
|
// bytes have been skipped or the request will proceed. If |bytes_skipped|
|
|
|
|
// <= 0 the request will fail with net::ERR_REQUEST_RANGE_NOT_SATISFIABLE.
|
|
|
|
using SkipCallback = base::OnceCallback<void(int64_t /* bytes_skipped */)>;
|
|
|
|
|
|
|
|
// Skip over and discard |n| bytes of data from this input stream. If data
|
|
|
|
// is available immediately set |bytes_skipped| to the number of of bytes
|
|
|
|
// skipped and return true. To read the data at a later time set
|
|
|
|
// |bytes_skipped| to 0, return true and execute |callback| when the data is
|
|
|
|
// available. To indicate failure set |bytes_skipped| to < 0 (e.g.
|
|
|
|
// net::ERR_FAILED) and return false.
|
|
|
|
virtual bool Skip(int64_t n,
|
|
|
|
int64_t* bytes_skipped,
|
|
|
|
SkipCallback callback) = 0;
|
|
|
|
|
|
|
|
// Callback for asynchronous continuation of Read(). If |bytes_read| == 0
|
|
|
|
// the response will be considered complete. If |bytes_read| > 0 then Read()
|
|
|
|
// will be called again until the request is complete (based on either the
|
|
|
|
// result or the expected content length). If |bytes_read| < 0 then the
|
|
|
|
// request will fail and the |bytes_read| value will be treated as the error
|
|
|
|
// code.
|
|
|
|
using ReadCallback = base::OnceCallback<void(int /* bytes_read */)>;
|
|
|
|
|
|
|
|
// Read response data. If data is available immediately copy up to |length|
|
|
|
|
// bytes into |dest|, set |bytes_read| to the number of bytes copied, and
|
|
|
|
// return true. To read the data at a later time set |bytes_read| to 0, return
|
|
|
|
// true and execute |callback| when the data is available. To indicate
|
|
|
|
// response completion set |bytes_read| to 0 and return false. To indicate
|
|
|
|
// failure set |bytes_read| to < 0 (e.g. net::ERR_FAILED) and return false.
|
|
|
|
virtual bool Read(net::IOBuffer* dest,
|
|
|
|
int length,
|
|
|
|
int* bytes_read,
|
|
|
|
ReadCallback callback) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Abstract class for handling intercepted resource responses. All methods are
|
|
|
|
// called on the IO thread unless otherwise indicated.
|
|
|
|
class ResourceResponse {
|
|
|
|
public:
|
|
|
|
virtual ~ResourceResponse() {}
|
|
|
|
|
|
|
|
// Callback for asynchronous continuation of Open(). If the InputStream is
|
|
|
|
// null the request will be canceled.
|
|
|
|
using OpenCallback = base::OnceCallback<void(std::unique_ptr<InputStream>)>;
|
|
|
|
|
|
|
|
// This method is called on a worker thread. Return true and execute
|
|
|
|
// |callback| to continue the request. Return false to cancel the request.
|
|
|
|
// |request| may be different from the request used to create the
|
|
|
|
// StreamReaderURLLoader if a redirect was followed.
|
2021-04-21 00:52:34 +02:00
|
|
|
virtual bool OpenInputStream(int32_t request_id,
|
2019-04-24 04:50:25 +02:00
|
|
|
const network::ResourceRequest& request,
|
|
|
|
OpenCallback callback) = 0;
|
|
|
|
|
|
|
|
// This method is called to populate the response headers.
|
|
|
|
using HeaderMap = std::multimap<std::string, std::string>;
|
2021-04-21 00:52:34 +02:00
|
|
|
virtual void GetResponseHeaders(int32_t request_id,
|
2019-04-24 04:50:25 +02:00
|
|
|
int* status_code,
|
|
|
|
std::string* reason_phrase,
|
|
|
|
std::string* mime_type,
|
|
|
|
std::string* charset,
|
|
|
|
int64_t* content_length,
|
|
|
|
HeaderMap* extra_headers) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Custom URLLoader implementation for loading network responses from stream.
|
|
|
|
// Methods are called on the IO thread unless otherwise indicated.
|
|
|
|
// Based on android_webview/browser/network_service/
|
|
|
|
// android_stream_reader_url_loader.h
|
|
|
|
class StreamReaderURLLoader : public network::mojom::URLLoader {
|
|
|
|
public:
|
|
|
|
// Delegate abstraction for obtaining input streams. All methods are called
|
|
|
|
// on the IO thread unless otherwise indicated.
|
|
|
|
class Delegate : public ResourceResponse {
|
|
|
|
public:
|
|
|
|
// This method is called if the result of calling OpenInputStream was null.
|
|
|
|
// The |restarted| parameter is set to true if the request was restarted
|
|
|
|
// with a new loader.
|
2021-04-21 00:52:34 +02:00
|
|
|
virtual void OnInputStreamOpenFailed(int32_t request_id,
|
2019-04-24 04:50:25 +02:00
|
|
|
bool* restarted) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
StreamReaderURLLoader(
|
2021-04-21 00:52:34 +02:00
|
|
|
int32_t request_id,
|
2019-04-24 04:50:25 +02:00
|
|
|
const network::ResourceRequest& request,
|
2021-03-04 23:36:57 +01:00
|
|
|
mojo::PendingRemote<network::mojom::URLLoaderClient> client,
|
|
|
|
mojo::PendingRemote<network::mojom::TrustedHeaderClient> header_client,
|
2019-04-24 04:50:25 +02:00
|
|
|
const net::MutableNetworkTrafficAnnotationTag& traffic_annotation,
|
2022-09-26 21:30:45 +02:00
|
|
|
absl::optional<mojo_base::BigBuffer> cached_metadata,
|
2019-04-24 04:50:25 +02:00
|
|
|
std::unique_ptr<Delegate> response_delegate);
|
2021-12-06 21:40:25 +01:00
|
|
|
|
|
|
|
StreamReaderURLLoader(const StreamReaderURLLoader&) = delete;
|
|
|
|
StreamReaderURLLoader& operator=(const StreamReaderURLLoader&) = delete;
|
|
|
|
|
2019-04-24 04:50:25 +02:00
|
|
|
~StreamReaderURLLoader() override;
|
|
|
|
|
|
|
|
void Start();
|
|
|
|
|
|
|
|
// network::mojom::URLLoader methods:
|
2020-06-09 19:48:00 +02:00
|
|
|
void FollowRedirect(
|
|
|
|
const std::vector<std::string>& removed_headers,
|
|
|
|
const net::HttpRequestHeaders& modified_headers,
|
|
|
|
const net::HttpRequestHeaders& modified_cors_exempt_headers,
|
2021-06-04 03:34:56 +02:00
|
|
|
const absl::optional<GURL>& new_url) override;
|
2019-04-24 04:50:25 +02:00
|
|
|
void SetPriority(net::RequestPriority priority,
|
|
|
|
int intra_priority_value) override;
|
|
|
|
void PauseReadingBodyFromNet() override;
|
|
|
|
void ResumeReadingBodyFromNet() override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void ContinueWithRequestHeaders(
|
|
|
|
int32_t result,
|
2021-06-04 03:34:56 +02:00
|
|
|
const absl::optional<net::HttpRequestHeaders>& headers);
|
2019-04-24 04:50:25 +02:00
|
|
|
void OnInputStreamOpened(std::unique_ptr<Delegate> returned_delegate,
|
|
|
|
std::unique_ptr<InputStream> input_stream);
|
|
|
|
|
|
|
|
void OnReaderSkipCompleted(int64_t bytes_skipped);
|
|
|
|
void HeadersComplete(int status_code, int64_t expected_content_length);
|
2020-03-04 01:29:39 +01:00
|
|
|
void ContinueWithResponseHeaders(
|
|
|
|
network::mojom::URLResponseHeadPtr pending_response,
|
|
|
|
int32_t result,
|
2021-06-04 03:34:56 +02:00
|
|
|
const absl::optional<std::string>& headers,
|
|
|
|
const absl::optional<GURL>& redirect_url);
|
2019-04-24 04:50:25 +02:00
|
|
|
|
|
|
|
void ReadMore();
|
|
|
|
void OnDataPipeWritable(MojoResult result);
|
|
|
|
void OnReaderReadCompleted(int bytes_read);
|
|
|
|
void RequestComplete(int status_code);
|
|
|
|
|
|
|
|
void CleanUp();
|
|
|
|
|
|
|
|
bool ParseRange(const net::HttpRequestHeaders& headers);
|
|
|
|
bool byte_range_valid() const;
|
|
|
|
|
2021-04-21 00:52:34 +02:00
|
|
|
const int32_t request_id_;
|
2019-04-24 04:50:25 +02:00
|
|
|
|
|
|
|
size_t header_length_ = 0;
|
|
|
|
int64_t total_bytes_read_ = 0;
|
|
|
|
|
|
|
|
net::HttpByteRange byte_range_;
|
|
|
|
network::ResourceRequest request_;
|
2021-03-04 23:36:57 +01:00
|
|
|
mojo::Remote<network::mojom::URLLoaderClient> client_;
|
|
|
|
mojo::Remote<network::mojom::TrustedHeaderClient> header_client_;
|
2019-04-24 04:50:25 +02:00
|
|
|
const net::MutableNetworkTrafficAnnotationTag traffic_annotation_;
|
2022-09-26 21:30:45 +02:00
|
|
|
absl::optional<mojo_base::BigBuffer> cached_metadata_;
|
2019-04-24 04:50:25 +02:00
|
|
|
std::unique_ptr<Delegate> response_delegate_;
|
|
|
|
scoped_refptr<InputStreamReader> input_stream_reader_;
|
|
|
|
|
|
|
|
mojo::ScopedDataPipeProducerHandle producer_handle_;
|
|
|
|
scoped_refptr<network::NetToMojoPendingBuffer> pending_buffer_;
|
|
|
|
mojo::SimpleWatcher writable_handle_watcher_;
|
|
|
|
base::ThreadChecker thread_checker_;
|
|
|
|
|
|
|
|
scoped_refptr<base::SequencedTaskRunner> stream_work_task_runner_;
|
|
|
|
|
2019-05-31 11:50:12 +02:00
|
|
|
base::OnceClosure open_cancel_callback_;
|
|
|
|
|
2019-04-24 04:50:25 +02:00
|
|
|
base::WeakPtrFactory<StreamReaderURLLoader> weak_factory_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace net_service
|
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_NET_SERVICE_STREAM_READER_URL_LOADER_H_
|