Make terminate_threads() less likely to leave _threads containing invalid pointers.
[dcpomatic.git] / src / lib / dcp_video.cc
1 /*
2     Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic 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 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic 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 DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /** @file  src/dcp_video_frame.cc
22  *  @brief A single frame of video destined for a DCP.
23  *
24  *  Given an Image and some settings, this class knows how to encode
25  *  the image to J2K either on the local host or on a remote server.
26  *
27  *  Objects of this class are used for the queue that we keep
28  *  of images that require encoding.
29  */
30
31 #include "dcp_video.h"
32 #include "config.h"
33 #include "exceptions.h"
34 #include "encode_server_description.h"
35 #include "dcpomatic_socket.h"
36 #include "image.h"
37 #include "log.h"
38 #include "dcpomatic_log.h"
39 #include "cross.h"
40 #include "player_video.h"
41 #include "compose.hpp"
42 #include <libcxml/cxml.h>
43 #include <dcp/raw_convert.h>
44 #include <dcp/openjpeg_image.h>
45 #include <dcp/rgb_xyz.h>
46 #include <dcp/j2k.h>
47 #include <libxml++/libxml++.h>
48 #include <boost/asio.hpp>
49 #include <boost/thread.hpp>
50 #include <stdint.h>
51 #include <iomanip>
52 #include <iostream>
53
54 #include "i18n.h"
55
56 using std::string;
57 using std::cout;
58 using boost::shared_ptr;
59 using dcp::Size;
60 using dcp::Data;
61 using dcp::raw_convert;
62
63 #define DCI_COEFFICENT (48.0 / 52.37)
64
65 /** Construct a DCP video frame.
66  *  @param frame Input frame.
67  *  @param index Index of the frame within the DCP.
68  *  @param bw J2K bandwidth to use (see Config::j2k_bandwidth ())
69  */
70 DCPVideo::DCPVideo (
71         shared_ptr<const PlayerVideo> frame, int index, int dcp_fps, int bw, Resolution r
72         )
73         : _frame (frame)
74         , _index (index)
75         , _frames_per_second (dcp_fps)
76         , _j2k_bandwidth (bw)
77         , _resolution (r)
78 {
79
80 }
81
82 DCPVideo::DCPVideo (shared_ptr<const PlayerVideo> frame, shared_ptr<const cxml::Node> node)
83         : _frame (frame)
84 {
85         _index = node->number_child<int> ("Index");
86         _frames_per_second = node->number_child<int> ("FramesPerSecond");
87         _j2k_bandwidth = node->number_child<int> ("J2KBandwidth");
88         _resolution = Resolution (node->optional_number_child<int>("Resolution").get_value_or (RESOLUTION_2K));
89 }
90
91 shared_ptr<dcp::OpenJPEGImage>
92 DCPVideo::convert_to_xyz (shared_ptr<const PlayerVideo> frame, dcp::NoteHandler note)
93 {
94         shared_ptr<dcp::OpenJPEGImage> xyz;
95
96         shared_ptr<Image> image = frame->image (bind (&PlayerVideo::keep_xyz_or_rgb, _1), true, false);
97         if (frame->colour_conversion()) {
98                 xyz = dcp::rgb_to_xyz (
99                         image->data()[0],
100                         image->size(),
101                         image->stride()[0],
102                         frame->colour_conversion().get(),
103                         note
104                         );
105         } else {
106                 xyz.reset (new dcp::OpenJPEGImage (image->data()[0], image->size(), image->stride()[0]));
107         }
108
109         return xyz;
110 }
111
112 /** J2K-encode this frame on the local host.
113  *  @return Encoded data.
114  */
115 Data
116 DCPVideo::encode_locally ()
117 {
118         Data enc = compress_j2k (
119                 convert_to_xyz (_frame, boost::bind(&Log::dcp_log, dcpomatic_log.get(), _1, _2)),
120                 _j2k_bandwidth,
121                 _frames_per_second,
122                 _frame->eyes() == EYES_LEFT || _frame->eyes() == EYES_RIGHT,
123                 _resolution == RESOLUTION_4K
124                 );
125
126         switch (_frame->eyes()) {
127         case EYES_BOTH:
128                 LOG_DEBUG_ENCODE (N_("Finished locally-encoded frame %1 for mono"), _index);
129                 break;
130         case EYES_LEFT:
131                 LOG_DEBUG_ENCODE (N_("Finished locally-encoded frame %1 for L"), _index);
132                 break;
133         case EYES_RIGHT:
134                 LOG_DEBUG_ENCODE (N_("Finished locally-encoded frame %1 for R"), _index);
135                 break;
136         default:
137                 break;
138         }
139
140         return enc;
141 }
142
143 /** Send this frame to a remote server for J2K encoding, then read the result.
144  *  @param serv Server to send to.
145  *  @param timeout timeout in seconds.
146  *  @return Encoded data.
147  */
148 Data
149 DCPVideo::encode_remotely (EncodeServerDescription serv, int timeout)
150 {
151         boost::asio::io_service io_service;
152         boost::asio::ip::tcp::resolver resolver (io_service);
153         boost::asio::ip::tcp::resolver::query query (serv.host_name(), raw_convert<string> (ENCODE_FRAME_PORT));
154         boost::asio::ip::tcp::resolver::iterator endpoint_iterator = resolver.resolve (query);
155
156         shared_ptr<Socket> socket (new Socket (timeout));
157
158         socket->connect (*endpoint_iterator);
159
160         /* Collect all XML metadata */
161         xmlpp::Document doc;
162         xmlpp::Element* root = doc.create_root_node ("EncodingRequest");
163         root->add_child("Version")->add_child_text (raw_convert<string> (SERVER_LINK_VERSION));
164         add_metadata (root);
165
166         LOG_DEBUG_ENCODE (N_("Sending frame %1 to remote"), _index);
167
168         /* Send XML metadata */
169         string xml = doc.write_to_string ("UTF-8");
170         socket->write (xml.length() + 1);
171         socket->write ((uint8_t *) xml.c_str(), xml.length() + 1);
172
173         /* Send binary data */
174         LOG_TIMING("start-remote-send thread=%1", thread_id ());
175         _frame->send_binary (socket);
176
177         /* Read the response (JPEG2000-encoded data); this blocks until the data
178            is ready and sent back.
179         */
180         LOG_TIMING("start-remote-encode thread=%1", thread_id ());
181         Data e (socket->read_uint32 ());
182         LOG_TIMING("start-remote-receive thread=%1", thread_id ());
183         socket->read (e.data().get(), e.size());
184         LOG_TIMING("finish-remote-receive thread=%1", thread_id ());
185
186         LOG_DEBUG_ENCODE (N_("Finished remotely-encoded frame %1"), _index);
187
188         return e;
189 }
190
191 void
192 DCPVideo::add_metadata (xmlpp::Element* el) const
193 {
194         el->add_child("Index")->add_child_text (raw_convert<string> (_index));
195         el->add_child("FramesPerSecond")->add_child_text (raw_convert<string> (_frames_per_second));
196         el->add_child("J2KBandwidth")->add_child_text (raw_convert<string> (_j2k_bandwidth));
197         el->add_child("Resolution")->add_child_text (raw_convert<string> (int (_resolution)));
198         _frame->add_metadata (el);
199 }
200
201 Eyes
202 DCPVideo::eyes () const
203 {
204         return _frame->eyes ();
205 }
206
207 /** @return true if this DCPVideo is definitely the same as another;
208  *  (apart from the frame index), false if it is probably not.
209  */
210 bool
211 DCPVideo::same (shared_ptr<const DCPVideo> other) const
212 {
213         if (_frames_per_second != other->_frames_per_second ||
214             _j2k_bandwidth != other->_j2k_bandwidth ||
215             _resolution != other->_resolution) {
216                 return false;
217         }
218
219         return _frame->same (other->_frame);
220 }