]> git.sesse.net Git - casparcg/blob - modules/image/producer/image_producer.cpp
Refactored to use non-static data member initializers where it makes sense. Mixes...
[casparcg] / modules / image / producer / image_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 "image_producer.h"
23
24 #include "../util/image_loader.h"
25
26 #include <core/video_format.h>
27
28 #include <core/producer/frame_producer.h>
29 #include <core/producer/scene/const_producer.h>
30 #include <core/frame/frame.h>
31 #include <core/frame/draw_frame.h>
32 #include <core/frame/frame_factory.h>
33 #include <core/frame/pixel_format.h>
34 #include <core/monitor/monitor.h>
35
36 #include <common/env.h>
37 #include <common/log.h>
38 #include <common/array.h>
39 #include <common/base64.h>
40
41 #include <boost/filesystem.hpp>
42 #include <boost/property_tree/ptree.hpp>
43 #include <boost/algorithm/string.hpp>
44
45 #include <algorithm>
46 #include <set>
47
48 namespace caspar { namespace image {
49
50 std::pair<core::draw_frame, core::constraints> load_image(
51                 const spl::shared_ptr<core::frame_factory>& frame_factory,
52                 const std::wstring& filename)
53 {
54         auto bitmap = load_image(filename);
55         FreeImage_FlipVertical(bitmap.get());
56                 
57         core::pixel_format_desc desc = core::pixel_format::bgra;
58         auto width = FreeImage_GetWidth(bitmap.get());
59         auto height = FreeImage_GetHeight(bitmap.get());
60         desc.planes.push_back(core::pixel_format_desc::plane(width, height, 4));
61         auto frame = frame_factory->create_frame(bitmap.get(), desc);
62
63         std::copy_n(
64                         FreeImage_GetBits(bitmap.get()),
65                         frame.image_data(0).size(),
66                         frame.image_data(0).begin());
67         
68         return std::make_pair(
69                         core::draw_frame(std::move(frame)),
70                         core::constraints(width, height));
71 }
72
73 struct image_producer : public core::frame_producer_base
74 {       
75         core::monitor::subject                                          monitor_subject_;
76         const std::wstring                                                      description_;
77         const spl::shared_ptr<core::frame_factory>      frame_factory_;
78         core::draw_frame                                                        frame_                          = core::draw_frame::empty();
79         core::constraints                                                       constraints_;
80         
81         image_producer(const spl::shared_ptr<core::frame_factory>& frame_factory, const std::wstring& description) 
82                 : description_(description)
83                 , frame_factory_(frame_factory)
84         {
85                 load(load_image(description_));
86
87                 CASPAR_LOG(info) << print() << L" Initialized";
88         }
89
90         image_producer(const spl::shared_ptr<core::frame_factory>& frame_factory, const void* png_data, size_t size) 
91                 : description_(L"png from memory")
92                 , frame_factory_(frame_factory)
93         {
94                 load(load_png_from_memory(png_data, size));
95
96                 CASPAR_LOG(info) << print() << L" Initialized";
97         }
98
99         void load(const std::shared_ptr<FIBITMAP>& bitmap)
100         {
101                 FreeImage_FlipVertical(bitmap.get());
102                 core::pixel_format_desc desc;
103                 desc.format = core::pixel_format::bgra;
104                 desc.planes.push_back(core::pixel_format_desc::plane(FreeImage_GetWidth(bitmap.get()), FreeImage_GetHeight(bitmap.get()), 4));
105                 auto frame = frame_factory_->create_frame(this, desc);
106  
107                 std::copy_n(FreeImage_GetBits(bitmap.get()), frame.image_data().size(), frame.image_data().begin());
108                 frame_ = core::draw_frame(std::move(frame));
109                 constraints_.width.set(FreeImage_GetWidth(bitmap.get()));
110                 constraints_.height.set(FreeImage_GetHeight(bitmap.get()));
111         }
112         
113         // frame_producer
114
115         core::draw_frame receive_impl() override
116         {
117                 monitor_subject_ << core::monitor::message("/file/path") % description_;
118
119                 return frame_;
120         }
121
122         core::draw_frame create_thumbnail_frame() override
123         {
124                 return frame_;
125         }
126
127         core::constraints& pixel_constraints() override
128         {
129                 return constraints_;
130         }
131                         
132         std::wstring print() const override
133         {
134                 return L"image_producer[" + description_ + L"]";
135         }
136
137         std::wstring name() const override
138         {
139                 return L"image";
140         }
141
142         boost::property_tree::wptree info() const override
143         {
144                 boost::property_tree::wptree info;
145                 info.add(L"type", L"image");
146                 info.add(L"location", description_);
147                 return info;
148         }
149
150         core::monitor::subject& monitor_output() 
151         {
152                 return monitor_subject_;
153         }
154 };
155
156 class ieq
157 {
158         std::wstring test_;
159 public:
160         ieq(const std::wstring& test)
161                 : test_(test)
162         {
163         }
164
165         bool operator()(const std::wstring& elem) const
166         {
167                 return boost::iequals(elem, test_);
168         }
169 };
170
171 spl::shared_ptr<core::frame_producer> create_producer(const spl::shared_ptr<core::frame_factory>& frame_factory, const core::video_format_desc& format_desc, const std::vector<std::wstring>& params)
172 {
173         static const auto extensions = {
174                 L".png",
175                 L".tga",
176                 L".bmp",
177                 L".jpg",
178                 L".jpeg",
179                 L".gif",
180                 L".tiff",
181                 L".tif",
182                 L".jp2",
183                 L".jpx",
184                 L".j2k",
185                 L".j2c"
186         };
187
188         if (boost::iequals(params[0], L"[IMG_SEQUENCE]"))
189         {
190                 if (params.size() != 2)
191                         return core::frame_producer::empty();
192
193                 auto dir = boost::filesystem::path(env::media_folder() + params[1]).parent_path();
194                 auto basename = boost::filesystem::basename(params[1]);
195                 std::set<std::wstring> files;
196                 boost::filesystem::directory_iterator end;
197
198                 for (boost::filesystem::directory_iterator it(dir); it != end; ++it)
199                 {
200                         auto name = it->path().filename().wstring();
201
202                         if (!boost::algorithm::istarts_with(name, basename))
203                                 continue;
204
205                         auto extension = it->path().extension().wstring();
206
207                         if (std::find_if(extensions.begin(), extensions.end(), ieq(extension)) == extensions.end())
208                                 continue;
209
210                         files.insert(it->path().wstring());
211                 }
212
213                 if (files.empty())
214                         return core::frame_producer::empty();
215
216                 int width = -1;
217                 int height = -1;
218                 std::vector<core::draw_frame> frames;
219                 frames.reserve(files.size());
220
221                 for (auto& file : files)
222                 {
223                         auto frame = load_image(frame_factory, file);
224
225                         if (width == -1)
226                         {
227                                 width = static_cast<int>(frame.second.width.get());
228                                 height = static_cast<int>(frame.second.height.get());
229                         }
230
231                         frames.push_back(std::move(frame.first));
232                 }
233
234                 return core::create_const_producer(std::move(frames), width, height);
235         }
236         else if(boost::iequals(params[0], L"[PNG_BASE64]"))
237         {
238                 if (params.size() < 2)
239                         return core::frame_producer::empty();
240
241                 auto png_data = from_base64(std::string(params[1].begin(), params[1].end()));
242
243                 return spl::make_shared<image_producer>(frame_factory, png_data.data(), png_data.size());
244         }
245
246         std::wstring filename = env::media_folder() + params[0];
247
248         auto ext = std::find_if(extensions.begin(), extensions.end(), [&](const std::wstring& ex) -> bool
249                 {                       
250                         return boost::filesystem::is_regular_file(boost::filesystem::path(filename).replace_extension(ex));
251                 });
252
253         if(ext == extensions.end())
254                 return core::frame_producer::empty();
255
256         return spl::make_shared<image_producer>(frame_factory, filename + *ext);
257 }
258
259
260 spl::shared_ptr<core::frame_producer> create_thumbnail_producer(const spl::shared_ptr<core::frame_factory>& frame_factory, const core::video_format_desc& format_desc, const std::vector<std::wstring>& params)
261 {
262         return caspar::image::create_producer(frame_factory, format_desc, params);
263 }
264 }}