]> 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) 2010 Sveriges Television AB <info@casparcg.com>\r
3 *\r
4 *  This file is part of CasparCG.\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 */\r
20  \r
21 #include "../stdafx.h"\r
22 \r
23 #if defined(_MSC_VER)\r
24 #pragma warning (disable : 4146)\r
25 #endif\r
26 \r
27 #include "flash_producer.h"\r
28 #include "FlashAxContainer.h"\r
29 \r
30 #include <core/video_format.h>\r
31 \r
32 #include <core/producer/frame/frame_factory.h>\r
33 #include <core/producer/frame/basic_frame.h>\r
34 #include <core/producer/frame/write_frame.h>\r
35 \r
36 #include <common/env.h>\r
37 #include <common/concurrency/executor.h>\r
38 #include <common/utility/timer.h>\r
39 #include <common/diagnostics/graph.h>\r
40 \r
41 #include <boost/filesystem.hpp>\r
42 \r
43 #include <functional>\r
44 #include <boost/thread.hpp>\r
45 \r
46 namespace caspar {\r
47                 \r
48 bool interlaced(double fps, const core::video_format_desc& format_desc)\r
49 {\r
50         return abs(fps/2.0 - format_desc.fps) < 0.1;\r
51 }\r
52 \r
53 class flash_renderer\r
54 {\r
55         struct co_init\r
56         {\r
57                 co_init(){CoInitialize(nullptr);}\r
58                 ~co_init(){CoUninitialize();}\r
59         } co_;\r
60         \r
61         const std::wstring filename_;\r
62         const core::video_format_desc format_desc_;\r
63 \r
64         std::shared_ptr<core::frame_factory> frame_factory_;\r
65         \r
66         BYTE* bmp_data_;        \r
67         std::shared_ptr<void> hdc_;\r
68         std::shared_ptr<void> bmp_;\r
69 \r
70         CComObject<caspar::flash::FlashAxContainer>* ax_;\r
71         safe_ptr<core::basic_frame> head_;\r
72         \r
73         safe_ptr<diagnostics::graph> graph_;\r
74         timer perf_timer_;\r
75 \r
76         high_prec_timer timer_;\r
77         \r
78 public:\r
79         flash_renderer(const safe_ptr<diagnostics::graph>& graph, const std::shared_ptr<core::frame_factory>& frame_factory, const std::wstring& filename) \r
80                 : graph_(graph)\r
81                 , filename_(filename)\r
82                 , format_desc_(frame_factory->get_video_format_desc())\r
83                 , frame_factory_(frame_factory)\r
84                 , bmp_data_(nullptr)\r
85                 , hdc_(CreateCompatibleDC(0), DeleteDC)\r
86                 , ax_(nullptr)\r
87                 , head_(core::basic_frame::empty())\r
88         {\r
89                 graph_->add_guide("frame-time", 0.5f);\r
90                 graph_->set_color("frame-time", diagnostics::color(1.0f, 0.0f, 0.0f));  \r
91                 graph_->set_color("param", diagnostics::color(1.0f, 0.5f, 0.0f));       \r
92                 graph_->set_color("underflow", diagnostics::color(0.6f, 0.3f, 0.9f));                   \r
93                 \r
94                 if(FAILED(CComObject<caspar::flash::FlashAxContainer>::CreateInstance(&ax_)))\r
95                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " Failed to create FlashAxContainer"));\r
96                 \r
97                 ax_->set_print([this]{return L"";});\r
98 \r
99                 if(FAILED(ax_->CreateAxControl()))\r
100                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " Failed to Create FlashAxControl"));\r
101                 \r
102                 CComPtr<IShockwaveFlash> spFlash;\r
103                 if(FAILED(ax_->QueryControl(&spFlash)))\r
104                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " Failed to Query FlashAxControl"));\r
105                                                                                                 \r
106                 if(FAILED(spFlash->put_Playing(true)) )\r
107                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " Failed to start playing Flash"));\r
108 \r
109                 if(FAILED(spFlash->put_Movie(CComBSTR(filename.c_str()))))\r
110                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " Failed to Load Template Host"));\r
111                                                                                 \r
112                 if(FAILED(spFlash->put_ScaleMode(2)))  //Exact fit. Scale without respect to the aspect ratio.\r
113                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " Failed to Set Scale Mode"));\r
114                                                 \r
115                 ax_->SetFormat(format_desc_);\r
116                 \r
117                 BITMAPINFO info;\r
118                 memset(&info, 0, sizeof(BITMAPINFO));\r
119                 info.bmiHeader.biBitCount = 32;\r
120                 info.bmiHeader.biCompression = BI_RGB;\r
121                 info.bmiHeader.biHeight = -format_desc_.height;\r
122                 info.bmiHeader.biPlanes = 1;\r
123                 info.bmiHeader.biSize = sizeof(BITMAPINFO);\r
124                 info.bmiHeader.biWidth = format_desc_.width;\r
125 \r
126                 bmp_.reset(CreateDIBSection(static_cast<HDC>(hdc_.get()), &info, DIB_RGB_COLORS, reinterpret_cast<void**>(&bmp_data_), 0, 0), DeleteObject);\r
127                 SelectObject(static_cast<HDC>(hdc_.get()), bmp_.get()); \r
128                 CASPAR_LOG(info) << print() << L" Thread started.";\r
129         }\r
130 \r
131         ~flash_renderer()\r
132         {               \r
133                 if(ax_)\r
134                 {\r
135                         ax_->DestroyAxControl();\r
136                         ax_->Release();\r
137                 }\r
138                 CASPAR_LOG(info) << print() << L" Thread ended.";\r
139         }\r
140         \r
141         void param(const std::wstring& param)\r
142         {               \r
143                 if(!ax_->FlashCall(param))\r
144                         CASPAR_LOG(warning) << print() << " Flash function call failed. Param: " << param << ".";\r
145                 graph_->add_tag("param");\r
146 \r
147                 if(abs(ax_->GetFPS() - format_desc_.fps) > 0.001 && abs(ax_->GetFPS()/2.0 - format_desc_.fps) > 0.001)\r
148                         CASPAR_LOG(warning) << print() << " Invalid frame-rate: " << ax_->GetFPS() << L". Should be either " << format_desc_.fps << L" or " << format_desc_.fps*2.0 << L".";\r
149         }\r
150         \r
151         safe_ptr<core::basic_frame> render_frame(bool has_underflow)\r
152         {\r
153                 if(ax_->IsEmpty())\r
154                         return core::basic_frame::empty();\r
155 \r
156                 auto frame = render_simple_frame(has_underflow);\r
157                 if(interlaced(ax_->GetFPS(), format_desc_))\r
158                         frame = core::basic_frame::interlace(frame, render_simple_frame(has_underflow), format_desc_.mode);\r
159                 return frame;\r
160         }\r
161 \r
162         double fps() const\r
163         {\r
164                 return ax_->GetFPS();   \r
165         }\r
166         \r
167         std::wstring print()\r
168         {\r
169                 return L"flash[" + boost::filesystem::wpath(filename_).filename() + L"]";               \r
170         }\r
171         \r
172 private:\r
173 \r
174         safe_ptr<core::basic_frame> render_simple_frame(bool underflow)\r
175         {\r
176                 double frame_time = 1.0/ax_->GetFPS();\r
177 \r
178                 if(underflow)\r
179                         graph_->add_tag("underflow");\r
180                 else\r
181                         timer_.tick(frame_time);\r
182 \r
183                 perf_timer_.reset();\r
184                 ax_->Tick();\r
185 \r
186                 if(ax_->InvalidRect())\r
187                 {                       \r
188                         std::fill_n(bmp_data_, format_desc_.size, 0);\r
189                         ax_->DrawControl(static_cast<HDC>(hdc_.get()));\r
190                 \r
191                         auto frame = frame_factory_->create_frame(this);\r
192                         std::copy_n(bmp_data_, format_desc_.size, frame->image_data().begin());\r
193                         head_ = frame;\r
194                 }               \r
195                 \r
196                 graph_->update_value("frame-time", static_cast<float>(perf_timer_.elapsed()/frame_time));\r
197                 return head_;\r
198         }\r
199 };\r
200 \r
201 struct flash_producer : public core::frame_producer\r
202 {       \r
203         const std::wstring filename_;   \r
204         tbb::atomic<int> fps_;\r
205 \r
206         std::shared_ptr<diagnostics::graph> graph_;\r
207 \r
208         safe_ptr<core::basic_frame> tail_;\r
209         tbb::concurrent_bounded_queue<safe_ptr<core::basic_frame>> frame_buffer_;\r
210 \r
211         std::shared_ptr<flash_renderer> renderer_;\r
212         safe_ptr<core::frame_factory> frame_factory_;\r
213         const core::video_format_desc format_desc_;\r
214                         \r
215         executor executor_;\r
216                 \r
217 public:\r
218         flash_producer(const safe_ptr<core::frame_factory>& frame_factory, const std::wstring& filename) \r
219                 : filename_(filename)           \r
220                 , tail_(core::basic_frame::empty())             \r
221                 , frame_factory_(frame_factory)\r
222                 , format_desc_(frame_factory->get_video_format_desc())\r
223                 , executor_(L"flash_producer")\r
224         {       \r
225                 if(!boost::filesystem::exists(filename))\r
226                         BOOST_THROW_EXCEPTION(file_not_found() << boost::errinfo_file_name(narrow(filename)));  \r
227                  \r
228                 frame_buffer_.set_capacity(4);\r
229                 graph_ = diagnostics::create_graph([this]{return print();});\r
230                 graph_->set_color("output-buffer", diagnostics::color(0.0f, 1.0f, 0.0f));\r
231                 \r
232                 executor_.begin_invoke([=]\r
233                 {\r
234                         init_renderer();\r
235                 });\r
236 \r
237                 fps_ = 0;\r
238                 executor_.start();\r
239         }\r
240 \r
241         ~flash_producer()\r
242         {\r
243                 executor_.clear();\r
244                 CASPAR_ASSERT(executor_.is_running());\r
245                 executor_.invoke([=]\r
246                 {\r
247                         renderer_ = nullptr;\r
248                 });             \r
249         }\r
250                 \r
251         virtual safe_ptr<core::basic_frame> receive()\r
252         {               \r
253                 if(!renderer_)\r
254                         return core::basic_frame::empty();\r
255                 \r
256                 graph_->set_value("output-buffer", static_cast<float>(frame_buffer_.size())/static_cast<float>(frame_buffer_.capacity()));\r
257                 if(!frame_buffer_.try_pop(tail_))\r
258                         return tail_;\r
259 \r
260                 executor_.begin_invoke([=]\r
261                 {\r
262                         if(!renderer_)\r
263                                 return;\r
264 \r
265                         try\r
266                         {\r
267                                 auto frame = core::basic_frame::empty();\r
268                                 do{frame = renderer_->render_frame(frame_buffer_.size() < frame_buffer_.capacity()-2);}\r
269                                 while(frame_buffer_.try_push(frame) && frame == core::basic_frame::empty());\r
270                                 graph_->set_value("output-buffer", static_cast<float>(frame_buffer_.size())/static_cast<float>(frame_buffer_.capacity()));      \r
271                                 fps_.fetch_and_store(static_cast<int>(renderer_->fps()*100.0));\r
272                         }\r
273                         catch(...)\r
274                         {\r
275                                 CASPAR_LOG_CURRENT_EXCEPTION();\r
276                                 renderer_ = nullptr;\r
277                         }\r
278                 });                     \r
279 \r
280                 return tail_;\r
281         }\r
282         \r
283         virtual void param(const std::wstring& param) \r
284         {       \r
285                 executor_.begin_invoke([=]\r
286                 {\r
287                         if(!renderer_)\r
288                                 init_renderer();\r
289 \r
290                         try\r
291                         {\r
292                                 renderer_->param(param);        \r
293                         }\r
294                         catch(...)\r
295                         {\r
296                                 CASPAR_LOG_CURRENT_EXCEPTION();\r
297                                 renderer_ = nullptr;\r
298                         }\r
299                 });\r
300         }\r
301                 \r
302         virtual std::wstring print() const\r
303         { \r
304                 return L"flash[" + boost::filesystem::wpath(filename_).filename() + L", " + \r
305                                         boost::lexical_cast<std::wstring>(fps_) + \r
306                                         (interlaced(fps_, format_desc_) ? L"i" : L"p") + L"]";          \r
307         }       \r
308 \r
309         void init_renderer()\r
310         {\r
311                 renderer_.reset(new flash_renderer(safe_ptr<diagnostics::graph>(graph_), frame_factory_, filename_));\r
312                 while(frame_buffer_.try_push(core::basic_frame::empty())){}             \r
313         }\r
314 };\r
315 \r
316 safe_ptr<core::frame_producer> create_flash_producer(const safe_ptr<core::frame_factory>& frame_factory, const std::vector<std::wstring>& params)\r
317 {\r
318         std::wstring filename = env::template_folder() + L"\\" + params[0];\r
319         \r
320         return make_safe<flash_producer>(frame_factory, filename);\r
321 }\r
322 \r
323 std::wstring find_flash_template(const std::wstring& template_name)\r
324 {\r
325         if(boost::filesystem::exists(template_name + L".ft")) \r
326                 return template_name + L".ft";\r
327         \r
328         if(boost::filesystem::exists(template_name + L".ct"))\r
329                 return template_name + L".ct";\r
330 \r
331         return L"";\r
332 }\r
333 \r
334 }