Split log.{cc,h}.
[dcpomatic.git] / src / lib / file_log.cc
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "file_log.h"
21 #include "cross.h"
22 #include <cstdio>
23
24 using std::cout;
25 using std::string;
26 using std::max;
27
28 /** @param file Filename to write log to */
29 FileLog::FileLog (boost::filesystem::path file)
30         : _file (file)
31 {
32
33 }
34
35 void
36 FileLog::do_log (string m)
37 {
38         FILE* f = fopen_boost (_file, "a");
39         if (!f) {
40                 cout << "(could not log to " << _file.string() << "): " << m << "\n";
41                 return;
42         }
43
44         fprintf (f, "%s\n", m.c_str ());
45         fclose (f);
46 }
47
48 string
49 FileLog::head_and_tail (int amount) const
50 {
51         boost::mutex::scoped_lock lm (_mutex);
52
53         uintmax_t head_amount = amount;
54         uintmax_t tail_amount = amount;
55         uintmax_t size = boost::filesystem::file_size (_file);
56
57         if (size < (head_amount + tail_amount)) {
58                 head_amount = size;
59                 tail_amount = 0;
60         }
61
62         FILE* f = fopen_boost (_file, "r");
63         if (!f) {
64                 return "";
65         }
66
67         string out;
68
69         char* buffer = new char[max(head_amount, tail_amount) + 1];
70
71         int N = fread (buffer, 1, head_amount, f);
72         buffer[N] = '\0';
73         out += string (buffer);
74
75         if (tail_amount > 0) {
76                 out +=  "\n .\n .\n .\n";
77
78                 fseek (f, - tail_amount - 1, SEEK_END);
79
80                 N = fread (buffer, 1, tail_amount, f);
81                 buffer[N] = '\0';
82                 out += string (buffer) + "\n";
83         }
84
85         delete[] buffer;
86         fclose (f);
87
88         return out;
89 }