123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- // Copyright (c) 2020 Samuel Maddock <[email protected]>.
- // Use of this source code is governed by the MIT license that can be
- // found in the LICENSE file.
- #ifndef ELECTRON_SHELL_BROWSER_API_ELECTRON_API_WEB_FRAME_MAIN_H_
- #define ELECTRON_SHELL_BROWSER_API_ELECTRON_API_WEB_FRAME_MAIN_H_
- #include <optional>
- #include <string>
- #include <vector>
- #include "base/memory/weak_ptr.h"
- #include "base/process/process.h"
- #include "content/public/browser/frame_tree_node_id.h"
- #include "content/public/browser/global_routing_id.h"
- #include "gin/wrappable.h"
- #include "mojo/public/cpp/bindings/pending_receiver.h"
- #include "mojo/public/cpp/bindings/remote.h"
- #include "shell/browser/event_emitter_mixin.h"
- #include "shell/common/api/api.mojom.h"
- #include "shell/common/gin_helper/constructible.h"
- #include "shell/common/gin_helper/pinnable.h"
- #include "third_party/blink/public/mojom/page/page_visibility_state.mojom-forward.h"
- class GURL;
- namespace content {
- class RenderFrameHost;
- }
- namespace gin {
- class Arguments;
- template <typename T>
- class Handle;
- } // namespace gin
- namespace gin_helper {
- template <typename T>
- class Promise;
- } // namespace gin_helper
- namespace electron::api {
- class WebContents;
- // Bindings for accessing frames from the main process.
- class WebFrameMain final : public gin::Wrappable<WebFrameMain>,
- public gin_helper::EventEmitterMixin<WebFrameMain>,
- public gin_helper::Pinnable<WebFrameMain>,
- public gin_helper::Constructible<WebFrameMain> {
- public:
- // Create a new WebFrameMain and return the V8 wrapper of it.
- static gin::Handle<WebFrameMain> New(v8::Isolate* isolate);
- static gin::Handle<WebFrameMain> From(
- v8::Isolate* isolate,
- content::RenderFrameHost* render_frame_host);
- static WebFrameMain* FromFrameTreeNodeId(
- content::FrameTreeNodeId frame_tree_node_id);
- static WebFrameMain* FromFrameToken(
- content::GlobalRenderFrameHostToken frame_token);
- static WebFrameMain* FromRenderFrameHost(
- content::RenderFrameHost* render_frame_host);
- // gin_helper::Constructible
- static void FillObjectTemplate(v8::Isolate*, v8::Local<v8::ObjectTemplate>);
- static const char* GetClassName() { return "WebFrameMain"; }
- // gin::Wrappable
- static gin::WrapperInfo kWrapperInfo;
- const char* GetTypeName() override;
- content::RenderFrameHost* render_frame_host() const;
- // disable copy
- WebFrameMain(const WebFrameMain&) = delete;
- WebFrameMain& operator=(const WebFrameMain&) = delete;
- protected:
- explicit WebFrameMain(content::RenderFrameHost* render_frame);
- ~WebFrameMain() override;
- private:
- friend class WebContents;
- // Called when FrameTreeNode is deleted.
- void Destroyed();
- // Mark RenderFrameHost as disposed and to no longer access it. This can
- // happen when the WebFrameMain v8-forward.handle is GC'd or when a
- // FrameTreeNode is removed.
- void MarkRenderFrameDisposed();
- // Swap out the internal RFH when cross-origin navigation occurs.
- void UpdateRenderFrameHost(content::RenderFrameHost* rfh);
- const mojo::Remote<mojom::ElectronRenderer>& GetRendererApi();
- void MaybeSetupMojoConnection();
- void TeardownMojoConnection();
- void OnRendererConnectionError();
- [[nodiscard]] bool HasRenderFrame() const;
- // Throws a JS error if HasRenderFrame() is false.
- // WebFrameMain can outlive its RenderFrameHost pointer,
- // so we need to check whether its been disposed of
- // prior to accessing it.
- bool CheckRenderFrame() const;
- v8::Local<v8::Promise> ExecuteJavaScript(gin::Arguments* args,
- const std::u16string& code);
- bool Reload();
- bool IsDestroyed() const;
- void Send(v8::Isolate* isolate,
- bool internal,
- const std::string& channel,
- v8::Local<v8::Value> args);
- void PostMessage(v8::Isolate* isolate,
- const std::string& channel,
- v8::Local<v8::Value> message_value,
- std::optional<v8::Local<v8::Value>> transfer);
- bool Detached() const;
- content::FrameTreeNodeId FrameTreeNodeID() const;
- std::string Name() const;
- base::ProcessId OSProcessID() const;
- int32_t ProcessID() const;
- int RoutingID() const;
- GURL URL() const;
- std::string Origin() const;
- blink::mojom::PageVisibilityState VisibilityState() const;
- content::RenderFrameHost* Top() const;
- content::RenderFrameHost* Parent() const;
- std::vector<content::RenderFrameHost*> Frames() const;
- std::vector<content::RenderFrameHost*> FramesInSubtree() const;
- const char* LifecycleStateForTesting() const;
- v8::Local<v8::Promise> CollectDocumentJSCallStack(gin::Arguments* args);
- void CollectedJavaScriptCallStack(
- gin_helper::Promise<base::Value> promise,
- const std::string& untrusted_javascript_call_stack,
- const std::optional<blink::LocalFrameToken>& remote_frame_token);
- void DOMContentLoaded();
- mojo::Remote<mojom::ElectronRenderer> renderer_api_;
- mojo::PendingReceiver<mojom::ElectronRenderer> pending_receiver_;
- content::FrameTreeNodeId frame_tree_node_id_;
- content::GlobalRenderFrameHostToken frame_token_;
- // Whether the RenderFrameHost has been removed and that it should no longer
- // be accessed.
- bool render_frame_disposed_ = false;
- // Whether the content::RenderFrameHost is detached from the frame
- // tree. This can occur while it's running unload handlers.
- bool render_frame_detached_;
- base::WeakPtrFactory<WebFrameMain> weak_factory_{this};
- };
- } // namespace electron::api
- #endif // ELECTRON_SHELL_BROWSER_API_ELECTRON_API_WEB_FRAME_MAIN_H_
|