]> git.sesse.net Git - casparcg/blob - core/consumer/output.cpp
2.1.0: Restructured "frame" folder.
[casparcg] / core / consumer / output.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 #ifdef _MSC_VER\r
25 #pragma warning (disable : 4244)\r
26 #endif\r
27 \r
28 #include "output.h"\r
29 \r
30 #include "frame_consumer.h"\r
31 \r
32 #include "../video_format.h"\r
33 #include "../mixer/gpu/accelerator.h"\r
34 #include "../mixer/read_frame.h"\r
35 \r
36 #include <common/concurrency/executor.h>\r
37 #include <common/diagnostics/graph.h>\r
38 #include <common/prec_timer.h>\r
39 #include <common/memory/memshfl.h>\r
40 #include <common/env.h>\r
41 \r
42 #include <common/assert.h>\r
43 #include <boost/circular_buffer.hpp>\r
44 #include <boost/timer.hpp>\r
45 #include <boost/range/algorithm.hpp>\r
46 #include <boost/range/adaptors.hpp>\r
47 #include <boost/property_tree/ptree.hpp>\r
48 \r
49 namespace caspar { namespace core {\r
50         \r
51 struct output::impl\r
52 {               \r
53         const int                                                                               channel_index_;\r
54 \r
55         video_format_desc                                                               format_desc_;\r
56 \r
57         std::map<int, safe_ptr<frame_consumer>>                 consumers_;\r
58         \r
59         prec_timer                                                                              sync_timer_;\r
60 \r
61         boost::circular_buffer<safe_ptr<const data_frame>>      frames_;\r
62 \r
63         executor                                                                                executor_;\r
64                 \r
65 public:\r
66         impl(const video_format_desc& format_desc, int channel_index) \r
67                 : channel_index_(channel_index)\r
68                 , format_desc_(format_desc)\r
69                 , executor_(L"output")\r
70         {\r
71         }       \r
72         \r
73         void add(int index, safe_ptr<frame_consumer> consumer)\r
74         {               \r
75                 remove(index);\r
76 \r
77                 consumer = create_consumer_cadence_guard(consumer);\r
78                 consumer->initialize(format_desc_, channel_index_);\r
79 \r
80                 executor_.invoke([&]\r
81                 {\r
82                         consumers_.insert(std::make_pair(index, consumer));\r
83                         CASPAR_LOG(info) << print() << L" " << consumer->print() << L" Added.";\r
84                 }, high_priority);\r
85         }\r
86 \r
87         void add(const safe_ptr<frame_consumer>& consumer)\r
88         {\r
89                 add(consumer->index(), consumer);\r
90         }\r
91 \r
92         void remove(int index)\r
93         {               \r
94                 // Destroy  consumer on calling thread:\r
95                 std::shared_ptr<frame_consumer> old_consumer;\r
96 \r
97                 executor_.invoke([&]\r
98                 {\r
99                         auto it = consumers_.find(index);\r
100                         if(it != consumers_.end())\r
101                         {\r
102                                 old_consumer = it->second;\r
103                                 consumers_.erase(it);\r
104                         }\r
105                 }, high_priority);\r
106 \r
107                 if(old_consumer)\r
108                 {\r
109                         auto str = old_consumer->print();\r
110                         old_consumer.reset();\r
111                         CASPAR_LOG(info) << print() << L" " << str << L" Removed.";\r
112                 }\r
113         }\r
114 \r
115         void remove(const safe_ptr<frame_consumer>& consumer)\r
116         {\r
117                 remove(consumer->index());\r
118         }\r
119         \r
120         void set_video_format_desc(const video_format_desc& format_desc)\r
121         {\r
122                 executor_.invoke([&]\r
123                 {\r
124                         auto it = consumers_.begin();\r
125                         while(it != consumers_.end())\r
126                         {                                               \r
127                                 try\r
128                                 {\r
129                                         it->second->initialize(format_desc, channel_index_);\r
130                                         ++it;\r
131                                 }\r
132                                 catch(...)\r
133                                 {\r
134                                         CASPAR_LOG_CURRENT_EXCEPTION();\r
135                                         CASPAR_LOG(info) << print() << L" " << it->second->print() << L" Removed.";\r
136                                         consumers_.erase(it++);\r
137                                 }\r
138                         }\r
139                         \r
140                         format_desc_ = format_desc;\r
141                         frames_.clear();\r
142                 });\r
143         }\r
144 \r
145         std::pair<int, int> minmax_buffer_depth() const\r
146         {               \r
147                 if(consumers_.empty())\r
148                         return std::make_pair(0, 0);\r
149                 \r
150                 auto buffer_depths = consumers_ | \r
151                                                          boost::adaptors::map_values | // std::function is MSVC workaround\r
152                                                          boost::adaptors::transformed(std::function<int(const safe_ptr<frame_consumer>&)>([](const safe_ptr<frame_consumer>& x){return x->buffer_depth();})); \r
153                 \r
154 \r
155                 return std::make_pair(*boost::range::min_element(buffer_depths), *boost::range::max_element(buffer_depths));\r
156         }\r
157 \r
158         bool has_synchronization_clock() const\r
159         {\r
160                 return boost::range::count_if(consumers_ | boost::adaptors::map_values, [](const safe_ptr<frame_consumer>& x){return x->has_synchronization_clock();}) > 0;\r
161         }\r
162                 \r
163         void operator()(safe_ptr<const data_frame> input_frame, const video_format_desc& format_desc)\r
164         {\r
165                 executor_.invoke([=]\r
166                 {\r
167                         try\r
168                         {                               \r
169                                 if(!has_synchronization_clock())\r
170                                         sync_timer_.tick(1.0/format_desc_.fps);\r
171                                 \r
172                                 if(format_desc_ != format_desc)\r
173                                         set_video_format_desc(format_desc);\r
174 \r
175                                 if(input_frame->image_data().size() != format_desc_.size)\r
176                                 {\r
177                                         sync_timer_.tick(1.0/format_desc_.fps);\r
178                                         return;\r
179                                 }\r
180                                         \r
181                                 auto minmax = minmax_buffer_depth();\r
182 \r
183                                 frames_.set_capacity(minmax.second - minmax.first + 1);\r
184                                 frames_.push_back(input_frame);\r
185 \r
186                                 if(!frames_.full())\r
187                                         return;\r
188 \r
189                                 auto it = consumers_.begin();\r
190                                 while(it != consumers_.end())\r
191                                 {\r
192                                         auto consumer   = it->second;\r
193                                         auto frame              = frames_.at(consumer->buffer_depth()-minmax.first);\r
194                                                 \r
195                                         try\r
196                                         {\r
197                                                 if(consumer->send(frame))\r
198                                                         ++it;\r
199                                                 else\r
200                                                 {\r
201                                                         CASPAR_LOG(info) << print() << L" " << it->second->print() << L" Removed.";\r
202                                                         consumers_.erase(it++);\r
203                                                 }\r
204                                         }\r
205                                         catch(...)\r
206                                         {\r
207                                                 CASPAR_LOG_CURRENT_EXCEPTION();\r
208                                                 try\r
209                                                 {\r
210                                                         consumer->initialize(format_desc_, channel_index_);\r
211                                                         if(consumer->send(frame))\r
212                                                                 ++it;\r
213                                                         else\r
214                                                         {\r
215                                                                 CASPAR_LOG(info) << print() << L" " << it->second->print() << L" Removed.";\r
216                                                                 consumers_.erase(it++);\r
217                                                         }\r
218                                                 }\r
219                                                 catch(...)\r
220                                                 {\r
221                                                         CASPAR_LOG_CURRENT_EXCEPTION();\r
222                                                         CASPAR_LOG(error) << "Failed to recover consumer: " << consumer->print() << L". Removing it.";\r
223                                                         consumers_.erase(it++);\r
224                                                 }\r
225                                         }\r
226                                 }\r
227                         }\r
228                         catch(...)\r
229                         {\r
230                                 CASPAR_LOG_CURRENT_EXCEPTION();\r
231                         }\r
232                 });\r
233         }\r
234 \r
235         std::wstring print() const\r
236         {\r
237                 return L"output[" + boost::lexical_cast<std::wstring>(channel_index_) + L"]";\r
238         }\r
239 \r
240         boost::unique_future<boost::property_tree::wptree> info()\r
241         {\r
242                 return std::move(executor_.begin_invoke([&]() -> boost::property_tree::wptree\r
243                 {                       \r
244                         boost::property_tree::wptree info;\r
245                         BOOST_FOREACH(auto& consumer, consumers_)\r
246                         {\r
247                                 info.add_child(L"consumers.consumer", consumer.second->info())\r
248                                         .add(L"index", consumer.first); \r
249                         }\r
250                         return info;\r
251                 }, high_priority));\r
252         }\r
253 };\r
254 \r
255 output::output(const video_format_desc& format_desc, int channel_index) : impl_(new impl(format_desc, channel_index)){}\r
256 void output::add(int index, const safe_ptr<frame_consumer>& consumer){impl_->add(index, consumer);}\r
257 void output::add(const safe_ptr<frame_consumer>& consumer){impl_->add(consumer);}\r
258 void output::remove(int index){impl_->remove(index);}\r
259 void output::remove(const safe_ptr<frame_consumer>& consumer){impl_->remove(consumer);}\r
260 boost::unique_future<boost::property_tree::wptree> output::info() const{return impl_->info();}\r
261 void output::operator()(safe_ptr<const data_frame> frame, const video_format_desc& format_desc){(*impl_)(std::move(frame), format_desc);}\r
262 }}