]> git.sesse.net Git - casparcg/blob - modules/reroute/producer/reroute_producer.cpp
manually merged a72be89 from master
[casparcg] / modules / reroute / producer / reroute_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 "reroute_producer.h"
25
26 #include <core/producer/frame_producer.h>
27 #include <core/frame/draw_frame.h>
28 #include <core/frame/frame_factory.h>
29 #include <core/frame/pixel_format.h>
30 #include <core/frame/frame.h>
31 #include <core/video_channel.h>
32 #include <core/producer/stage.h>
33
34 #include <common/except.h>
35 #include <common/diagnostics/graph.h>
36 #include <common/log.h>
37 #include <common/reactive.h>
38
39 #include <asmlib.h>
40
41 #include <tbb/concurrent_queue.h>
42
43 #include <boost/property_tree/ptree.hpp>
44 #include <boost/foreach.hpp>
45 #include <boost/optional.hpp>
46 #include <boost/range/algorithm_ext/push_back.hpp>
47 #include <boost/range/numeric.hpp>
48 #include <boost/range/adaptor/map.hpp>
49
50 #include <queue>
51
52 namespace caspar { namespace reroute {
53                 
54 class reroute_producer : public reactive::observer<std::map<int, core::draw_frame>>
55                                            , public core::frame_producer_base
56 {
57         core::constraints                                                                                               constraints_;
58         const spl::shared_ptr<diagnostics::graph>                                               graph_;
59         
60         tbb::concurrent_bounded_queue<std::map<int, core::draw_frame>>  input_buffer_;
61 public:
62         explicit reroute_producer() 
63         {
64                 graph_->set_color("late-frame", diagnostics::color(0.6f, 0.3f, 0.3f));
65                 graph_->set_color("dropped-frame", diagnostics::color(0.3f, 0.6f, 0.3f));
66                 graph_->set_text(print());
67                 diagnostics::register_graph(graph_);
68
69                 input_buffer_.set_capacity(1);
70         }
71                 
72         // observable
73
74         void on_next(const std::map<int, core::draw_frame>& frames)
75         {
76                 if(!input_buffer_.try_push(frames))
77                         graph_->set_tag("dropped-frame");               
78         }
79
80         // frame_producer
81                         
82         core::draw_frame receive_impl() override
83         {               
84                 std::map<int, core::draw_frame> frames;
85                 if(!input_buffer_.try_pop(frames))
86                 {
87                         graph_->set_tag("late-frame");
88                         return core::draw_frame::late();                
89                 }
90
91                 return boost::accumulate(frames | boost::adaptors::map_values, core::draw_frame::empty(), core::draw_frame::over);
92         }
93
94         core::constraints& pixel_constraints() override
95         {
96                 return constraints_;
97         }
98                 
99         std::wstring print() const override
100         {
101                 return L"reroute[]";
102         }
103
104         std::wstring name() const override
105         {
106                 return L"reroute";
107         }
108
109         boost::property_tree::wptree info() const override
110         {
111                 boost::property_tree::wptree info;
112                 info.add(L"type", L"rerotue-producer");
113                 return info;
114         }
115                 
116         monitor::source& monitor_output()
117         {
118                 static monitor::subject monitor_subject(""); return monitor_subject;
119         }
120 };
121
122 spl::shared_ptr<core::frame_producer> create_producer(core::video_channel& channel)
123 {
124         auto producer = spl::make_shared<reroute_producer>();
125         
126         std::weak_ptr<reactive::observer<std::map<int, core::draw_frame>>> o = producer;
127
128         //channel.stage().monitor_output().link_target.subscribe(o);
129
130         return producer;
131 }
132
133 }}