blob: c00b3033f612bcf8c0aeac900d208189267abeca [file] [log] [blame]
// Copyright 2016 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 EXTENSIONS_RENDERER_BINDINGS_API_REQUEST_HANDLER_H_
#define EXTENSIONS_RENDERER_BINDINGS_API_REQUEST_HANDLER_H_
#include <map>
#include <memory>
#include <set>
#include "base/callback.h"
#include "base/macros.h"
#include "base/values.h"
#include "extensions/renderer/bindings/api_binding_types.h"
#include "extensions/renderer/bindings/api_last_error.h"
#include "extensions/renderer/bindings/interaction_provider.h"
#include "third_party/abseil-cpp/absl/types/optional.h"
#include "v8/include/v8.h"
namespace extensions {
class APIResponseValidator;
class ExceptionHandler;
// A wrapper around a map for extension API calls. Contains all pending requests
// and the associated context and callback. Designed to be used on a single
// thread, but amongst multiple contexts.
class APIRequestHandler {
public:
// TODO(devlin): We may want to coalesce this with the
// ExtensionHostMsg_Request_Params IPC struct.
struct Request {
Request();
~Request();
int request_id = -1;
std::string method_name;
bool has_async_response_handler = false;
bool has_user_gesture = false;
std::unique_ptr<base::Value> arguments_list;
private:
DISALLOW_COPY_AND_ASSIGN(Request);
};
using SendRequestMethod =
base::RepeatingCallback<void(std::unique_ptr<Request>,
v8::Local<v8::Context>)>;
APIRequestHandler(SendRequestMethod send_request,
APILastError last_error,
ExceptionHandler* exception_handler,
const InteractionProvider* interaction_provider);
~APIRequestHandler();
// Begins the process of processing the request. Returns the identifier of the
// pending request, or -1 if no pending request was added (which can happen if
// no callback was specified).
int StartRequest(v8::Local<v8::Context> context,
const std::string& method,
std::unique_ptr<base::Value> arguments_list,
v8::Local<v8::Function> callback,
v8::Local<v8::Function> custom_callback);
// Starts a request and returns a promise, which will be resolved or rejected
// when the request is completed.
std::pair<int, v8::Local<v8::Promise>> StartPromiseBasedRequest(
v8::Local<v8::Context> context,
const std::string& method,
std::unique_ptr<base::Value> arguments_list,
v8::Local<v8::Function> custom_callback);
// Adds a pending request for the request handler to manage (and complete via
// CompleteRequest). This is used by renderer-side implementations that
// shouldn't be dispatched to the browser in the normal flow, but means other
// classes don't have to worry about context invalidation.
// Note: Unlike StartRequest(), this will not track user gesture state.
int AddPendingRequest(v8::Local<v8::Context> context,
v8::Local<v8::Function> callback);
// Responds to the request with the given |request_id|, calling the callback
// with the given |response| arguments.
// Invalid ids are ignored.
// Warning: This can run arbitrary JS code, so the |context| may be
// invalidated after this!
void CompleteRequest(int request_id,
const base::Value& response_list,
const std::string& error);
void CompleteRequest(int request_id,
const std::vector<v8::Local<v8::Value>>& response,
const std::string& error);
// Invalidates any requests that are associated with |context|.
void InvalidateContext(v8::Local<v8::Context> context);
void SetResponseValidator(std::unique_ptr<APIResponseValidator> validator);
APILastError* last_error() { return &last_error_; }
int last_sent_request_id() const { return last_sent_request_id_; }
bool has_response_validator_for_testing() const {
return response_validator_.get() != nullptr;
}
std::set<int> GetPendingRequestIdsForTesting() const;
private:
class ArgumentAdapter;
class AsyncResultHandler;
struct PendingRequest {
PendingRequest(
v8::Isolate* isolate,
v8::Local<v8::Context> context,
const std::string& method_name,
std::unique_ptr<AsyncResultHandler> async_handler,
std::unique_ptr<InteractionProvider::Token> user_gesture_token);
~PendingRequest();
PendingRequest(PendingRequest&&);
PendingRequest& operator=(PendingRequest&&);
v8::Isolate* isolate;
v8::Global<v8::Context> context;
std::string method_name;
std::unique_ptr<AsyncResultHandler> async_handler;
// Note: We can't use absl::optional here for derived Token instances.
std::unique_ptr<InteractionProvider::Token> user_gesture_token;
};
// Returns the next request ID to be used.
int GetNextRequestId();
// Common implementation for starting a request.
void StartRequestImpl(v8::Local<v8::Context> context,
int request_id,
const std::string& method,
std::unique_ptr<base::Value> arguments_list,
std::unique_ptr<AsyncResultHandler> async_handler);
// Common implementation for completing a request.
void CompleteRequestImpl(int request_id,
const ArgumentAdapter& arguments,
const std::string& error);
// The next available request identifier.
int next_request_id_ = 0;
// The id of the last request we sent to the browser. This can be used as a
// flag for whether or not a request was sent (if the last_sent_request_id_
// changes).
int last_sent_request_id_ = -1;
// A map of all pending requests.
std::map<int, PendingRequest> pending_requests_;
SendRequestMethod send_request_;
APILastError last_error_;
// The exception handler for the bindings system; guaranteed to be valid
// during this object's lifetime.
ExceptionHandler* const exception_handler_;
// The response validator used to check the responses for resolved requests.
// Null if response validation is disabled.
std::unique_ptr<APIResponseValidator> response_validator_;
// Outlives |this|.
const InteractionProvider* const interaction_provider_;
DISALLOW_COPY_AND_ASSIGN(APIRequestHandler);
};
} // namespace extensions
#endif // EXTENSIONS_RENDERER_BINDINGS_API_REQUEST_HANDLER_H_