No-op; fix GPL address and use the explicit-program-name version.
[dcpomatic.git] / src / lib / file_log.cc
1 /*
2     Copyright (C) 2012 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 "file_log.h"
22 #include "cross.h"
23 #include <cstdio>
24 #include <iostream>
25
26 using std::cout;
27 using std::string;
28 using std::max;
29 using boost::shared_ptr;
30
31 /** @param file Filename to write log to */
32 FileLog::FileLog (boost::filesystem::path file)
33         : _file (file)
34 {
35
36 }
37
38 void
39 FileLog::do_log (shared_ptr<const LogEntry> entry)
40 {
41         FILE* f = fopen_boost (_file, "a");
42         if (!f) {
43                 cout << "(could not log to " << _file.string() << "): " << entry.get() << "\n";
44                 return;
45         }
46
47         fprintf (f, "%s\n", entry->get().c_str ());
48         fclose (f);
49 }
50
51 string
52 FileLog::head_and_tail (int amount) const
53 {
54         boost::mutex::scoped_lock lm (_mutex);
55
56         uintmax_t head_amount = amount;
57         uintmax_t tail_amount = amount;
58         uintmax_t size = boost::filesystem::file_size (_file);
59
60         if (size < (head_amount + tail_amount)) {
61                 head_amount = size;
62                 tail_amount = 0;
63         }
64
65         FILE* f = fopen_boost (_file, "r");
66         if (!f) {
67                 return "";
68         }
69
70         string out;
71
72         char* buffer = new char[max(head_amount, tail_amount) + 1];
73
74         int N = fread (buffer, 1, head_amount, f);
75         buffer[N] = '\0';
76         out += string (buffer);
77
78         if (tail_amount > 0) {
79                 out +=  "\n .\n .\n .\n";
80
81                 fseek (f, - tail_amount - 1, SEEK_END);
82
83                 N = fread (buffer, 1, tail_amount, f);
84                 buffer[N] = '\0';
85                 out += string (buffer) + "\n";
86         }
87
88         delete[] buffer;
89         fclose (f);
90
91         return out;
92 }