]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/joblist/joblist.cpp
Moved behavior of MainWin::setContextMenuDockText and setTreeWidgetItemDockColor
[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 #include "restore.h"
39
40 /*
41  * Constructor for the class
42  */
43 JobList::JobList(QString &mediaName, QString &clientname,
44          QTreeWidgetItem *parentTreeWidgetItem)
45 {
46    setupUi(this);
47    m_name = "Clients";
48    m_mediaName = mediaName;
49    m_clientName = clientname;
50    pgInitialize(parentTreeWidgetItem);
51    m_resultCount = 0;
52    m_populated = false;
53    m_closeable = false;
54    m_checkCurrentWidget = true;
55    createConnections();
56
57    /* Set Defaults for check and spin for limits */
58    limitCheckBox->setCheckState(Qt::Checked);
59    limitSpinBox->setValue(150);
60    daysCheckBox->setCheckState(Qt::Unchecked);
61    daysSpinBox->setValue(30);
62 }
63
64 /*
65  * The Meat of the class.
66  * This function will populate the QTableWidget, mp_tablewidget, with
67  * QTableWidgetItems representing the results of a query for what jobs exist on
68  * the media name passed from the constructor stored in m_mediaName.
69  */
70 void JobList::populateTable()
71 {
72    QStringList results;
73    QString resultline;
74    QBrush blackBrush(Qt::black);
75
76    /* Can't do this in constructor because not neccesarily conected in constructor */
77    if (!m_populated) {
78       clientsComboBox->addItem("");
79       clientsComboBox->addItems(m_console->client_list);
80       int clientIndex = clientsComboBox->findText(m_clientName, Qt::MatchExactly);
81       if (clientIndex != -1)
82          clientsComboBox->setCurrentIndex(clientIndex);
83
84       /* Not m_console->volume_list will query database */
85       QString query("SELECT VolumeName AS Media FROM Media ORDER BY Media");
86       QStringList results, volumeList;
87       if (m_console->sql_cmd(query, results)) {
88          QString field;
89          QStringList fieldlist;
90          /* Iterate through the lines of results. */
91          foreach (QString resultline, results) {
92             fieldlist = resultline.split("\t");
93             volumeList.append(fieldlist[0]);
94          } /* foreach resultline */
95       } /* if results from query */
96       volumeComboBox->addItem("");
97       volumeComboBox->addItems(volumeList);
98       int volumeIndex = volumeComboBox->findText(m_mediaName, Qt::MatchExactly);
99       if (volumeIndex != -1) {
100          volumeComboBox->setCurrentIndex(volumeIndex);
101       }
102       jobComboBox->addItem("Any");
103       jobComboBox->addItems(m_console->job_list);
104       levelComboBox->addItem("Any");
105       levelComboBox->addItems( QStringList() << "F" << "D" << "I");
106       statusComboBox->addItem("Any");
107       statusComboBox->addItems( QStringList() << "T");
108       purgedComboBox->addItem("Any");
109       purgedComboBox->addItems( QStringList() << "0" << "1");
110    }
111
112    /* Set up query QString and header QStringList */
113    QString query("");
114    query += "SELECT DISTINCT Job.Jobid AS Id, Job.Name AS JobName, Client.Name AS Client,"
115             " Job.Starttime AS JobStart, Job.Type AS JobType,"
116             " Job.Level AS BackupLevel, Job.Jobfiles AS FileCount,"
117             " Job.JobBytes AS Bytes, Job.JobStatus AS Status,"
118             " Job.PurgedFiles AS Purged"
119             " FROM Job, JobMedia, Media, Client"
120             " WHERE JobMedia.JobId=Job.JobId and JobMedia.MediaId=Media.MediaId"
121             " and Client.ClientId=Job.ClientId";
122    int volumeIndex = volumeComboBox->currentIndex();
123    if (volumeIndex != -1)
124       m_mediaName = volumeComboBox->itemText(volumeIndex);
125    if (m_mediaName != "") {
126       query += " AND Media.VolumeName='" + m_mediaName + "'";
127       m_closeable=true;
128    }
129    int clientIndex = clientsComboBox->currentIndex();
130    if (clientIndex != -1)
131       m_clientName = clientsComboBox->itemText(clientIndex);
132    if (m_clientName != "") {
133       query += " AND Client.Name='" + m_clientName + "'";
134       m_closeable=true;
135    }
136    int jobIndex = jobComboBox->currentIndex();
137    if ((jobIndex != -1) && (jobComboBox->itemText(jobIndex) != "Any")) {
138       query += " AND Job.Name='" + jobComboBox->itemText(jobIndex) + "'";
139    }
140    int levelIndex = levelComboBox->currentIndex();
141    if ((levelIndex != -1) && (levelComboBox->itemText(levelIndex) != "Any")) {
142       query += " AND Job.Level='" + levelComboBox->itemText(levelIndex) + "'";
143    }
144    int statusIndex = statusComboBox->currentIndex();
145    if ((statusIndex != -1) && (statusComboBox->itemText(statusIndex) != "Any")) {
146       query += " AND Job.JobStatus='" + statusComboBox->itemText(statusIndex) + "'";
147    }
148    int purgedIndex = purgedComboBox->currentIndex();
149    if ((purgedIndex != -1) && (purgedComboBox->itemText(purgedIndex) != "Any")) {
150       query += " AND Job.PurgedFiles='" + purgedComboBox->itemText(purgedIndex) + "'";
151    }
152    /* If Limit check box For limit by days is checked  */
153    if (daysCheckBox->checkState() == Qt::Checked) {
154       QDateTime stamp = QDateTime::currentDateTime().addDays(-daysSpinBox->value());
155       QString since = stamp.toString(Qt::ISODate);
156       query += " AND Job.Starttime>'" + since + "'";
157    }
158    /* Descending */
159    query += " ORDER BY Job.Starttime DESC";
160    /* If Limit check box for limit records returned is checked  */
161    if (limitCheckBox->checkState() == Qt::Checked) {
162       QString limit;
163       limit.setNum(limitSpinBox->value());
164       query += " LIMIT " + limit;
165    }
166    QStringList headerlist = (QStringList()
167       << "Job Id" << "Job Name" << "Client" << "Job Starttime" << "Job Type" 
168       << "Job Level" << "Job Files" << "Job Bytes" << "Job Status"  << "Purged" );
169
170    /* Initialize the QTableWidget */
171    m_checkCurrentWidget = false;
172    mp_tableWidget->clear();
173    m_checkCurrentWidget = true;
174    mp_tableWidget->setColumnCount(headerlist.size());
175    mp_tableWidget->setHorizontalHeaderLabels(headerlist);
176
177    /*  This could be a user preference debug message?? */
178    //printf("Query cmd : %s\n",query.toUtf8().data());
179    if (m_console->sql_cmd(query, results)) {
180       m_resultCount = results.count();
181
182       QTableWidgetItem* p_tableitem;
183       QString field;
184       QStringList fieldlist;
185       mp_tableWidget->setRowCount(results.size());
186
187       int row = 0;
188       /* Iterate through the record returned from the query */
189       foreach (resultline, results) {
190          fieldlist = resultline.split("\t");
191          int column = 0;
192          /* Iterate through fields in the record */
193          foreach (field, fieldlist) {
194             field = field.trimmed();  /* strip leading & trailing spaces */
195             p_tableitem = new QTableWidgetItem(field,1);
196             p_tableitem->setFlags(0);
197             p_tableitem->setForeground(blackBrush);
198             mp_tableWidget->setItem(row, column, p_tableitem);
199             column++;
200          }
201          row++;
202       }
203    } 
204    /* Resize the columns */
205    mp_tableWidget->resizeColumnsToContents();
206    mp_tableWidget->resizeRowsToContents();
207    mp_tableWidget->verticalHeader()->hide();
208    if ((m_mediaName != "") && (m_resultCount == 0)){
209       /* for context sensitive searches, let the user know if there were no
210        * results */
211       QMessageBox::warning(this, tr("Bat"),
212           tr("The Jobs query returned no results.\n"
213          "Press OK to continue?"), QMessageBox::Ok );
214    }
215 }
216
217 /*
218  * When the treeWidgetItem in the page selector tree is singleclicked, Make sure
219  * The tree has been populated.
220  */
221 void JobList::PgSeltreeWidgetClicked()
222 {
223    if (!m_populated) {
224       populateTable();
225       m_populated=true;
226    }
227 }
228
229 /*
230  *  Virtual function override of pages function which is called when this page
231  *  is visible on the stack
232  */
233 void JobList::currentStackItem()
234 {
235    if (!m_populated) {
236       populateTable();
237       m_contextActions.append(actionRefreshJobList);
238       m_populated=true;
239    }
240 }
241
242 /*
243  * Virtual Function to return the name for the medialist tree widget
244  */
245 void JobList::treeWidgetName(QString &desc)
246 {
247    if ((m_mediaName == "") && (m_clientName == "")) {
248       desc = "Jobs";
249    } else {
250       desc = "Jobs ";
251       if (m_mediaName != "" ) {
252          desc += "on Volume " + m_mediaName;
253       }
254       if (m_clientName != "" ) {
255          desc += "of Client " + m_clientName;
256       }
257    }
258 }
259
260 /*
261  * This functions much line tableItemChanged for trees like the page selector,
262  * but I will do much less here
263  */
264 void JobList::tableItemChanged(QTableWidgetItem *currentItem, QTableWidgetItem * /*previousItem*/)
265 {
266    if (m_checkCurrentWidget) {
267       int row = currentItem->row();
268       QTableWidgetItem* jobitem = mp_tableWidget->item(row, 0);
269       m_currentJob = jobitem->text();
270    }
271 }
272
273 /*
274  * Function to create connections for context sensitive menu for this and
275  * the page selector
276  */
277 void JobList::createConnections()
278 {
279    /* connect to the action specific to this pages class that shows up in the 
280     * page selector tree */
281    connect(actionRefreshJobList, SIGNAL(triggered()), this,
282                 SLOT(populateTable()));
283    connect(refreshButton, SIGNAL(pressed()), this, SLOT(populateTable()));
284    /* for the tableItemChanged to maintain m_currentJob */
285    connect(mp_tableWidget, SIGNAL(
286            currentItemChanged(QTableWidgetItem *, QTableWidgetItem *)),
287            this, SLOT(tableItemChanged(QTableWidgetItem *, QTableWidgetItem *)));
288
289    /* Do what is required for the local context sensitive menu */
290
291
292    /* setContextMenuPolicy is required */
293    mp_tableWidget->setContextMenuPolicy(Qt::ActionsContextMenu);
294
295    /* Add Actions */
296    mp_tableWidget->addAction(actionRefreshJobList);
297    mp_tableWidget->addAction(actionLongListJob);
298    mp_tableWidget->addAction(actionListJobid);
299    mp_tableWidget->addAction(actionListFilesOnJob);
300    mp_tableWidget->addAction(actionListJobMedia);
301    mp_tableWidget->addAction(actionListVolumes);
302    mp_tableWidget->addAction(actionDeleteJob);
303    mp_tableWidget->addAction(actionPurgeFiles);
304    mp_tableWidget->addAction(actionRestoreFromJob);
305    mp_tableWidget->addAction(actionRestoreFromTime);
306
307    /* Make Connections */
308    connect(actionLongListJob, SIGNAL(triggered()), this,
309                 SLOT(consoleLongListJob()));
310    connect(actionListJobid, SIGNAL(triggered()), this,
311                 SLOT(consoleListJobid()));
312    connect(actionListFilesOnJob, SIGNAL(triggered()), this,
313                 SLOT(consoleListFilesOnJob()));
314    connect(actionListJobMedia, SIGNAL(triggered()), this,
315                 SLOT(consoleListJobMedia()));
316    connect(actionListVolumes, SIGNAL(triggered()), this,
317                 SLOT(consoleListVolumes()));
318    connect(actionDeleteJob, SIGNAL(triggered()), this,
319                 SLOT(consoleDeleteJob()));
320    connect(actionPurgeFiles, SIGNAL(triggered()), this,
321                 SLOT(consolePurgeFiles()));
322    connect(actionRestoreFromJob, SIGNAL(triggered()), this,
323                 SLOT(preRestoreFromJob()));
324    connect(actionRestoreFromTime, SIGNAL(triggered()), this,
325                 SLOT(preRestoreFromTime()));
326 }
327
328 /*
329  * Functions to respond to local context sensitive menu sending console commands
330  * If I could figure out how to make these one function passing a string, Yaaaaaa
331  */
332 void JobList::consoleLongListJob()
333 {
334    QString cmd("llist jobid=");
335    cmd += m_currentJob;
336    consoleCommand(cmd);
337 }
338 void JobList::consoleListJobid()
339 {
340    QString cmd("list jobid=");
341    cmd += m_currentJob;
342    consoleCommand(cmd);
343 }
344 void JobList::consoleListFilesOnJob()
345 {
346    QString cmd("list files jobid=");
347    cmd += m_currentJob;
348    consoleCommand(cmd);
349 }
350 void JobList::consoleListJobMedia()
351 {
352    QString cmd("list jobmedia jobid=");
353    cmd += m_currentJob;
354    consoleCommand(cmd);
355 }
356 void JobList::consoleListVolumes()
357 {
358    QString cmd("list volumes jobid=");
359    cmd += m_currentJob;
360    consoleCommand(cmd);
361 }
362 void JobList::consoleDeleteJob()
363 {
364    if (QMessageBox::warning(this, tr("Bat"),
365       tr("Are you sure you want to delete??  !!!.\n"
366 "This delete command is used to delete a Job record and all associated catalog"
367 " records that were created. This command operates only on the Catalog"
368 " database and has no effect on the actual data written to a Volume. This"
369 " command can be dangerous and we strongly recommend that you do not use"
370 " it unless you know what you are doing.  The Job and all its associated"
371 " records (File and JobMedia) will be deleted from the catalog."
372       "Press OK to proceed with delete operation.?"),
373       QMessageBox::Ok | QMessageBox::Cancel)
374       == QMessageBox::Cancel) { return; }
375
376    QString cmd("delete job jobid=");
377    cmd += m_currentJob;
378    consoleCommand(cmd);
379 }
380 void JobList::consolePurgeFiles()
381 {
382    if (QMessageBox::warning(this, tr("Bat"),
383       tr("Are you sure you want to purge ??  !!!.\n"
384 "The Purge command will delete associated Catalog database records from Jobs and"
385 " Volumes without considering the retention period. Purge  works only on the"
386 " Catalog database and does not affect data written to Volumes. This command can"
387 " be dangerous because you can delete catalog records associated with current"
388 " backups of files, and we recommend that you do not use it unless you know what"
389 " you are doing.\n"
390       "Press OK to proceed with the purge operation?"),
391       QMessageBox::Ok | QMessageBox::Cancel)
392       == QMessageBox::Cancel) { return; }
393
394    QString cmd("purge files jobid=");
395    cmd += m_currentJob;
396    consoleCommand(cmd);
397 }
398
399 /*
400  * Subroutine to call preRestore to restore from a select job
401  */
402 void JobList::preRestoreFromJob()
403 {
404    new prerestorePage(m_currentJob, R_JOBIDLIST);
405 }
406
407 /*
408  * Subroutine to call preRestore to restore from a select job
409  */
410 void JobList::preRestoreFromTime()
411 {
412    new prerestorePage(m_currentJob, R_JOBDATETIME);
413 }