Fix the build for older macOS.
[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 <cstdio>
26 #include <iostream>
27 #include <cerrno>
28
29
30 using std::cout;
31 using std::string;
32 using std::max;
33 using std::shared_ptr;
34
35
36 /** @param file Filename to write log to */
37 FileLog::FileLog (boost::filesystem::path file)
38         : _file (file)
39 {
40         set_types (Config::instance()->log_types());
41 }
42
43
44 FileLog::FileLog (boost::filesystem::path file, int types)
45         : _file (file)
46 {
47         set_types (types);
48 }
49
50
51 void
52 FileLog::do_log (shared_ptr<const LogEntry> entry)
53 {
54         auto f = fopen_boost (_file, "a");
55         if (!f) {
56                 cout << "(could not log to " << _file.string() << " error " << errno << "): " << entry->get() << "\n";
57                 return;
58         }
59
60         fprintf (f, "%s\n", entry->get().c_str());
61         fclose (f);
62 }
63
64
65 string
66 FileLog::head_and_tail (int amount) const
67 {
68         boost::mutex::scoped_lock lm (_mutex);
69
70         uintmax_t head_amount = amount;
71         uintmax_t tail_amount = amount;
72         uintmax_t size = boost::filesystem::file_size (_file);
73
74         if (size < (head_amount + tail_amount)) {
75                 head_amount = size;
76                 tail_amount = 0;
77         }
78
79         auto f = fopen_boost (_file, "r");
80         if (!f) {
81                 return "";
82         }
83
84         string out;
85
86         auto buffer = new char[max(head_amount, tail_amount) + 1];
87
88         int N = fread (buffer, 1, head_amount, f);
89         buffer[N] = '\0';
90         out += string (buffer);
91
92         if (tail_amount > 0) {
93                 out +=  "\n .\n .\n .\n";
94
95                 fseek (f, - tail_amount - 1, SEEK_END);
96
97                 N = fread (buffer, 1, tail_amount, f);
98                 buffer[N] = '\0';
99                 out += string (buffer) + "\n";
100         }
101
102         delete[] buffer;
103         fclose (f);
104
105         return out;
106 }