]> git.sesse.net Git - nageru/blob - cef_capture.h
Implement HTMLInput::execute_javascript_async().
[nageru] / cef_capture.h
1 #ifndef _CEF_CAPTURE_H
2 #define _CEF_CAPTURE_H 1
3
4 // CEFCapture represents a single CEF virtual capture card (usually, there would only
5 // be one globally), similar to FFmpegCapture. It owns a CefBrowser, which calls
6 // OnPaint() back every time it has a frame. Note that it runs asynchronously;
7 // there's no way to get frame-perfect sync.
8
9 #include <assert.h>
10 #include <stdint.h>
11
12 #include <condition_variable>
13 #include <functional>
14 #include <map>
15 #include <memory>
16 #include <mutex>
17 #include <set>
18 #include <string>
19 #include <thread>
20
21 #undef CHECK
22 #include <cef_client.h>
23 #include <cef_base.h>
24 #include <cef_render_handler.h>
25
26 #include <bmusb/bmusb.h>
27
28 class CefBrowser;
29 class CefRect;
30 class CEFCapture;
31
32 // A helper class for CEFCapture to proxy information to CEF, without becoming
33 // CEF-refcounted itself.
34 class NageruCEFClient : public CefClient, public CefRenderHandler
35 {
36 public:
37         NageruCEFClient(int width, int height, CEFCapture *parent)
38                 : width(width), height(height), parent(parent) {}
39
40         CefRefPtr<CefRenderHandler> GetRenderHandler() override
41         {
42                 return this;
43         }
44
45         void OnPaint(CefRefPtr<CefBrowser> browser, PaintElementType type, const RectList &dirtyRects, const void *buffer, int width, int height) override;
46
47         bool GetViewRect(CefRefPtr<CefBrowser> browser, CefRect &rect);
48
49 private:
50         int width, height;
51         CEFCapture *parent;
52
53         IMPLEMENT_REFCOUNTING(NageruCEFClient);
54 };
55
56 class CEFCapture : public bmusb::CaptureInterface
57 {
58 public:
59         CEFCapture(const std::string &url, unsigned width, unsigned height);
60         ~CEFCapture();
61
62         void set_card_index(int card_index)
63         {
64                 this->card_index = card_index;
65         }
66
67         int get_card_index() const
68         {
69                 return card_index;
70         }
71
72         void set_url(const std::string &url);
73         void reload();
74         void set_max_fps(int max_fps);
75         void execute_javascript_async(const std::string &js);
76
77         void OnPaint(const void *buffer, int width, int height);
78
79         // CaptureInterface.
80         void set_video_frame_allocator(bmusb::FrameAllocator *allocator) override
81         {
82                 video_frame_allocator = allocator;
83                 if (owned_video_frame_allocator.get() != allocator) {
84                         owned_video_frame_allocator.reset();
85                 }
86         }
87
88         bmusb::FrameAllocator *get_video_frame_allocator() override
89         {
90                 return video_frame_allocator;
91         }
92
93         // Does not take ownership.
94         void set_audio_frame_allocator(bmusb::FrameAllocator *allocator) override
95         {
96         }
97
98         bmusb::FrameAllocator *get_audio_frame_allocator() override
99         {
100                 return nullptr;
101         }
102
103         void set_frame_callback(bmusb::frame_callback_t callback) override
104         {
105                 frame_callback = callback;
106         }
107
108         void set_dequeue_thread_callbacks(std::function<void()> init, std::function<void()> cleanup) override
109         {
110                 dequeue_init_callback = init;
111                 dequeue_cleanup_callback = cleanup;
112                 has_dequeue_callbacks = true;
113         }
114
115         std::string get_description() const override
116         {
117                 return description;
118         }
119
120         void configure_card() override;
121         void start_bm_capture() override;
122         void stop_dequeue_thread() override;
123         bool get_disconnected() const override { return false; }
124
125         std::set<bmusb::PixelFormat> get_available_pixel_formats() const override
126         {
127                 return std::set<bmusb::PixelFormat>{ bmusb::PixelFormat_8BitBGRA };
128         }
129
130         void set_pixel_format(bmusb::PixelFormat pixel_format) override
131         {
132                 assert(pixel_format == bmusb::PixelFormat_8BitBGRA);
133         }
134
135         bmusb::PixelFormat get_current_pixel_format() const
136         {
137                 return bmusb::PixelFormat_8BitBGRA;
138         }
139
140         std::map<uint32_t, bmusb::VideoMode> get_available_video_modes() const override;
141         void set_video_mode(uint32_t video_mode_id) override;
142         uint32_t get_current_video_mode() const override { return 0; }
143
144         std::map<uint32_t, std::string> get_available_video_inputs() const override;
145         void set_video_input(uint32_t video_input_id) override;
146         uint32_t get_current_video_input() const override { return 0; }
147
148         std::map<uint32_t, std::string> get_available_audio_inputs() const override;
149         void set_audio_input(uint32_t audio_input_id) override;
150         uint32_t get_current_audio_input() const override { return 0; }
151
152 private:
153         void post_to_cef_ui_thread(std::function<void()> &&func);
154
155         CefRefPtr<NageruCEFClient> cef_client;
156         unsigned width, height;
157         int card_index = -1;
158
159         bool has_dequeue_callbacks = false;
160         std::function<void()> dequeue_init_callback = nullptr;
161         std::function<void()> dequeue_cleanup_callback = nullptr;
162
163         bmusb::FrameAllocator *video_frame_allocator = nullptr;
164         std::unique_ptr<bmusb::FrameAllocator> owned_video_frame_allocator;
165         bmusb::frame_callback_t frame_callback = nullptr;
166
167         std::string description, start_url;
168         std::atomic<int> max_fps{60};
169
170         std::mutex browser_mutex;
171         CefRefPtr<CefBrowser> browser;  // Under <browser_mutex>.
172
173         // Tasks waiting for <browser> to get ready. Under <browser_mutex>.
174         std::vector<std::function<void()>> deferred_tasks;
175
176         int timecode = 0;
177 };
178
179 #endif  // !defined(_CEF_CAPTURE_H)