Supporters update.
[dcpomatic.git] / src / lib / file_log.cc
1 /*
2     Copyright (C) 2012-2021 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
22 #include "file_log.h"
23 #include "cross.h"
24 #include "config.h"
25 #include <dcp/file.h>
26 #include <dcp/filesystem.h>
27 #include <cstdio>
28 #include <iostream>
29 #include <cerrno>
30
31
32 using std::cout;
33 using std::string;
34 using std::max;
35 using std::shared_ptr;
36
37
38 /** @param file Filename to write log to */
39 FileLog::FileLog (boost::filesystem::path file)
40         : _file (file)
41 {
42         set_types (Config::instance()->log_types());
43 }
44
45
46 FileLog::FileLog (boost::filesystem::path file, int types)
47         : _file (file)
48 {
49         set_types (types);
50 }
51
52
53 void
54 FileLog::do_log (shared_ptr<const LogEntry> entry)
55 {
56         dcp::File f(_file, "a");
57         if (!f) {
58                 cout << "(could not log to " << _file.string() << " error " << errno << "): " << entry->get() << "\n";
59                 return;
60         }
61
62         fprintf(f.get(), "%s\n", entry->get().c_str());
63 }
64
65
66 string
67 FileLog::head_and_tail (int amount) const
68 {
69         boost::mutex::scoped_lock lm (_mutex);
70
71         uintmax_t head_amount = amount;
72         uintmax_t tail_amount = amount;
73         boost::system::error_code ec;
74         uintmax_t size = dcp::filesystem::file_size(_file, ec);
75         if (size == static_cast<uintmax_t>(-1)) {
76                 return "";
77         }
78
79         if (size < (head_amount + tail_amount)) {
80                 head_amount = size;
81                 tail_amount = 0;
82         }
83
84         dcp::File f(_file, "r");
85         if (!f) {
86                 return "";
87         }
88
89         string out;
90
91         std::vector<char> buffer(max(head_amount, tail_amount) + 1);
92
93         int N = f.read(buffer.data(), 1, head_amount);
94         buffer[N] = '\0';
95         out += string (buffer.data());
96
97         if (tail_amount > 0) {
98                 out +=  "\n .\n .\n .\n";
99
100                 f.seek(- tail_amount - 1, SEEK_END);
101
102                 N = f.read(buffer.data(), 1, tail_amount);
103                 buffer[N] = '\0';
104                 out += string(buffer.data()) + "\n";
105         }
106
107         return out;
108 }