]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/joblist/joblist.cpp
This implements dynamic pages created on the fly being nested on the tree
[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(QString &medianame, QString &clientname,
44          QTreeWidgetItem *parentTreeWidgetItem)
45 {
46    setupUi(this);
47    m_medianame = medianame;
48    m_clientname = clientname;
49    pgInitialize(parentTreeWidgetItem);
50    m_resultCount = 0;
51    m_populated = false;
52    m_closeable = false;
53    /* connect to the action specific to this pages class */
54    connect(actionRefreshJobList, SIGNAL(triggered()), this,
55                 SLOT(populateTable()));
56 }
57
58 /*
59  * The Meat of the class.
60  * This function will populate the QTableWidget, mp_tablewidget, with
61  * QTableWidgetItems representing the results of a query for what jobs exist on
62  * the media name passed from the constructor stored in m_medianame.
63  */
64 void JobList::populateTable()
65 {
66    QStringList results;
67    QString resultline;
68
69    /* Set up query QString and header QStringList */
70    QString query("");
71    query += "SELECT Job.Jobid AS Id, Job.Name AS JobName, Client.Name AS Client,"
72             " Job.Starttime AS JobStart, Job.Type AS JobType,"
73             " Job.Level AS BackupLevel, Job.Jobfiles AS FileCount,"
74             " Job.JobBytes AS Bytes, Job.JobStatus AS Status"
75             " FROM Job, JobMedia, Media, Client"
76             " WHERE JobMedia.JobId=Job.JobId and JobMedia.MediaId=Media.MediaId"
77             " and Client.ClientId=Job.ClientId";
78    if (m_medianame != "") {
79       query += " and Media.VolumeName='" + m_medianame + "'";
80       m_closeable=true;
81    }
82    if (m_clientname != "") {
83       query += " and Client.Name='" + m_clientname + "'";
84       m_closeable=true;
85    }
86    query += " ORDER BY Job.Starttime";
87    QStringList headerlist = (QStringList()
88       << "Job Id" << "Job Name" << "Client" << "Job Starttime" << "Job Type" 
89       << "Job Level" << "Job Files" << "Job Bytes" << "Job Status"  );
90
91    /* Initialize the QTableWidget */
92    mp_tableWidget->clear();
93    mp_tableWidget->setColumnCount(headerlist.size());
94    mp_tableWidget->setHorizontalHeaderLabels(headerlist);
95
96    /*  This could be a user preference debug message?? */
97    //printf("Query cmd : %s\n",query.toUtf8().data());
98    if (m_console->sql_cmd(query, results)) {
99       m_resultCount = results.count();
100
101       QTableWidgetItem* p_tableitem;
102       QString field;
103       QStringList fieldlist;
104       mp_tableWidget->setRowCount(results.size());
105
106       int row = 0;
107       /* Iterate through the record returned from the query */
108       foreach (resultline, results) {
109          fieldlist = resultline.split("\t");
110          int column = 0;
111          /* Iterate through fields in the record */
112          foreach (field, fieldlist) {
113             field = field.trimmed();  /* strip leading & trailing spaces */
114             p_tableitem = new QTableWidgetItem(field,1);
115             p_tableitem->setFlags(0);
116             mp_tableWidget->setItem(row, column, p_tableitem);
117             column++;
118          }
119          row++;
120       }
121    } 
122    if ((m_medianame != "") && (m_resultCount == 0)){
123       /* for context sensitive searches, let the user know if there were no
124        * results */
125       QMessageBox::warning(this, tr("Bat"),
126           tr("The Jobs query returned no results.\n"
127          "Press OK to continue?"), QMessageBox::Ok );
128    }
129 }
130
131 /*
132  * When the treeWidgetItem in the page selector tree is singleclicked, Make sure
133  * The tree has been populated.
134  */
135 void JobList::PgSeltreeWidgetClicked()
136 {
137    if (!m_populated) {
138       populateTable();
139       m_populated=true;
140    }
141 }
142
143 /*
144  *  Virtual function override of pages function which is called when this page
145  *  is visible on the stack
146  */
147 void JobList::currentStackItem()
148 {
149    if (!m_populated) {
150       populateTable();
151       m_contextActions.append(actionRefreshJobList);
152       m_populated=true;
153    }
154 }
155
156 /*
157  * Virtual Function to return the name for the medialist tree widget
158  */
159 void JobList::treeWidgetName(QString &desc)
160 {
161    if ((m_medianame == "") && (m_clientname == "")) {
162       desc = "All Jobs";
163    } else {
164       desc = "Jobs ";
165       if (m_medianame != "" ) {
166          desc += "on Volume " + m_medianame;
167       }
168       if (m_clientname != "" ) {
169          desc += "of Client " + m_clientname;
170       }
171    }
172 }