-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLogFormatter_html.cpp
102 lines (73 loc) · 2.3 KB
/
LogFormatter_html.cpp
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
/******************************************************************************
* LogFormatter_html.cpp
*
* Transform a plain log message into HTML5 format.
*
* Copyright (C) 2012-2016 Pietro Mele
* Released under a GPL 3 license.
*
*
*****************************************************************************/
#include "LogFormatter.hpp"
#include "textModeFormatting.h"
#include <sstream>
namespace log_viewer {
std::string LogFormatter::FormatHTML(const std::string &_log,
int _level,
const std::string &_file,
char _tag,
int _logNumber) const
{
using namespace textModeFormatting;
std::string htmlLog;
htmlLog += "\t\t"; // indent with the <body> block
htmlLog += "<br>";
if(!_file.empty())
htmlLog += _file + ": ";
if(_logNumber > 0)
htmlLog += std::to_string(_logNumber) + ": ";
htmlLog += _tag
+ std::string("<span style=\"")
+ htmlLevel[_level]
+ std::string("\">")
+ _log
+ std::string("</span>");
return htmlLog;
}
std::string LogFormatter::HeaderHTML() const
{
using namespace textModeFormatting;
std::stringstream htmlHeader;
htmlHeader << "<!DOCTYPE html>\n"
<< "<html>\n"
<< "\n"
<< " <head>\n"
<< " <link rel=\"stylesheet\" type=\"text/css\" href=\"" << cssFile << "\">\n"
<< " <meta charset=\"UTF-8\">\n"
<< " <title>" << title << "</title>\n"
<< " </head>\n"
<< "\n"
<< " <body>\n";
return htmlHeader.str();
}
std::string LogFormatter::TitleHTML() const
{
using namespace textModeFormatting;
std::stringstream htmlTitle;
htmlTitle << " <span style=\"color:grey;\">\n"
<< " <br>------------------------------------------------------------\n"
<< " <br>" << title << "\n"
<< " <br>------------------------------------------------------------\n"
<< " </span>\n";
return htmlTitle.str();
}
std::string LogFormatter::FooterHTML() const
{
std::stringstream htmlFooter;
htmlFooter << " </body>\n"
<< "</html>\n"
<< "\n";
return htmlFooter.str();
}
} // log_viewer