2020-09-28 16:22:03 +00:00
|
|
|
// Copyright (c) 2020 Microsoft, Inc.
|
|
|
|
// 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_SERIAL_ELECTRON_SERIAL_DELEGATE_H_
|
|
|
|
#define ELECTRON_SHELL_BROWSER_SERIAL_ELECTRON_SERIAL_DELEGATE_H_
|
2020-09-28 16:22:03 +00:00
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <unordered_map>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "base/memory/weak_ptr.h"
|
2022-10-17 14:22:24 +00:00
|
|
|
#include "base/scoped_observation.h"
|
2020-09-28 16:22:03 +00:00
|
|
|
#include "content/public/browser/serial_delegate.h"
|
2022-07-25 14:50:19 +00:00
|
|
|
#include "shell/browser/serial/serial_chooser_context.h"
|
2020-09-28 16:22:03 +00:00
|
|
|
#include "shell/browser/serial/serial_chooser_controller.h"
|
|
|
|
|
|
|
|
namespace electron {
|
|
|
|
|
|
|
|
class SerialChooserController;
|
|
|
|
|
2022-07-25 14:50:19 +00:00
|
|
|
class ElectronSerialDelegate : public content::SerialDelegate,
|
|
|
|
public SerialChooserContext::PortObserver {
|
2020-09-28 16:22:03 +00:00
|
|
|
public:
|
|
|
|
ElectronSerialDelegate();
|
|
|
|
~ElectronSerialDelegate() override;
|
|
|
|
|
2021-11-03 11:41:45 +00:00
|
|
|
// disable copy
|
|
|
|
ElectronSerialDelegate(const ElectronSerialDelegate&) = delete;
|
|
|
|
ElectronSerialDelegate& operator=(const ElectronSerialDelegate&) = delete;
|
|
|
|
|
2020-09-28 16:22:03 +00:00
|
|
|
std::unique_ptr<content::SerialChooser> RunChooser(
|
|
|
|
content::RenderFrameHost* frame,
|
|
|
|
std::vector<blink::mojom::SerialPortFilterPtr> filters,
|
|
|
|
content::SerialChooser::Callback callback) override;
|
|
|
|
bool CanRequestPortPermission(content::RenderFrameHost* frame) override;
|
|
|
|
bool HasPortPermission(content::RenderFrameHost* frame,
|
|
|
|
const device::mojom::SerialPortInfo& port) override;
|
2022-05-17 16:48:40 +00:00
|
|
|
void RevokePortPermissionWebInitiated(
|
|
|
|
content::RenderFrameHost* frame,
|
|
|
|
const base::UnguessableToken& token) override;
|
|
|
|
const device::mojom::SerialPortInfo* GetPortInfo(
|
|
|
|
content::RenderFrameHost* frame,
|
|
|
|
const base::UnguessableToken& token) override;
|
2022-10-18 09:22:32 +00:00
|
|
|
device::mojom::SerialPortManager* GetPortManager(
|
|
|
|
content::RenderFrameHost* frame) override;
|
|
|
|
void AddObserver(content::RenderFrameHost* frame,
|
|
|
|
Observer* observer) override;
|
|
|
|
void RemoveObserver(content::RenderFrameHost* frame,
|
|
|
|
Observer* observer) override;
|
2020-09-28 16:22:03 +00:00
|
|
|
|
|
|
|
void DeleteControllerForFrame(content::RenderFrameHost* render_frame_host);
|
|
|
|
|
2022-07-25 14:50:19 +00:00
|
|
|
// SerialChooserContext::PortObserver:
|
|
|
|
void OnPortAdded(const device::mojom::SerialPortInfo& port) override;
|
|
|
|
void OnPortRemoved(const device::mojom::SerialPortInfo& port) override;
|
|
|
|
void OnPortManagerConnectionError() override;
|
|
|
|
void OnPermissionRevoked(const url::Origin& origin) override {}
|
|
|
|
void OnSerialChooserContextShutdown() override;
|
|
|
|
|
2020-09-28 16:22:03 +00:00
|
|
|
private:
|
|
|
|
SerialChooserController* ControllerForFrame(
|
|
|
|
content::RenderFrameHost* render_frame_host);
|
|
|
|
SerialChooserController* AddControllerForFrame(
|
|
|
|
content::RenderFrameHost* render_frame_host,
|
|
|
|
std::vector<blink::mojom::SerialPortFilterPtr> filters,
|
|
|
|
content::SerialChooser::Callback callback);
|
|
|
|
|
2022-07-25 14:50:19 +00:00
|
|
|
base::ScopedObservation<SerialChooserContext,
|
|
|
|
SerialChooserContext::PortObserver,
|
|
|
|
&SerialChooserContext::AddPortObserver,
|
|
|
|
&SerialChooserContext::RemovePortObserver>
|
|
|
|
port_observation_{this};
|
|
|
|
base::ObserverList<content::SerialDelegate::Observer> observer_list_;
|
|
|
|
|
2020-09-28 16:22:03 +00:00
|
|
|
std::unordered_map<content::RenderFrameHost*,
|
|
|
|
std::unique_ptr<SerialChooserController>>
|
|
|
|
controller_map_;
|
|
|
|
|
|
|
|
base::WeakPtrFactory<ElectronSerialDelegate> weak_factory_{this};
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace electron
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_SERIAL_ELECTRON_SERIAL_DELEGATE_H_
|