]> git.sesse.net Git - casparcg/blob - core/producer/frame_producer.cpp
9c66df6ae881d2995c958e61dee10887b09bef85
[casparcg] / core / producer / frame_producer.cpp
1 /*
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>
3 *
4 * This file is part of CasparCG (www.casparcg.com).
5 *
6 * CasparCG is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * CasparCG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with CasparCG. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * Author: Robert Nagy, ronag89@gmail.com
20 */
21
22 #include "../StdAfx.h"
23
24 #include "frame_producer.h"
25
26 #include "../frame/draw_frame.h"
27 #include "../frame/frame_transform.h"
28
29 #include "color/color_producer.h"
30 #include "draw/freehand_producer.h"
31 #include "separated/separated_producer.h"
32 #include "variable.h"
33
34 #include <common/assert.h>
35 #include <common/except.h>
36 #include <common/executor.h>
37 #include <common/future.h>
38 #include <common/memory.h>
39
40 #include <boost/thread.hpp>
41
42 namespace caspar { namespace core {
43         
44 std::vector<producer_factory_t> g_producer_factories;
45 std::vector<producer_factory_t> g_thumbnail_factories;
46
47 void register_producer_factory(const producer_factory_t& factory)
48 {
49         g_producer_factories.push_back(factory);
50 }
51 void register_thumbnail_producer_factory(const producer_factory_t& factory)
52 {
53         g_thumbnail_factories.push_back(factory);
54 }
55
56 constraints::constraints(double width, double height)
57         : width(width), height(height)
58 {
59 }
60
61 constraints::constraints()
62 {
63 }
64
65 struct frame_producer_base::impl
66 {
67         tbb::atomic<uint32_t>   frame_number_;
68         tbb::atomic<bool>               paused_;
69         frame_producer_base&    self_;
70         draw_frame                              last_frame_;
71
72         impl(frame_producer_base& self)
73                 : self_(self)
74                 , last_frame_(draw_frame::empty())
75         {
76                 frame_number_ = 0;
77                 paused_ = false;
78         }
79         
80         draw_frame receive()
81         {
82                 if(paused_)
83                         return self_.last_frame();
84
85                 auto frame = self_.receive_impl();
86                 if(frame == draw_frame::late())
87                         return self_.last_frame();
88
89                 ++frame_number_;
90
91                 return last_frame_ = draw_frame::push(frame);
92         }
93
94         void paused(bool value)
95         {
96                 paused_ = value;
97         }
98
99         draw_frame last_frame()
100         {
101                 return draw_frame::still(last_frame_);
102         }
103         draw_frame create_thumbnail_frame()
104         {
105                 return draw_frame::empty();
106         }
107 };
108
109 frame_producer_base::frame_producer_base() : impl_(new impl(*this))
110 {
111 }
112
113 draw_frame frame_producer_base::receive()
114 {
115         return impl_->receive();
116 }
117
118 void frame_producer_base::paused(bool value)
119 {
120         impl_->paused(value);
121 }
122
123 draw_frame frame_producer_base::last_frame()
124 {
125         return impl_->last_frame();
126 }
127 draw_frame frame_producer_base::create_thumbnail_frame()
128 {
129         return impl_->create_thumbnail_frame();
130 }
131
132 std::future<std::wstring> frame_producer_base::call(const std::vector<std::wstring>&) 
133 {
134         CASPAR_THROW_EXCEPTION(not_supported());
135 }
136
137 uint32_t frame_producer_base::nb_frames() const
138 {
139         return std::numeric_limits<uint32_t>::max();
140 }
141
142 uint32_t frame_producer_base::frame_number() const
143 {
144         return impl_->frame_number_;
145 }
146
147 variable& frame_producer_base::get_variable(const std::wstring& name)
148 {
149         CASPAR_THROW_EXCEPTION(caspar_exception() 
150                         << msg_info(L"No variable called " + name + L" found in " + print()));
151 }
152
153 const std::vector<std::wstring>& frame_producer_base::get_variables() const
154 {
155         static std::vector<std::wstring> empty;
156
157         return empty;
158 }
159
160 const spl::shared_ptr<frame_producer>& frame_producer::empty() 
161 {
162         class empty_frame_producer : public frame_producer
163         {
164         public:
165                 empty_frame_producer(){}
166                 draw_frame receive() override{return draw_frame::empty();}
167                 void paused(bool value) override{}
168                 uint32_t nb_frames() const override {return 0;}
169                 std::wstring print() const override { return L"empty";}
170                 monitor::subject& monitor_output() override {static monitor::subject monitor_subject(""); return monitor_subject;}                                                                              
171                 std::wstring name() const override {return L"empty";}
172                 uint32_t frame_number() const override {return 0;}
173                 std::future<std::wstring> call(const std::vector<std::wstring>& params) override{CASPAR_THROW_EXCEPTION(not_supported());}
174                 variable& get_variable(const std::wstring& name) override { CASPAR_THROW_EXCEPTION(not_supported()); }
175                 const std::vector<std::wstring>& get_variables() const override { static std::vector<std::wstring> empty; return empty; }
176                 draw_frame last_frame() {return draw_frame::empty();}
177                 draw_frame create_thumbnail_frame() {return draw_frame::empty();}
178                 constraints& pixel_constraints() override { static constraints c; return c; }
179         
180                 boost::property_tree::wptree info() const override
181                 {
182                         boost::property_tree::wptree info;
183                         info.add(L"type", L"empty-producer");
184                         return info;
185                 }
186         };
187
188         static spl::shared_ptr<frame_producer> producer = spl::make_shared<empty_frame_producer>();
189         return producer;
190 }       
191
192 class destroy_producer_proxy : public frame_producer
193 {       
194         std::shared_ptr<frame_producer> producer_;
195 public:
196         destroy_producer_proxy(spl::shared_ptr<frame_producer>&& producer) 
197                 : producer_(std::move(producer))
198         {
199         }
200
201         virtual ~destroy_producer_proxy()
202         {               
203                 static tbb::atomic<int> counter = []
204                 {
205                         tbb::atomic<int> c;
206                         c = 0;
207                         return c;
208                 }();
209                 
210                 if(producer_ == core::frame_producer::empty())
211                         return;
212
213                 ++counter;
214                 CASPAR_VERIFY(counter < 8);
215                 
216                 auto producer = new spl::shared_ptr<frame_producer>(std::move(producer_));
217                 boost::thread([=]
218                 {
219                         std::unique_ptr<spl::shared_ptr<frame_producer>> pointer_guard(producer);
220                         auto str = (*producer)->print();
221                         try
222                         {
223                                 if(!producer->unique())
224                                         CASPAR_LOG(trace) << str << L" Not destroyed on asynchronous destruction thread: " << producer->use_count();
225                                 else
226                                         CASPAR_LOG(trace) << str << L" Destroying on asynchronous destruction thread.";
227                         }
228                         catch(...){}
229                         
230                         try
231                         {
232                                 pointer_guard.reset();
233                                 CASPAR_LOG(info) << str << L" Destroyed.";
234                         }
235                         catch(...)
236                         {
237                                 CASPAR_LOG_CURRENT_EXCEPTION();
238                         }
239
240                         --counter;
241                 }).detach(); 
242         }
243         
244         draw_frame                                                                                      receive() override                                                                                                                                                                                                              {return producer_->receive();}
245         std::wstring                                                                            print() const override                                                                                                                  {return producer_->print();}
246         void                                                                                            paused(bool value) override                                                                                                             {producer_->paused(value);}
247         std::wstring                                                                            name() const override                                                                                                                   {return producer_->name();}
248         uint32_t                                                                                        frame_number() const override                                                                                                   {return producer_->frame_number();}
249         boost::property_tree::wptree                                            info() const override                                                                                                                   {return producer_->info();}
250         std::future<std::wstring>                                                       call(const std::vector<std::wstring>& params) override                                                  {return producer_->call(params);}
251         variable&                                                                                       get_variable(const std::wstring& name) override                                                                 {return producer_->get_variable(name);}
252         const std::vector<std::wstring>&                                        get_variables() const override                                                                                                  {return producer_->get_variables();}
253         void                                                                                            leading_producer(const spl::shared_ptr<frame_producer>& producer) override              {return producer_->leading_producer(producer);}
254         uint32_t                                                                                        nb_frames() const override                                                                                                              {return producer_->nb_frames();}
255         class draw_frame                                                                        last_frame()                                                                                                                                    {return producer_->last_frame();}
256         draw_frame                                                                                      create_thumbnail_frame()                                                                                                                {return producer_->create_thumbnail_frame();}
257         monitor::subject&                                                                       monitor_output() override                                                                                                               {return producer_->monitor_output();}                                                                           
258         bool                                                                                            collides(double x, double y) const override                                                                             {return producer_->collides(x, y);}
259         void                                                                                            on_interaction(const interaction_event::ptr& event)     override                                        {return producer_->on_interaction(event);}
260         constraints&                                                                            pixel_constraints() override                                                                                                    {return producer_->pixel_constraints();}
261 };
262
263 spl::shared_ptr<core::frame_producer> create_destroy_proxy(spl::shared_ptr<core::frame_producer> producer)
264 {
265         return spl::make_shared<destroy_producer_proxy>(std::move(producer));
266 }
267
268 spl::shared_ptr<core::frame_producer> do_create_producer(const spl::shared_ptr<frame_factory>& my_frame_factory, const video_format_desc& format_desc, const std::vector<std::wstring>& params, const std::vector<producer_factory_t>& factories, bool throw_on_fail = false)
269 {
270         if(params.empty())
271                 CASPAR_THROW_EXCEPTION(invalid_argument() << arg_name_info("params") << arg_value_info(""));
272         
273         auto producer = frame_producer::empty();
274         std::any_of(factories.begin(), factories.end(), [&](const producer_factory_t& factory) -> bool
275                 {
276                         try
277                         {
278                                 producer = factory(my_frame_factory, format_desc, params);
279                         }
280                         catch(...)
281                         {
282                                 if(throw_on_fail)
283                                         throw;
284                                 else
285                                         CASPAR_LOG_CURRENT_EXCEPTION();
286                         }
287                         return producer != frame_producer::empty();
288                 });
289
290         if(producer == frame_producer::empty())
291                 producer = create_color_producer(my_frame_factory, params);
292
293         if (producer == frame_producer::empty())
294                 producer = create_freehand_producer(my_frame_factory, params);
295
296         if(producer == frame_producer::empty())
297                 return producer;
298                 
299         return producer;
300 }
301
302 spl::shared_ptr<core::frame_producer> create_thumbnail_producer(const spl::shared_ptr<frame_factory>& my_frame_factory, const video_format_desc& format_desc, const std::wstring& media_file)
303 {
304   std::vector<std::wstring> params;
305   params.push_back(media_file);
306
307   auto producer = do_create_producer(my_frame_factory, format_desc, params, g_thumbnail_factories, true);
308   auto key_producer = frame_producer::empty();
309   
310   try // to find a key file.
311   {
312         auto params_copy = params;
313         if (params_copy.size() > 0)
314         {
315           params_copy[0] += L"_A";
316           key_producer = do_create_producer(my_frame_factory, format_desc, params_copy, g_thumbnail_factories, true);
317           if (key_producer == frame_producer::empty())
318           {
319                 params_copy[0] += L"LPHA";
320                 key_producer = do_create_producer(my_frame_factory, format_desc, params_copy, g_thumbnail_factories, true);
321           }
322         }
323   }
324   catch(...){}
325
326   if (producer != frame_producer::empty() && key_producer != frame_producer::empty())
327         return create_separated_producer(producer, key_producer);
328   
329   return producer;
330 }
331
332 spl::shared_ptr<core::frame_producer> create_producer(const spl::shared_ptr<frame_factory>& my_frame_factory, const video_format_desc& format_desc, const std::vector<std::wstring>& params)
333 {       
334         auto producer = do_create_producer(my_frame_factory, format_desc, params, g_producer_factories);
335         auto key_producer = frame_producer::empty();
336         
337         try // to find a key file.
338         {
339                 auto params_copy = params;
340                 if(params_copy.size() > 0)
341                 {
342                         params_copy[0] += L"_A";
343                         key_producer = do_create_producer(my_frame_factory, format_desc, params_copy, g_producer_factories);
344                         if(key_producer == frame_producer::empty())
345                         {
346                                 params_copy[0] += L"LPHA";
347                                 key_producer = do_create_producer(my_frame_factory, format_desc, params_copy, g_producer_factories);
348                         }
349                 }
350         }
351         catch(...){}
352
353         if(producer != frame_producer::empty() && key_producer != frame_producer::empty())
354                 return create_separated_producer(producer, key_producer);
355         
356         if(producer == frame_producer::empty())
357         {
358                 std::wstring str;
359                 for (auto& param : params)
360                         str += param + L" ";
361                 CASPAR_THROW_EXCEPTION(file_not_found() << msg_info("No match found for supplied commands. Check syntax.") << arg_value_info(u8(str)));
362         }
363
364         return producer;
365 }
366
367
368 spl::shared_ptr<core::frame_producer> create_producer(const spl::shared_ptr<frame_factory>& factory, const video_format_desc& format_desc, const std::wstring& params)
369 {
370         std::wstringstream iss(params);
371         std::vector<std::wstring> tokens;
372         typedef std::istream_iterator<std::wstring, wchar_t, std::char_traits<wchar_t> > iterator;
373         std::copy(iterator(iss),  iterator(), std::back_inserter(tokens));
374         return create_producer(factory, format_desc, tokens);
375 }
376
377 }}