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