]> git.sesse.net Git - casparcg/blob - core/producer/frame_producer.h
2.0.2: Improved INFO.
[casparcg] / core / producer / frame_producer.h
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 #pragma once\r
21 \r
22 #include <common/memory/safe_ptr.h>\r
23 \r
24 #include <boost/noncopyable.hpp>\r
25 \r
26 #include <algorithm>\r
27 #include <functional>\r
28 #include <string>\r
29 #include <vector>\r
30 #include <stdint.h>\r
31 #include <numeric>\r
32 \r
33 #include <boost/thread/future.hpp>\r
34 #include <boost/property_tree/ptree.hpp>\r
35 \r
36 namespace caspar { \r
37         \r
38 class executor;\r
39         \r
40 namespace core {\r
41 \r
42 class basic_frame;\r
43 struct frame_factory;\r
44 \r
45 struct frame_producer : boost::noncopyable\r
46 {\r
47 public:\r
48         enum hints\r
49         {\r
50                 NO_HINT = 0,\r
51                 ALPHA_HINT = 1\r
52         };\r
53 \r
54         virtual ~frame_producer(){}     \r
55 \r
56         virtual std::wstring print() const = 0; // nothrow\r
57 \r
58         virtual boost::unique_future<std::wstring> call(const std::wstring&) \r
59         {\r
60                 boost::promise<std::wstring> promise;\r
61                 promise.set_value(L"");\r
62                 return promise.get_future();\r
63         }\r
64 \r
65         virtual boost::property_tree::wptree info() const\r
66         {\r
67                 boost::property_tree::wptree info;\r
68                 info.push_front(std::make_pair(L"producer", print()));\r
69                 return info;\r
70         }\r
71 \r
72         virtual safe_ptr<frame_producer> get_following_producer() const {return frame_producer::empty();}  // nothrow\r
73         virtual void set_leading_producer(const safe_ptr<frame_producer>&) {}  // nothrow\r
74                 \r
75         virtual int64_t nb_frames() const {return std::numeric_limits<int>::max();}\r
76         virtual int64_t file_nb_frames() const {return nb_frames();}\r
77 \r
78         virtual int64_t frame_number() const {return 0;}\r
79         virtual int64_t file_frame_number() const {return frame_number();}\r
80         \r
81         virtual safe_ptr<basic_frame> receive(int hints) = 0;\r
82         virtual safe_ptr<core::basic_frame> last_frame() const = 0;\r
83 \r
84         static const safe_ptr<frame_producer>& empty(); // nothrow\r
85 };\r
86 \r
87 safe_ptr<basic_frame> receive_and_follow(safe_ptr<frame_producer>& producer, int hints);\r
88 \r
89 typedef std::function<safe_ptr<core::frame_producer>(const safe_ptr<frame_factory>&, const std::vector<std::wstring>&)> producer_factory_t;\r
90 void register_producer_factory(const producer_factory_t& factory); // Not thread-safe.\r
91 safe_ptr<core::frame_producer> create_producer(const safe_ptr<frame_factory>&, const std::vector<std::wstring>& params);\r
92 safe_ptr<core::frame_producer> create_producer(const safe_ptr<frame_factory>&, const std::wstring& params);\r
93 safe_ptr<core::frame_producer> create_producer_destroy_proxy(safe_ptr<core::frame_producer>&& producer);\r
94 \r
95 template<typename T>\r
96 typename std::decay<T>::type get_param(const std::wstring& name, const std::vector<std::wstring>& params, T fail_value)\r
97 {       \r
98         auto it = std::find(params.begin(), params.end(), name);\r
99         if(it == params.end() || ++it == params.end())  \r
100                 return fail_value;\r
101         \r
102         T value = fail_value;\r
103         try\r
104         {\r
105                 value = boost::lexical_cast<std::decay<T>::type>(*it);\r
106         }\r
107         catch(boost::bad_lexical_cast&){}\r
108 \r
109         return value;\r
110 }\r
111 \r
112 }}\r