]> git.sesse.net Git - casparcg/blob - core/producer/frame_producer.h
a29e78d03a175fe224d5a4a3de7c54c5beef3be8
[casparcg] / core / producer / frame_producer.h
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 #pragma once\r
23 \r
24 #include <common/memory/safe_ptr.h>\r
25 #include <common/exception/exceptions.h>\r
26 \r
27 #include <boost/noncopyable.hpp>\r
28 \r
29 #include <algorithm>\r
30 #include <functional>\r
31 #include <string>\r
32 #include <vector>\r
33 #include <stdint.h>\r
34 #include <numeric>\r
35 \r
36 #include <boost/thread/future.hpp>\r
37 #include <boost/property_tree/ptree_fwd.hpp>\r
38 \r
39 namespace caspar { \r
40         \r
41 class executor;\r
42         \r
43 namespace core {\r
44 \r
45 class basic_frame;\r
46 struct frame_factory;\r
47 \r
48 struct frame_producer : boost::noncopyable\r
49 {\r
50 public:\r
51         enum hints\r
52         {\r
53                 NO_HINT = 0,\r
54                 ALPHA_HINT = 1,\r
55                 DEINTERLACE_HINT\r
56         };\r
57 \r
58         virtual ~frame_producer(){}     \r
59 \r
60         virtual std::wstring print() const = 0; // nothrow\r
61         virtual boost::property_tree::wptree info() const = 0;\r
62 \r
63         virtual boost::unique_future<std::wstring> call(const std::wstring&) \r
64         {\r
65                 BOOST_THROW_EXCEPTION(not_supported());\r
66         }\r
67 \r
68         virtual safe_ptr<frame_producer> get_following_producer() const {return frame_producer::empty();}  // nothrow\r
69         virtual void set_leading_producer(const safe_ptr<frame_producer>&) {}  // nothrow\r
70                 \r
71         virtual uint32_t nb_frames() const {return std::numeric_limits<uint32_t>::max();}\r
72         \r
73         virtual safe_ptr<basic_frame> receive(int hints) = 0;\r
74         virtual safe_ptr<core::basic_frame> last_frame() const = 0;\r
75         virtual safe_ptr<basic_frame> create_thumbnail_frame();\r
76 \r
77         static const safe_ptr<frame_producer>& empty(); // nothrow\r
78 };\r
79 \r
80 safe_ptr<basic_frame> receive_and_follow(safe_ptr<frame_producer>& producer, int hints);\r
81 \r
82 typedef std::function<safe_ptr<core::frame_producer>(const safe_ptr<frame_factory>&, const std::vector<std::wstring>&)> producer_factory_t;\r
83 void register_producer_factory(const producer_factory_t& factory); // Not thread-safe.\r
84 void register_thumbnail_producer_factory(const producer_factory_t& factory); // Not thread-safe.\r
85 safe_ptr<core::frame_producer> create_producer(const safe_ptr<frame_factory>&, const std::vector<std::wstring>& params);\r
86 safe_ptr<core::frame_producer> create_producer(const safe_ptr<frame_factory>&, const std::wstring& params);\r
87 safe_ptr<core::frame_producer> create_producer_destroy_proxy(safe_ptr<core::frame_producer> producer);\r
88 safe_ptr<core::frame_producer> create_producer_print_proxy(safe_ptr<core::frame_producer> producer);\r
89 safe_ptr<core::frame_producer> create_thumbnail_producer(const safe_ptr<frame_factory>& factory, const std::wstring& media_file);\r
90 \r
91 }}\r