2016-01-22 04:57:25 +00:00
|
|
|
// Copyright (c) 2016 GitHub, Inc.
|
2016-01-21 18:22:23 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_API_ELECTRON_API_DEBUGGER_H_
|
|
|
|
#define ELECTRON_SHELL_BROWSER_API_ELECTRON_API_DEBUGGER_H_
|
2016-01-21 18:22:23 +00:00
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
2023-02-03 11:43:42 +00:00
|
|
|
#include "base/functional/callback.h"
|
2023-05-11 20:07:39 +00:00
|
|
|
#include "base/memory/raw_ptr.h"
|
2016-01-21 18:22:23 +00:00
|
|
|
#include "base/values.h"
|
|
|
|
#include "content/public/browser/devtools_agent_host_client.h"
|
2018-09-06 14:44:22 +00:00
|
|
|
#include "content/public/browser/web_contents_observer.h"
|
2020-03-18 19:57:08 +00:00
|
|
|
#include "gin/arguments.h"
|
2019-10-25 13:03:28 +00:00
|
|
|
#include "gin/handle.h"
|
2020-03-18 19:57:08 +00:00
|
|
|
#include "gin/wrappable.h"
|
|
|
|
#include "shell/browser/event_emitter_mixin.h"
|
2019-11-01 06:10:32 +00:00
|
|
|
#include "shell/common/gin_helper/promise.h"
|
2016-01-21 18:22:23 +00:00
|
|
|
|
|
|
|
namespace content {
|
|
|
|
class DevToolsAgentHost;
|
|
|
|
class WebContents;
|
2018-04-18 01:44:10 +00:00
|
|
|
} // namespace content
|
2016-01-21 18:22:23 +00:00
|
|
|
|
2022-06-29 19:55:47 +00:00
|
|
|
namespace electron::api {
|
2016-01-21 18:22:23 +00:00
|
|
|
|
2020-03-18 19:57:08 +00:00
|
|
|
class Debugger : public gin::Wrappable<Debugger>,
|
|
|
|
public gin_helper::EventEmitterMixin<Debugger>,
|
2018-09-06 14:44:22 +00:00
|
|
|
public content::DevToolsAgentHostClient,
|
|
|
|
public content::WebContentsObserver {
|
2016-01-21 18:22:23 +00:00
|
|
|
public:
|
2019-10-25 13:03:28 +00:00
|
|
|
static gin::Handle<Debugger> Create(v8::Isolate* isolate,
|
|
|
|
content::WebContents* web_contents);
|
2016-01-21 18:22:23 +00:00
|
|
|
|
2020-03-18 19:57:08 +00:00
|
|
|
// gin::Wrappable
|
|
|
|
static gin::WrapperInfo kWrapperInfo;
|
|
|
|
gin::ObjectTemplateBuilder GetObjectTemplateBuilder(
|
|
|
|
v8::Isolate* isolate) override;
|
|
|
|
const char* GetTypeName() override;
|
2016-01-21 18:22:23 +00:00
|
|
|
|
2021-11-03 11:41:45 +00:00
|
|
|
// disable copy
|
|
|
|
Debugger(const Debugger&) = delete;
|
|
|
|
Debugger& operator=(const Debugger&) = delete;
|
|
|
|
|
2016-01-21 18:22:23 +00:00
|
|
|
protected:
|
2016-04-25 01:17:54 +00:00
|
|
|
Debugger(v8::Isolate* isolate, content::WebContents* web_contents);
|
|
|
|
~Debugger() override;
|
2016-01-21 18:22:23 +00:00
|
|
|
|
|
|
|
// content::DevToolsAgentHostClient:
|
2018-04-11 11:43:06 +00:00
|
|
|
void AgentHostClosed(content::DevToolsAgentHost* agent_host) override;
|
2016-01-21 18:22:23 +00:00
|
|
|
void DispatchProtocolMessage(content::DevToolsAgentHost* agent_host,
|
2020-01-17 18:41:52 +00:00
|
|
|
base::span<const uint8_t> message) override;
|
2016-01-21 18:22:23 +00:00
|
|
|
|
2018-09-06 14:44:22 +00:00
|
|
|
// content::WebContentsObserver:
|
|
|
|
void RenderFrameHostChanged(content::RenderFrameHost* old_rfh,
|
|
|
|
content::RenderFrameHost* new_rfh) override;
|
|
|
|
|
2016-01-21 18:22:23 +00:00
|
|
|
private:
|
2019-08-23 00:03:28 +00:00
|
|
|
using PendingRequestMap =
|
2022-07-05 15:25:18 +00:00
|
|
|
std::map<int, gin_helper::Promise<base::Value::Dict>>;
|
2016-01-21 18:22:23 +00:00
|
|
|
|
2020-03-18 19:57:08 +00:00
|
|
|
void Attach(gin::Arguments* args);
|
2016-01-22 08:47:23 +00:00
|
|
|
bool IsAttached();
|
2016-01-21 18:22:23 +00:00
|
|
|
void Detach();
|
2020-03-18 19:57:08 +00:00
|
|
|
v8::Local<v8::Promise> SendCommand(gin::Arguments* args);
|
2018-09-06 14:44:22 +00:00
|
|
|
void ClearPendingRequests();
|
2016-01-21 18:22:23 +00:00
|
|
|
|
2023-05-11 20:07:39 +00:00
|
|
|
raw_ptr<content::WebContents> web_contents_; // Weak Reference.
|
2016-01-21 18:22:23 +00:00
|
|
|
scoped_refptr<content::DevToolsAgentHost> agent_host_;
|
|
|
|
|
|
|
|
PendingRequestMap pending_requests_;
|
2018-05-21 22:18:38 +00:00
|
|
|
int previous_request_id_ = 0;
|
2016-01-21 18:22:23 +00:00
|
|
|
};
|
|
|
|
|
2022-06-29 19:55:47 +00:00
|
|
|
} // namespace electron::api
|
2016-01-21 18:22:23 +00:00
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_API_ELECTRON_API_DEBUGGER_H_
|