]> git.sesse.net Git - casparcg/blob - core/consumer/output.cpp
2.0.2: - Send index information to consumers.
[casparcg] / core / consumer / output.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 // TODO: Try to recover consumer from bad_alloc...\r
21 #include "../StdAfx.h"\r
22 \r
23 #ifdef _MSC_VER\r
24 #pragma warning (disable : 4244)\r
25 #endif\r
26 \r
27 #include "output.h"\r
28 \r
29 #include "../video_format.h"\r
30 #include "../mixer/gpu/ogl_device.h"\r
31 #include "../mixer/read_frame.h"\r
32 \r
33 #include <common/concurrency/executor.h>\r
34 #include <common/utility/assert.h>\r
35 #include <common/utility/timer.h>\r
36 #include <common/memory/memshfl.h>\r
37 #include <common/env.h>\r
38 \r
39 #include <boost/circular_buffer.hpp>\r
40 #include <boost/timer.hpp>\r
41 \r
42 namespace caspar { namespace core {\r
43 \r
44 struct output::implementation\r
45 {       \r
46         typedef std::pair<safe_ptr<read_frame>, safe_ptr<read_frame>> fill_and_key;\r
47         \r
48         const int                                               channel_index_;\r
49         safe_ptr<diagnostics::graph>    graph_;\r
50         boost::timer                                    consume_timer_;\r
51 \r
52         video_format_desc                               format_desc_;\r
53 \r
54         std::map<int, safe_ptr<frame_consumer>> consumers_;\r
55         typedef std::map<int, safe_ptr<frame_consumer>>::value_type layer_t;\r
56         \r
57         high_prec_timer timer_;\r
58 \r
59         boost::circular_buffer<safe_ptr<read_frame>> frames_;\r
60 \r
61         tbb::concurrent_bounded_queue<std::shared_ptr<read_frame>> input_;\r
62 \r
63         executor executor_;\r
64                 \r
65 public:\r
66         implementation(const safe_ptr<diagnostics::graph>& graph, const video_format_desc& format_desc, int channel_index) \r
67                 : channel_index_(channel_index)\r
68                 , graph_(graph)\r
69                 , format_desc_(format_desc)\r
70                 , executor_(L"output")\r
71         {\r
72                 graph_->set_color("consume-time", diagnostics::color(1.0f, 0.4f, 0.0f));\r
73         }       \r
74         \r
75         void add(int index, safe_ptr<frame_consumer>&& consumer)\r
76         {               \r
77                 executor_.invoke([&]\r
78                 {\r
79                         consumers_.erase(index);\r
80                 });\r
81 \r
82                 consumer->initialize(format_desc_, channel_index_, index);\r
83 \r
84                 executor_.invoke([&]\r
85                 {\r
86                         consumers_.insert(std::make_pair(index, consumer));\r
87 \r
88                         CASPAR_LOG(info) << print() << L" " << consumer->print() << L" Added.";\r
89                 });\r
90         }\r
91 \r
92         void remove(int index)\r
93         {\r
94                 executor_.invoke([&]\r
95                 {\r
96                         auto it = consumers_.find(index);\r
97                         if(it != consumers_.end())\r
98                         {\r
99                                 CASPAR_LOG(info) << print() << L" " << it->second->print() << L" Removed.";\r
100                                 consumers_.erase(it);\r
101                         }\r
102                 });\r
103         }\r
104         \r
105         void set_video_format_desc(const video_format_desc& format_desc)\r
106         {\r
107                 executor_.invoke([&]\r
108                 {\r
109                         format_desc_ = format_desc;\r
110 \r
111                         auto it = consumers_.begin();\r
112                         while(it != consumers_.end())\r
113                         {                                               \r
114                                 try\r
115                                 {\r
116                                         it->second->initialize(format_desc_, channel_index_, it->first);\r
117                                         ++it;\r
118                                 }\r
119                                 catch(...)\r
120                                 {\r
121                                         CASPAR_LOG_CURRENT_EXCEPTION();\r
122                                         consumers_.erase(it++);\r
123                                 }\r
124                         }\r
125 \r
126                         frames_.clear();\r
127                 });\r
128         }\r
129                         \r
130         std::pair<size_t, size_t> minmax_buffer_depth() const\r
131         {               \r
132                 if(consumers_.empty())\r
133                         return std::make_pair(0, 0);\r
134                 std::vector<size_t> buffer_depths;\r
135                 std::transform(consumers_.begin(), consumers_.end(), std::back_inserter(buffer_depths), [](const decltype(*consumers_.begin())& pair)\r
136                 {\r
137                         return pair.second->buffer_depth();\r
138                 });\r
139                 std::sort(buffer_depths.begin(), buffer_depths.end());\r
140                 auto min = buffer_depths.front();\r
141                 auto max = buffer_depths.back();\r
142                 return std::make_pair(min, max);\r
143         }\r
144 \r
145         void send(const std::pair<safe_ptr<read_frame>, ticket>& packet)\r
146         {\r
147                 executor_.begin_invoke([=]\r
148                 {\r
149                         try\r
150                         {\r
151                                 consume_timer_.restart();\r
152 \r
153                                 auto input_frame = packet.first;\r
154 \r
155                                 if(!has_synchronization_clock())\r
156                                         timer_.tick(1.0/format_desc_.fps);\r
157 \r
158                                 if(input_frame->image_size() != format_desc_.size)\r
159                                 {\r
160                                         timer_.tick(1.0/format_desc_.fps);\r
161                                         return;\r
162                                 }\r
163                                         \r
164                                 const auto minmax = minmax_buffer_depth();\r
165 \r
166                                 frames_.set_capacity(minmax.second - minmax.first + 1);\r
167                                 frames_.push_back(input_frame);\r
168 \r
169                                 if(!frames_.full())\r
170                                         return;\r
171 \r
172                                 auto it = consumers_.begin();\r
173                                 while(it != consumers_.end())\r
174                                 {\r
175                                         auto consumer   = it->second;\r
176                                         auto frame              = frames_.at(consumer->buffer_depth()-minmax.first);\r
177                                                 \r
178                                         try\r
179                                         {\r
180                                                 if(consumer->send(frame))\r
181                                                         ++it;\r
182                                                 else\r
183                                                         consumers_.erase(it++);\r
184                                         }\r
185                                         catch(...)\r
186                                         {\r
187                                                 CASPAR_LOG_CURRENT_EXCEPTION();\r
188                                                 try\r
189                                                 {\r
190                                                         consumer->initialize(format_desc_, channel_index_, it->first);\r
191                                                         if(consumer->send(frame))\r
192                                                                 ++it;\r
193                                                         else\r
194                                                                 consumers_.erase(it++);\r
195                                                 }\r
196                                                 catch(...)\r
197                                                 {\r
198                                                         CASPAR_LOG_CURRENT_EXCEPTION();\r
199                                                         CASPAR_LOG(error) << "Failed to recover consumer: " << consumer->print() << L". Removing it.";\r
200                                                         consumers_.erase(it++);\r
201                                                 }\r
202                                         }\r
203                                 }\r
204                                                 \r
205                                 graph_->update_value("consume-time", consume_timer_.elapsed()*format_desc_.fps*0.5);\r
206                         }\r
207                         catch(...)\r
208                         {\r
209                                 CASPAR_LOG_CURRENT_EXCEPTION();\r
210                         }\r
211                 });\r
212         }\r
213 \r
214 private:\r
215         \r
216         bool has_synchronization_clock()\r
217         {\r
218                 return std::any_of(consumers_.begin(), consumers_.end(), [](const decltype(*consumers_.begin())& p)\r
219                 {\r
220                         return p.second->has_synchronization_clock();\r
221                 });\r
222         }\r
223         \r
224         std::wstring print() const\r
225         {\r
226                 return L"output";\r
227         }\r
228 };\r
229 \r
230 output::output(const safe_ptr<diagnostics::graph>& graph, const video_format_desc& format_desc, int channel_index) : impl_(new implementation(graph, format_desc, channel_index)){}\r
231 void output::add(int index, safe_ptr<frame_consumer>&& consumer){impl_->add(index, std::move(consumer));}\r
232 void output::remove(int index){impl_->remove(index);}\r
233 void output::send(const std::pair<safe_ptr<read_frame>, ticket>& frame) {impl_->send(frame); }\r
234 void output::set_video_format_desc(const video_format_desc& format_desc){impl_->set_video_format_desc(format_desc);}\r
235 }}