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