]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/joblog/joblog.cpp
Riccardo's patch of joblog.
[bacula/bacula] / bacula / src / qt-console / joblog / joblog.cpp
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2007-2008 Free Software Foundation Europe e.V.
5
6    The main author of Bacula is Kern Sibbald, with contributions from
7    many others, a complete list can be found in the file AUTHORS.
8    This program is Free Software; you can redistribute it and/or
9    modify it under the terms of version two of the GNU General Public
10    License as published by the Free Software Foundation and included
11    in the file LICENSE.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23    Bacula® is a registered trademark of John Walker.
24    The licensor of Bacula is the Free Software Foundation Europe
25    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
26    Switzerland, email:ftf@fsfeurope.org.
27 */
28  
29 /*
30  *   Version $Id$
31  *
32  *  JobLog Class
33  *
34  *   Dirk Bartley, March 2007
35  *
36  */ 
37
38 #include "bat.h"
39 #include "joblog.h"
40
41 JobLog::JobLog(QString &jobId, QTreeWidgetItem *parentTreeWidgetItem)
42 {
43    setupUi(this);
44    m_name = tr("JobLog");
45    m_closeable = true;
46    pgInitialize(parentTreeWidgetItem);
47    QTreeWidgetItem* thisitem = mainWin->getFromHash(this);
48    thisitem->setIcon(0,QIcon(QString::fromUtf8(":images/joblog.png")));
49    m_cursor = new QTextCursor(textEdit->document());
50
51    m_jobId = jobId;
52    getFont();
53    populateText();
54
55    dockPage();
56    setCurrent();
57 }
58
59 void JobLog::getFont()
60 {
61    QFont font = textEdit->font();
62
63    QString dirname;
64    m_console->getDirResName(dirname);
65    QSettings settings(dirname, "bat");
66    settings.beginGroup("Console");
67    font.setFamily(settings.value("consoleFont", "Courier").value<QString>());
68    font.setPointSize(settings.value("consolePointSize", 10).toInt());
69    font.setFixedPitch(settings.value("consoleFixedPitch", true).toBool());
70    settings.endGroup();
71    textEdit->setFont(font);
72 }
73
74 /*
75  * Populate the text in the window
76  */
77 void JobLog::populateText()
78 {
79    if (!m_console->preventInUseConnect())
80       return;
81      
82    QString query;
83    query = "SELECT Time, LogText FROM Log WHERE JobId='" + m_jobId + "' order by Time";
84
85    /* This could be a log item */
86    if (mainWin->m_sqlDebug) {
87       Pmsg1(000, "Log query cmd : %s\n", query.toUtf8().data());
88    }
89   
90    QStringList results;
91    if (m_console->sql_cmd(query, results)) {
92
93       if (!results.size()) {
94          QMessageBox::warning(this, tr("Bat"),
95             tr("There were no results!\n"
96                "It is possible you may need to add \"catalog = all\" "
97                "to the Messages resource for this job.\n"), QMessageBox::Ok);
98          return;
99       } 
100
101       QString jobstr("JobId "); /* FIXME: should this be translated ? */
102       jobstr += m_jobId;
103
104       QString htmlbuf("<html><body><b>" + tr("Log records for job %1").arg(m_jobId) );
105       htmlbuf += "</b><table>";
106   
107       /* Iterate through the lines of results. */
108       QString field;
109       QStringList fieldlist;
110       QString lastTime;
111       QString lastSvc;
112       foreach (QString resultline, results) {
113          fieldlist = resultline.split("\t");
114          
115          if (fieldlist.size() < 2)
116             continue;
117
118          htmlbuf +="<tr>";
119
120          QString curTime = fieldlist[0].trimmed();
121
122          field = fieldlist[1].trimmed();
123          int colon = field.indexOf(":");
124          if (colon > 0) {
125             /* string is like <service> <jobId xxxx>: ..." 
126              * we split at ':' then remove the jobId xxxx string (always the same) */ 
127             QString curSvc(field.left(colon).replace(jobstr,"").trimmed());
128             if (curSvc == lastSvc  && curTime == lastTime) {
129                curTime.clear();
130                curSvc.clear(); 
131             } else {
132                lastTime = curTime;
133                lastSvc = curSvc;
134             }
135             htmlbuf += "<td>" + curTime + "</td>";
136             htmlbuf += "<td><p>" + curSvc + "</p></td>";
137
138             /* rest of string is marked as pre-formatted (here trimming should
139              * be avoided, to preserve original formatting) */
140             QString msg(field.mid(colon+2));
141             if (msg.startsWith( tr("Error:")) ) { /* FIXME: should really be translated ? */
142                /* error msg, use a specific class */
143                htmlbuf += "<td><pre class=err>" + msg + "</pre></td>";
144             } else {
145                htmlbuf += "<td><pre>" + msg + "</pre></td>";
146             }
147          } else {
148             /* non standard string, place as-is */
149             if (curTime == lastTime) {
150                curTime.clear();
151             } else {
152                lastTime = curTime;
153             }
154             htmlbuf += "<td>" + curTime + "</td>";
155             htmlbuf += "<td><pre>" + field + "</pre></td>";
156          }
157
158          htmlbuf += "</tr>";
159   
160       } /* foreach resultline */
161
162       htmlbuf += "</table></body></html>";
163
164       /* full text ready. Here a custom sheet is used to align columns */
165       QString logSheet("p,pre,.err {margin-left: 10px} .err {color:#FF0000;}");
166       textEdit->document()->setDefaultStyleSheet(logSheet);
167       textEdit->document()->setHtml(htmlbuf); 
168       textEdit->moveCursor(QTextCursor::Start);
169
170    } /* if results from query */
171   
172 }
173