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