]> git.sesse.net Git - casparcg/blob - modules/flash/producer/flash_producer.cpp
git-svn-id: https://casparcg.svn.sourceforge.net/svnroot/casparcg/server/branches...
[casparcg] / modules / flash / producer / flash_producer.cpp
1 /*\r
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>\r
3 *\r
4 * This file is part of CasparCG (www.casparcg.com).\r
5 *\r
6 * CasparCG is free software: you can redistribute it and/or modify\r
7 * it under the terms of the GNU General Public License as published by\r
8 * the Free Software Foundation, either version 3 of the License, or\r
9 * (at your option) any later version.\r
10 *\r
11 * CasparCG is distributed in the hope that it will be useful,\r
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14 * GNU General Public License for more details.\r
15 *\r
16 * You should have received a copy of the GNU General Public License\r
17 * along with CasparCG. If not, see <http://www.gnu.org/licenses/>.\r
18 *\r
19 * Author: Robert Nagy, ronag89@gmail.com\r
20 */\r
21 \r
22 #include "../stdafx.h"\r
23 \r
24 #if defined(_MSC_VER)\r
25 #pragma warning (disable : 4146)\r
26 #pragma warning (disable : 4244)\r
27 #endif\r
28 \r
29 #include "flash_producer.h"\r
30 #include "FlashAxContainer.h"\r
31 \r
32 #include <core/video_format.h>\r
33 \r
34 #include <core/frame/draw_frame.h>\r
35 #include <core/frame/frame_factory.h>\r
36 #include <core/frame/pixel_format.h>\r
37 #include <core/frame/write_frame.h>\r
38 \r
39 #include <common/env.h>\r
40 #include <common/concurrency/executor.h>\r
41 #include <common/concurrency/lock.h>\r
42 #include <common/diagnostics/graph.h>\r
43 #include <common/prec_timer.h>\r
44 \r
45 #include <boost/filesystem.hpp>\r
46 #include <boost/property_tree/ptree.hpp>\r
47 #include <boost/thread.hpp>\r
48 #include <boost/timer.hpp>\r
49 #include <boost/algorithm/string.hpp>\r
50 \r
51 #include <tbb/spin_mutex.h>\r
52 \r
53 #include <asmlib.h>\r
54 \r
55 #include <functional>\r
56 \r
57 namespace caspar { namespace flash {\r
58                 \r
59 class bitmap\r
60 {\r
61 public:\r
62         bitmap(int width, int height)\r
63                 : bmp_data_(nullptr)\r
64                 , hdc_(CreateCompatibleDC(0), DeleteDC)\r
65         {       \r
66                 BITMAPINFO info;\r
67                 memset(&info, 0, sizeof(BITMAPINFO));\r
68                 info.bmiHeader.biBitCount = 32;\r
69                 info.bmiHeader.biCompression = BI_RGB;\r
70                 info.bmiHeader.biHeight = static_cast<LONG>(-height);\r
71                 info.bmiHeader.biPlanes = 1;\r
72                 info.bmiHeader.biSize = sizeof(BITMAPINFO);\r
73                 info.bmiHeader.biWidth = static_cast<LONG>(width);\r
74 \r
75                 bmp_.reset(CreateDIBSection(static_cast<HDC>(hdc_.get()), &info, DIB_RGB_COLORS, reinterpret_cast<void**>(&bmp_data_), 0, 0), DeleteObject);\r
76                 SelectObject(static_cast<HDC>(hdc_.get()), bmp_.get()); \r
77 \r
78                 if(!bmp_data_)\r
79                         BOOST_THROW_EXCEPTION(std::bad_alloc());\r
80         }\r
81 \r
82         operator HDC() {return static_cast<HDC>(hdc_.get());}\r
83 \r
84         BYTE* data() { return bmp_data_;}\r
85         const BYTE* data() const { return bmp_data_;}\r
86 \r
87 private:\r
88         BYTE* bmp_data_;        \r
89         std::shared_ptr<void> hdc_;\r
90         std::shared_ptr<void> bmp_;\r
91 };\r
92 \r
93 struct template_host\r
94 {\r
95         std::wstring  video_mode;\r
96         std::wstring  filename;\r
97         int                       width;\r
98         int                       height;\r
99 };\r
100 \r
101 template_host get_template_host(const core::video_format_desc& desc)\r
102 {\r
103         try\r
104         {\r
105                 std::vector<template_host> template_hosts;\r
106                 BOOST_FOREACH(auto& xml_mapping, env::properties().get_child(L"configuration.template-hosts"))\r
107                 {\r
108                         try\r
109                         {\r
110                                 template_host template_host;\r
111                                 template_host.video_mode                = xml_mapping.second.get(L"video-mode", L"");\r
112                                 template_host.filename                  = xml_mapping.second.get(L"filename",   L"cg.fth");\r
113                                 template_host.width                             = xml_mapping.second.get(L"width",              desc.width);\r
114                                 template_host.height                    = xml_mapping.second.get(L"height",             desc.height);\r
115                                 template_hosts.push_back(template_host);\r
116                         }\r
117                         catch(...){}\r
118                 }\r
119 \r
120                 auto template_host_it = boost::find_if(template_hosts, [&](template_host template_host){return template_host.video_mode == desc.name;});\r
121                 if(template_host_it == template_hosts.end())\r
122                         template_host_it = boost::find_if(template_hosts, [&](template_host template_host){return template_host.video_mode == L"";});\r
123 \r
124                 if(template_host_it != template_hosts.end())\r
125                         return *template_host_it;\r
126         }\r
127         catch(...){}\r
128                 \r
129         template_host template_host;\r
130         template_host.filename = L"cg.fth";\r
131 \r
132         for(auto it = boost::filesystem::directory_iterator(env::template_folder()); it != boost::filesystem::directory_iterator(); ++it)\r
133         {\r
134                 if(boost::iequals(it->path().extension().wstring(), L"." + desc.name))\r
135                 {\r
136                         template_host.filename = it->path().filename().wstring();\r
137                         break;\r
138                 }\r
139         }\r
140 \r
141         template_host.width =  desc.square_width;\r
142         template_host.height = desc.square_height;\r
143         return template_host;\r
144 }\r
145 \r
146 class flash_renderer\r
147 {       \r
148         struct com_init\r
149         {\r
150                 HRESULT result_;\r
151 \r
152                 com_init()\r
153                         : result_(CoInitialize(nullptr))\r
154                 {\r
155                         if(FAILED(result_))\r
156                                 BOOST_THROW_EXCEPTION(caspar_exception() << msg_info("Failed to initialize com-context for flash-player"));\r
157                 }\r
158 \r
159                 ~com_init()\r
160                 {\r
161                         if(SUCCEEDED(result_))\r
162                                 ::CoUninitialize();\r
163                 }\r
164         } com_init_;\r
165 \r
166         const std::wstring filename_;\r
167 \r
168         const std::shared_ptr<core::frame_factory> frame_factory_;\r
169         \r
170         CComObject<caspar::flash::FlashAxContainer>* ax_;\r
171         spl::shared_ptr<core::draw_frame> head_;\r
172         bitmap bmp_;\r
173         \r
174         spl::shared_ptr<diagnostics::graph> graph_;\r
175         boost::timer frame_timer_;\r
176         boost::timer tick_timer_;\r
177 \r
178         prec_timer timer_;\r
179 \r
180         const int width_;\r
181         const int height_;\r
182         \r
183 public:\r
184         flash_renderer(const spl::shared_ptr<diagnostics::graph>& graph, const std::shared_ptr<core::frame_factory>& frame_factory, const std::wstring& filename, int width, int height) \r
185                 : graph_(graph)\r
186                 , filename_(filename)\r
187                 , frame_factory_(frame_factory)\r
188                 , ax_(nullptr)\r
189                 , head_(core::draw_frame::empty())\r
190                 , bmp_(width, height)\r
191                 , width_(width)\r
192                 , height_(height)\r
193         {               \r
194                 graph_->set_color("frame-time", diagnostics::color(0.1f, 1.0f, 0.1f));\r
195                 graph_->set_color("tick-time", diagnostics::color(0.0f, 0.6f, 0.9f));\r
196                 graph_->set_color("param", diagnostics::color(1.0f, 0.5f, 0.0f));       \r
197                 graph_->set_color("skip-sync", diagnostics::color(0.8f, 0.3f, 0.2f));                   \r
198                 \r
199                 if(FAILED(CComObject<caspar::flash::FlashAxContainer>::CreateInstance(&ax_)))\r
200                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(print() + L" Failed to create FlashAxContainer"));\r
201                 \r
202                 ax_->set_print([this]{return print();});\r
203 \r
204                 if(FAILED(ax_->CreateAxControl()))\r
205                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(print() + L" Failed to Create FlashAxControl"));\r
206                 \r
207                 CComPtr<IShockwaveFlash> spFlash;\r
208                 if(FAILED(ax_->QueryControl(&spFlash)))\r
209                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(print() + L" Failed to Query FlashAxControl"));\r
210                                                                                                 \r
211                 if(FAILED(spFlash->put_Playing(true)) )\r
212                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(print() + L" Failed to start playing Flash"));\r
213 \r
214                 if(FAILED(spFlash->put_Movie(CComBSTR(filename.c_str()))))\r
215                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(print() + L" Failed to Load Template Host"));\r
216                                                                                 \r
217                 if(FAILED(spFlash->put_ScaleMode(2)))  //Exact fit. Scale without respect to the aspect ratio.\r
218                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(print() + L" Failed to Set Scale Mode"));\r
219                                                 \r
220                 ax_->SetSize(width_, height_);          \r
221 \r
222                 tick(false);\r
223                 render();\r
224 \r
225                 CASPAR_LOG(info) << print() << L" Initialized.";\r
226         }\r
227 \r
228         ~flash_renderer()\r
229         {               \r
230                 if(ax_)\r
231                 {\r
232                         ax_->DestroyAxControl();\r
233                         ax_->Release();\r
234                 }\r
235                 graph_->set_value("tick-time", 0.0f);\r
236                 graph_->set_value("frame-time", 0.0f);\r
237                 CASPAR_LOG(info) << print() << L" Uninitialized.";\r
238         }\r
239         \r
240         std::wstring call(const std::wstring& param)\r
241         {               \r
242                 std::wstring result;\r
243 \r
244                 CASPAR_LOG(trace) << print() << " Call: " << param;\r
245 \r
246                 if(!ax_->FlashCall(param, result))\r
247                         CASPAR_LOG(warning) << print() << L" Flash call failed:" << param;//BOOST_THROW_EXCEPTION(invalid_operation() << msg_info("Flash function call failed.") << arg_name_info("param") << arg_value_info(narrow(param)));\r
248                 graph_->set_tag("param");\r
249 \r
250                 return result;\r
251         }\r
252 \r
253         void tick(bool sync)\r
254         {               \r
255                 const float frame_time = 1.0f/ax_->GetFPS();\r
256 \r
257                 graph_->set_value("tick-time", static_cast<float>(tick_timer_.elapsed()/frame_time)*0.5f);\r
258                 tick_timer_.restart();\r
259                 \r
260                 if(sync)                        \r
261                         timer_.tick(frame_time); // This will block the thread.\r
262                 else\r
263                         graph_->set_tag("skip-sync");\r
264                 \r
265                 ax_->Tick();\r
266                                         \r
267                 MSG msg;\r
268                 while(PeekMessage(&msg, NULL, NULL, NULL, PM_REMOVE)) // DO NOT REMOVE THE MESSAGE DISPATCH LOOP. Without this some stuff doesn't work!  \r
269                 {\r
270                         if(msg.message == WM_TIMER && msg.wParam == 3 && msg.lParam == 0) // We tick this inside FlashAxContainer\r
271                                 continue;\r
272                         \r
273                         TranslateMessage(&msg);\r
274                         DispatchMessage(&msg);                  \r
275                 }\r
276         }\r
277         \r
278         spl::shared_ptr<core::draw_frame> render()\r
279         {                       \r
280                 const float frame_time = 1.0f/ax_->GetFPS();\r
281 \r
282                 frame_timer_.restart();\r
283 \r
284                 if(ax_->InvalidRect())\r
285                 {                       \r
286                         A_memset(bmp_.data(), 0, width_*height_*4);\r
287                         ax_->DrawControl(bmp_);\r
288                 \r
289                         core::pixel_format_desc desc = core::pixel_format::bgra;\r
290                         desc.planes.push_back(core::pixel_format_desc::plane(width_, height_, 4));\r
291                         auto frame = frame_factory_->create_frame(this, desc);\r
292 \r
293                         A_memcpy(frame->image_data(0).begin(), bmp_.data(), width_*height_*4);\r
294                         head_ = frame;  \r
295                 }               \r
296                                                                                 \r
297                 graph_->set_value("frame-time", static_cast<float>(frame_timer_.elapsed()/frame_time)*0.5f);\r
298                 return head_;\r
299         }\r
300         \r
301         bool is_empty() const\r
302         {\r
303                 return ax_->IsEmpty();\r
304         }\r
305 \r
306         double fps() const\r
307         {\r
308                 return ax_->GetFPS();   \r
309         }\r
310         \r
311         std::wstring print()\r
312         {\r
313                 return L"flash-player[" + boost::filesystem::wpath(filename_).filename().wstring() \r
314                                   + L"|" + boost::lexical_cast<std::wstring>(width_)\r
315                                   + L"x" + boost::lexical_cast<std::wstring>(height_)\r
316                                   + L"]";               \r
317         }\r
318 };\r
319 \r
320 struct flash_producer : public core::frame_producer\r
321 {       \r
322         const std::wstring                                                                                                      filename_;      \r
323         const spl::shared_ptr<core::frame_factory>                                                      frame_factory_;\r
324         const int                                                                                                                       width_;\r
325         const int                                                                                                                       height_;\r
326         const int                                                                                                                       buffer_size_;\r
327 \r
328         tbb::atomic<int>                                                                                                        fps_;\r
329         tbb::atomic<bool>                                                                                                       sync_;\r
330 \r
331         spl::shared_ptr<diagnostics::graph>                                                                     graph_;\r
332 \r
333         std::queue<spl::shared_ptr<core::draw_frame>>                                           frame_buffer_;\r
334         tbb::concurrent_bounded_queue<spl::shared_ptr<core::draw_frame>>        output_buffer_;\r
335                                 \r
336         std::unique_ptr<flash_renderer>                                                                         renderer_;\r
337 \r
338         spl::shared_ptr<core::draw_frame>                                                                       last_frame_;\r
339 \r
340         executor                                                                                                                        executor_;      \r
341 public:\r
342         flash_producer(const spl::shared_ptr<core::frame_factory>& frame_factory, const std::wstring& filename, int width, int height) \r
343                 : filename_(filename)           \r
344                 , frame_factory_(frame_factory)\r
345                 , width_(width > 0 ? width : frame_factory->video_format_desc().width)\r
346                 , height_(height > 0 ? height : frame_factory->video_format_desc().height)\r
347                 , buffer_size_(env::properties().get(L"configuration.flash.buffer-depth", frame_factory_->video_format_desc().fps > 30.0 ? 4 : 2))\r
348                 , last_frame_(core::draw_frame::empty())\r
349                 , executor_(L"flash_producer")\r
350         {       \r
351                 sync_ = true;\r
352                 fps_ = 0;\r
353          \r
354                 graph_->set_color("buffer-size", diagnostics::color(1.0f, 1.0f, 0.0f));\r
355                 graph_->set_color("late-frame", diagnostics::color(0.6f, 0.3f, 0.9f));\r
356                 graph_->set_text(print());\r
357                 diagnostics::register_graph(graph_);\r
358         }\r
359 \r
360         ~flash_producer()\r
361         {\r
362                 executor_.invoke([this]\r
363                 {\r
364                         renderer_.reset();\r
365                 }, task_priority::high_priority);\r
366         }\r
367 \r
368         // frame_producer\r
369                 \r
370         virtual spl::shared_ptr<core::draw_frame> receive(int) override\r
371         {                                       \r
372                 auto frame = core::draw_frame::late();\r
373                 \r
374                 graph_->set_value("buffer-size", static_cast<float>(output_buffer_.size())/static_cast<float>(buffer_size_));\r
375                 sync_ = output_buffer_.size() == buffer_size_;\r
376 \r
377                 if(output_buffer_.try_pop(frame))                       \r
378                         executor_.begin_invoke(std::bind(&flash_producer::next, this));         \r
379                 else            \r
380                         graph_->set_tag("late-frame");          \r
381 \r
382                 if(frame != core::draw_frame::late())\r
383                         last_frame_ = frame;\r
384                 \r
385                 return frame;\r
386         }\r
387 \r
388         virtual spl::shared_ptr<core::draw_frame> last_frame() const override\r
389         {\r
390                 return core::draw_frame::still(last_frame_);\r
391         }\r
392         \r
393         virtual boost::unique_future<std::wstring> call(const std::wstring& param) override\r
394         {       \r
395                 return executor_.begin_invoke([this, param]() -> std::wstring\r
396                 {                       \r
397                         try\r
398                         {\r
399                                 if(!renderer_)\r
400                                 {\r
401                                         renderer_.reset(new flash_renderer(graph_, frame_factory_, filename_, width_, height_));\r
402 \r
403                                         while(output_buffer_.size() < buffer_size_)\r
404                                                 output_buffer_.push(core::draw_frame::empty());\r
405                                 }\r
406 \r
407                                 return renderer_->call(param);  \r
408                         }\r
409                         catch(...)\r
410                         {\r
411                                 CASPAR_LOG_CURRENT_EXCEPTION();\r
412                                 renderer_.reset(nullptr);\r
413                         }\r
414 \r
415                         return L"";\r
416                 });\r
417         }\r
418                 \r
419         virtual std::wstring print() const override\r
420         { \r
421                 return L"flash[" + boost::filesystem::path(filename_).wstring() + L"|" + boost::lexical_cast<std::wstring>(fps_) + L"]";                \r
422         }       \r
423 \r
424         virtual std::wstring name() const override\r
425         {\r
426                 return L"flash";\r
427         }\r
428 \r
429         virtual boost::property_tree::wptree info() const override\r
430         {\r
431                 boost::property_tree::wptree info;\r
432                 info.add(L"type", L"flash");\r
433                 return info;\r
434         }\r
435 \r
436         // flash_producer\r
437         \r
438         void tick()\r
439         {\r
440                 renderer_->tick(sync_);\r
441         }\r
442         \r
443         void next()\r
444         {       \r
445                 if(!renderer_)\r
446                         frame_buffer_.push(core::draw_frame::empty());\r
447 \r
448                 if(frame_buffer_.empty())\r
449                 {\r
450                         auto format_desc = frame_factory_->video_format_desc();\r
451                                         \r
452                         tick();\r
453                         auto frame = renderer_->render();\r
454 \r
455                         if(abs(renderer_->fps()/2.0 - format_desc.fps) < 2.0) // flash == 2 * format -> interlace\r
456                         {                                       \r
457                                 tick();\r
458                                 if(format_desc.field_mode != core::field_mode::progressive)\r
459                                         frame = core::draw_frame::interlace(frame, renderer_->render(), format_desc.field_mode);\r
460                                 \r
461                                 frame_buffer_.push(frame);\r
462                         }\r
463                         else if(abs(renderer_->fps() - format_desc.fps/2.0) < 2.0) // format == 2 * flash -> duplicate\r
464                         {\r
465                                 frame_buffer_.push(frame);\r
466                                 frame_buffer_.push(frame);\r
467                         }\r
468                         else //if(abs(renderer_->fps() - format_desc_.fps) < 0.1) // format == flash -> simple\r
469                         {\r
470                                 frame_buffer_.push(frame);\r
471                         }\r
472                                                 \r
473                         fps_.fetch_and_store(static_cast<int>(renderer_->fps()*100.0));                         \r
474                         graph_->set_text(print());\r
475                         \r
476                         if(renderer_->is_empty())                       \r
477                                 renderer_.reset();\r
478                 }\r
479 \r
480                 output_buffer_.push(std::move(frame_buffer_.front()));\r
481                 frame_buffer_.pop();\r
482         }\r
483 };\r
484 \r
485 spl::shared_ptr<core::frame_producer> create_producer(const spl::shared_ptr<core::frame_factory>& frame_factory, const std::vector<std::wstring>& params)\r
486 {\r
487         auto template_host = get_template_host(frame_factory->video_format_desc());\r
488         \r
489         auto filename = env::template_folder() + L"\\" + template_host.filename;\r
490         \r
491         if(!boost::filesystem::exists(filename))\r
492                 BOOST_THROW_EXCEPTION(file_not_found() << boost::errinfo_file_name(u8(filename)));      \r
493 \r
494         return core::wrap_producer(spl::make_shared<flash_producer>(frame_factory, filename, template_host.width, template_host.height));\r
495 }\r
496 \r
497 std::wstring find_template(const std::wstring& template_name)\r
498 {\r
499         if(boost::filesystem::exists(template_name + L".ft")) \r
500                 return template_name + L".ft";\r
501         \r
502         if(boost::filesystem::exists(template_name + L".ct"))\r
503                 return template_name + L".ct";\r
504         \r
505         if(boost::filesystem::exists(template_name + L".swf"))\r
506                 return template_name + L".swf";\r
507 \r
508         return L"";\r
509 }\r
510 \r
511 }}