1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
/*
Logger.cpp - it simple writes report to specific file
Copyright (C) 2009 Zdenek Prikryl (zprikryl@redhat.com)
Copyright (C) 2009 RedHat inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "Logger.h"
#include <fstream>
#include "PluginSettings.h"
#include <sstream>
#include "DebugDump.h"
#include "CommLayerInner.h"
CLogger::CLogger() :
m_sLogPath("/var/log/abrt-logger"),
m_bAppendLogs(true)
{}
void CLogger::LoadSettings(const std::string& pPath)
{
map_settings_t settings;
plugin_load_settings(pPath, settings);
if (settings.find("LogPath")!= settings.end())
{
m_sLogPath = settings["LogPath"];
}
if (settings.find("AppendLogs")!= settings.end())
{
m_bAppendLogs = settings["AppendLogs"] == "yes";
}
}
void CLogger::Report(const map_crash_report_t& pCrashReport, const std::string& pArgs)
{
comm_layer_inner_status("Creating a report...");
std::stringstream binaryFiles, commonFiles, bigTextFiles, additionalFiles, UUIDFile;
std::ofstream fOut;
map_crash_report_t::const_iterator it;
for (it = pCrashReport.begin(); it != pCrashReport.end(); it++)
{
if (it->second[CD_TYPE] == CD_TXT)
{
if (it->first != CD_UUID &&
it->first != FILENAME_ARCHITECTURE &&
it->first != FILENAME_KERNEL &&
it->first != FILENAME_PACKAGE)
{
additionalFiles << it->first << std::endl;
additionalFiles << "-----" << std::endl;
additionalFiles << it->second[CD_CONTENT] << std::endl << std::endl;
}
else if (it->first == CD_UUID)
{
UUIDFile << it->first << std::endl;
UUIDFile << "-----" << std::endl;
UUIDFile << it->second[CD_CONTENT] << std::endl << std::endl;
}
else
{
commonFiles << it->first << std::endl;
commonFiles << "-----" << std::endl;
commonFiles << it->second[CD_CONTENT] << std::endl << std::endl;
}
}
if (it->second[CD_TYPE] == CD_ATT)
{
bigTextFiles << it->first << std::endl;
bigTextFiles << "-----" << std::endl;
bigTextFiles << it->second[CD_CONTENT] << std::endl << std::endl;
}
if (it->second[CD_TYPE] == CD_BIN)
{
binaryFiles << it->first << std::endl;
binaryFiles << "-----" << std::endl;
binaryFiles << it->second[CD_CONTENT] << std::endl << std::endl;
}
}
if (m_bAppendLogs)
{
fOut.open(m_sLogPath.c_str(), std::ios::app);
}
else
{
fOut.open(m_sLogPath.c_str());
}
if (fOut.is_open())
{
fOut << "Duplicity check" << std::endl;
fOut << "======" << std::endl << std::endl;
fOut << UUIDFile.str() << std::endl;
fOut << "Common information" << std::endl;
fOut << "======" << std::endl << std::endl;
fOut << commonFiles.str() << std::endl;
fOut << "Additional information" << std::endl;
fOut << "======" << std::endl << std::endl;
fOut << additionalFiles.str() << std::endl;
fOut << "Big Text Files" << std::endl;
fOut << "======" << std::endl;
fOut << bigTextFiles.str() << std::endl;
fOut << "Binary files" << std::endl;
fOut << "======" << std::endl;
fOut << binaryFiles.str() << std::endl;
fOut << std::endl;
fOut.close();
}
}
|