Fix _writer process shutdown a little.
[dcpomatic.git] / src / lib / copy_to_drive_job.cc
1 /*
2     Copyright (C) 2019-2020 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 #include "dist_writer_messages.h"
22 #include "copy_to_drive_job.h"
23 #include "compose.hpp"
24 #include "exceptions.h"
25 #include <dcp/raw_convert.h>
26 #include <nanomsg/nn.h>
27 #include <unistd.h>
28 #include <fcntl.h>
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <string.h>
32 #include <iostream>
33
34 #include "i18n.h"
35
36 using std::string;
37 using std::cout;
38 using std::min;
39 using boost::shared_ptr;
40 using dcp::raw_convert;
41
42 CopyToDriveJob::CopyToDriveJob (boost::filesystem::path dcp, Drive drive, Nanomsg& nanomsg)
43         : Job (shared_ptr<Film>())
44         , _dcp (dcp)
45         , _drive (drive)
46         , _nanomsg (nanomsg)
47 {
48
49 }
50
51 string
52 CopyToDriveJob::name () const
53 {
54         return String::compose (_("Copying %1 to %2"), _dcp.filename().string(), _drive.description());
55 }
56
57 string
58 CopyToDriveJob::json_name () const
59 {
60         return N_("copy");
61 }
62
63 void
64 CopyToDriveJob::run ()
65 {
66         _nanomsg.send(String::compose("W\n%1\n%2\n", _dcp.string(), _drive.internal_name()));
67
68         while (true) {
69                 string s = _nanomsg.blocking_get ();
70                 if (s == DIST_WRITER_OK) {
71                         set_state (FINISHED_OK);
72                         return;
73                 } else if (s == DIST_WRITER_ERROR) {
74                         string const m = _nanomsg.blocking_get ();
75                         string const n = _nanomsg.blocking_get ();
76                         throw CopyError (m, raw_convert<int>(n));
77                 } else if (s == DIST_WRITER_PROGRESS) {
78                         string p = _nanomsg.blocking_get();
79                         set_progress (raw_convert<float>(p));
80                 }
81         }
82 }