]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/joblist/joblist.cpp
Add a feature to be able to get a list of jobs of a specific client. This is
[bacula/bacula] / bacula / src / qt-console / joblist / joblist.cpp
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2000-2007 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 plus additions
11    that are listed 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  *   Version $Id: joblist.h 4230 2007-02-21 20:07:37Z kerns $
30  *
31  *   Dirk Bartley, March 2007
32  */
33  
34 #include <QAbstractEventDispatcher>
35 #include <QTableWidgetItem>
36 #include "bat.h"
37 #include "joblist.h"
38
39
40 /*
41  * Constructor for the class
42  */
43 JobList::JobList(QStackedWidget *parent, Console *console, QString &medianame,
44    QString &clientname)
45 {
46    setupUi(this);
47    /* Store passed variables in member variables */
48    mp_console = console;
49    m_parent = parent;
50    m_medianame = medianame;
51    m_clientname = clientname;
52    m_resultCount = 0;
53    m_populated = false;
54    m_closeable = false;
55    /* connect to the action specific to this pages class */
56    connect(actionRefreshJobList, SIGNAL(triggered()), this,
57                 SLOT(populateTable()));
58 }
59
60 /*
61  * The Meat of the class.
62  * This function will populate the QTableWidget, mp_tablewidget, with
63  * QTableWidgetItems representing the results of a query for what jobs exist on
64  * the media name passed from the constructor stored in m_medianame.
65  */
66 void JobList::populateTable()
67 {
68    QStringList results;
69    QString resultline;
70
71    /* Set up query QString and header QStringList */
72    QString query("");
73    query += "SELECT Job.Jobid AS Id, Job.Name AS JobName, Client.Name AS Client,"
74             " Job.Starttime AS JobStart, Job.Type AS JobType,"
75             " Job.Level AS BackupLevel, Job.Jobfiles AS FileCount,"
76             " Job.JobBytes AS Bytes, Job.JobStatus AS Status"
77             " FROM Job, JobMedia, Media, Client"
78             " WHERE JobMedia.JobId=Job.JobId and JobMedia.MediaId=Media.MediaId"
79             " and Client.ClientId=Job.ClientId";
80    if (m_medianame != "") {
81       query += " and Media.VolumeName='" + m_medianame + "'";
82       m_closeable=true;
83    }
84    if (m_clientname != "") {
85       query += " and Client.Name='" + m_clientname + "'";
86       m_closeable=true;
87    }
88    query += " ORDER BY Job.Starttime";
89    QStringList headerlist = (QStringList()
90       << "Job Id" << "Job Name" << "Client" << "Job Starttime" << "Job Type" 
91       << "Job Level" << "Job Files" << "Job Bytes" << "Job Status"  );
92
93    /* Initialize the QTableWidget */
94    mp_tableWidget->clear();
95    mp_tableWidget->setColumnCount(headerlist.size());
96    mp_tableWidget->setHorizontalHeaderLabels(headerlist);
97
98     /*  This could be a user preference debug message?? */
99     printf("Query cmd : %s\n",query.toUtf8().data());
100    if (mp_console->sql_cmd(query, results)) {
101       m_resultCount = results.count();
102
103       QTableWidgetItem* p_tableitem;
104       QString field;
105       QStringList fieldlist;
106       mp_tableWidget->setRowCount(results.size());
107
108       int row = 0;
109       /* Iterate through the record returned from the query */
110       foreach (resultline, results) {
111          fieldlist = resultline.split("\t");
112          int column = 0;
113          /* Iterate through fields in the record */
114          foreach (field, fieldlist) {
115             field = field.trimmed();  /* strip leading & trailing spaces */
116             p_tableitem = new QTableWidgetItem(field,1);
117             p_tableitem->setFlags(0);
118             mp_tableWidget->setItem(row, column, p_tableitem);
119             column++;
120          }
121          row++;
122       }
123    } 
124    if ((m_medianame != "") && (m_resultCount == 0)){
125       /* for context sensitive searches, let the user know if there were no
126        * results */
127       QMessageBox::warning(this, tr("Bat"),
128           tr("The Jobs query returned no results.\n"
129          "Press OK to continue?"), QMessageBox::Ok );
130    }
131 }
132
133 /*
134  * When the treeWidgetItem in the page selector tree is singleclicked, Make sure
135  * The tree has been populated.
136  */
137 void JobList::PgSeltreeWidgetClicked()
138 {
139    if (!m_populated) {
140       populateTable();
141       m_populated=true;
142    }
143 }
144
145 /*
146  *  Virtual function override of pages function which is called when this page
147  *  is visible on the stack
148  */
149 void JobList::currentStackItem()
150 {
151    if (!m_populated) {
152       populateTable();
153       m_contextActions.append(actionRefreshJobList);
154       m_populated=true;
155    }
156 }