Another macOS std::list boost::thread SNAFU.
[dcpomatic.git] / src / lib / send_problem_report_job.cc
1 /*
2     Copyright (C) 2014-2017 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 "send_problem_report_job.h"
22 #include "compose.hpp"
23 #include "film.h"
24 #include "cross.h"
25 #include "film.h"
26 #include "log.h"
27 #include "version.h"
28 #include "emailer.h"
29 #include "environment_info.h"
30 #include <libxml++/libxml++.h>
31 #include <boost/foreach.hpp>
32
33 #include "i18n.h"
34
35 using std::string;
36 using std::list;
37 using boost::shared_ptr;
38
39 /** @param film Film thta the problem is with, or 0.
40  *  @param from Email address to use for From:
41  *  @param summary Summary of the problem.
42  */
43 SendProblemReportJob::SendProblemReportJob (
44         shared_ptr<const Film> film,
45         string from,
46         string summary
47         )
48         : Job (film)
49         , _from (from)
50         , _summary (summary)
51 {
52
53 }
54
55 string
56 SendProblemReportJob::name () const
57 {
58         if (!_film) {
59                 return _("Email problem report");
60         }
61
62         return String::compose (_("Email problem report for %1"), _film->name());
63 }
64
65 string
66 SendProblemReportJob::json_name () const
67 {
68         return N_("send_problem_report");
69 }
70
71 void
72 SendProblemReportJob::run ()
73 {
74         sub (_("Sending email"));
75         set_progress_unknown ();
76
77         string body = _summary + "\n\n";
78
79         body += "Version: " + string (dcpomatic_version) + " " + string (dcpomatic_git_commit) + "\n\n";
80
81         BOOST_FOREACH (string i, environment_info ()) {
82                 body += i + "\n";
83         }
84
85         body += "\n";
86
87         if (_film) {
88                 body += "log head and tail:\n";
89                 body += "---<8----\n";
90                 body += _film->log()->head_and_tail (4096);
91                 body += "---<8----\n\n";
92
93                 add_file (body, "ffprobe.log");
94
95                 body += "---<8----\n";
96                 body += _film->metadata()->write_to_string_formatted("UTF-8");
97                 body += "---<8----\n";
98         }
99
100         list<string> to;
101         to.push_back ("carl@dcpomatic.com");
102
103         Emailer emailer (_from, to, "DCP-o-matic problem report", body);
104         emailer.send ("main.carlh.net", 2525, EMAIL_PROTOCOL_STARTTLS);
105
106         set_progress (1);
107         set_state (FINISHED_OK);
108 }
109
110 void
111 SendProblemReportJob::add_file (string& body, boost::filesystem::path file) const
112 {
113         FILE* f = fopen_boost (_film->file (file), "r");
114         if (!f) {
115                 return;
116         }
117
118         body += file.string() + ":\n";
119         body += "---<8----\n";
120         uintmax_t const size = boost::filesystem::file_size (_film->file (file));
121         char* buffer = new char[size + 1];
122         int const N = fread (buffer, 1, size, f);
123         buffer[N] = '\0';
124         body += buffer;
125         delete[] buffer;
126         body += "---<8----\n\n";
127         fclose (f);
128 }