]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/joblist/joblist.cpp
dhb Added joblist to the stack and the page selector. Joblist starts in an all
[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 {
45    setupUi(this);
46    /* Store passed variables in member variables */
47    mp_console = console;
48    m_parent = parent;
49    m_medianame = medianame;
50    m_populated = false;
51    m_closeable = false;
52    /* connect to the action specific to this pages class */
53    connect(actionRepopulateJobList, SIGNAL(triggered()), this,
54                 SLOT(populateTable()));
55 }
56
57 /*
58  * The Meat of the class.
59  * This function will populate the QTableWidget, mp_tablewidget, with
60  * QTableWidgetItems representing the results of a query for what jobs exist on
61  * the media name passed from the constructor stored in m_medianame.
62  */
63 void JobList::populateTable()
64 {
65    QStringList results;
66    QString resultline;
67
68    /* Set up query QString and header QStringList */
69    QString query("");
70    query += "SELECT j.jobid,j.name,j.starttime,j.type,j.level,j.jobfiles,"
71            "j.jobstatus"
72            " FROM job j, jobmedia jm, media m"
73            " WHERE jm.jobid=j.jobid and jm.mediaid=m.mediaid";
74    if (m_medianame != "") {
75       query += " and m.VolumeName='" + m_medianame + "'";
76       m_closeable=true;
77    }
78    query += " ORDER BY j.starttime";
79    QStringList headerlist = (QStringList()
80       << "Job Id" << "Job Name" << "Job Starttime" << "Job Type" << "Job Level"
81       << "Job Files" << "Job Status");
82
83    /* Initialize the QTableWidget */
84    mp_tableWidget->clear();
85    mp_tableWidget->setColumnCount(headerlist.size());
86    mp_tableWidget->setHorizontalHeaderLabels(headerlist);
87
88    if (mp_console->sql_cmd(query, results)) {
89       QTableWidgetItem* p_tableitem;
90       QString field;
91       QStringList fieldlist;
92       mp_tableWidget->setRowCount(results.size());
93
94       int row = 0;
95       /* Iterate through the record returned from the query */
96       foreach (resultline, results) {
97          fieldlist = resultline.split("\t");
98          int column = 0;
99          /* Iterate through fields in the record */
100          foreach (field, fieldlist) {
101             field = field.trimmed();  /* strip leading & trailing spaces */
102             p_tableitem = new QTableWidgetItem(field,1);
103             p_tableitem->setFlags(0);
104             mp_tableWidget->setItem(row, column, p_tableitem);
105             column++;
106          }
107          row++;
108       }
109    }
110 }
111
112 /*
113  *  * When the treeWidgetItem in the page selector tree is singleclicked, Make sure
114  *  * The tree has been populated.
115  *  */
116 void JobList::PgSeltreeWidgetClicked()
117 {
118    if (!m_populated) {
119       populateTable();
120       m_populated=true;
121    }
122 }
123
124 /*
125  *  Virtual function which is called when this page is visible on the stack
126  */
127 void JobList::currentStackItem()
128 {
129    if (!m_populated) {
130       populateTable();
131       m_contextActions.append(actionRepopulateJobList);
132       m_populated=true;
133    }
134 }