]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/medialist/medialist.cpp
Add MediaView form that displays the Media list in a QTableWidget.
[bacula/bacula] / bacula / src / qt-console / medialist / medialist.cpp
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2007-2009 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 Kern Sibbald.
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  *  MediaList Class
33  *
34  *   Dirk Bartley, March 2007
35  *
36  */ 
37
38 #include "bat.h"
39 #include <QAbstractEventDispatcher>
40 #include <QMenu>
41 #include <math.h>
42 #include "medialist.h"
43 #include "mediaedit/mediaedit.h"
44 #include "mediainfo/mediainfo.h"
45 #include "joblist/joblist.h"
46 #include "relabel/relabel.h"
47 #include "run/run.h"
48 #include "util/fmtwidgetitem.h"
49
50 MediaList::MediaList()
51 {
52    setupUi(this);
53    m_name = tr("Pools");
54    pgInitialize();
55    QTreeWidgetItem* thisitem = mainWin->getFromHash(this);
56    thisitem->setIcon(0,QIcon(QString::fromUtf8(":images/cartridge.png")));
57
58    /* mp_treeWidget, Storage Tree Tree Widget inherited from ui_medialist.h */
59    m_populated = false;
60    m_checkcurwidget = true;
61    m_closeable = false;
62    /* add context sensitive menu items specific to this classto the page
63     * selector tree. m_contextActions is QList of QActions */
64    m_contextActions.append(actionRefreshMediaList);
65 }
66
67 MediaList::~MediaList()
68 {
69    if (m_populated)
70       writeExpandedSettings();
71 }
72
73 /*
74  * The main meat of the class!!  The function that querries the director and 
75  * creates the widgets with appropriate values.
76  */
77 void MediaList::populateTree()
78 {
79    if (m_populated)
80       writeExpandedSettings();
81    m_populated = true;
82
83    Freeze frz(*mp_treeWidget); /* disable updating*/
84
85    QStringList headerlist = (QStringList()
86       << tr("Volume Name") << tr("Id") << tr("Status") << tr("Enabled") << tr("Bytes") << tr("Files")
87       << tr("Jobs") << tr("Retention") << tr("Media Type") << tr("Slot") << tr("Use Duration")
88       << tr("Max Jobs") << tr("Max Files") << tr("Max Bytes") << tr("Recycle")
89       << tr("Last Written") << tr("First Written") << tr("Read Time")
90       << tr("Write Time") << tr("Recycle Count") << tr("Recycle Pool"));
91
92    m_checkcurwidget = false;
93    mp_treeWidget->clear();
94    m_checkcurwidget = true;
95    mp_treeWidget->setColumnCount(headerlist.count());
96    m_topItem = new QTreeWidgetItem(mp_treeWidget);
97    m_topItem->setText(0, tr("Pools"));
98    m_topItem->setData(0, Qt::UserRole, 0);
99    m_topItem->setExpanded(true);
100    
101    mp_treeWidget->setHeaderLabels(headerlist);
102
103    QSettings settings(m_console->m_dir->name(), "bat");
104    settings.beginGroup("MediaListTreeExpanded");
105    QString query;
106
107    QTreeWidgetItem *pooltreeitem;
108
109    /* Comma separated list of pools first */
110    bool first = true;
111    QString pool_comsep("");
112    foreach (QString pool_listItem, m_console->pool_list) {
113       if (first) {
114          pool_comsep += "'" + pool_listItem + "'";
115          first = false;
116       }
117       else
118          pool_comsep += ",'" + pool_listItem + "'";
119    }
120    /* Now use pool_comsep list to perform just one query */
121    if (pool_comsep != "") {
122       query =  "SELECT Pool.Name AS pul,"
123          " Media.VolumeName AS Media, "
124          " Media.MediaId AS Id, Media.VolStatus AS VolStatus,"
125          " Media.Enabled AS Enabled, Media.VolBytes AS Bytes,"
126          " Media.VolFiles AS FileCount, Media.VolJobs AS JobCount,"
127          " Media.VolRetention AS VolumeRetention, Media.MediaType AS MediaType,"
128          " Media.InChanger AS InChanger, Media.Slot AS Slot, "
129          " Media.VolUseDuration AS UseDuration,"
130          " Media.MaxVolJobs AS MaxJobs, Media.MaxVolFiles AS MaxFiles,"
131          " Media.MaxVolBytes AS MaxBytes, Media.Recycle AS Recycle,"
132          " Media.LastWritten AS LastWritten,"
133          " Media.FirstWritten AS FirstWritten,"
134          " (VolReadTime/1000000) AS ReadTime, (VolWriteTime/1000000) AS WriteTime,"
135          " RecycleCount AS ReCyCount,"
136          " RecPool.Name AS RecyclePool"
137          " FROM Media"
138          " JOIN Pool ON (Media.PoolId=Pool.PoolId)"
139          " LEFT OUTER JOIN Pool AS RecPool ON (Media.RecyclePoolId=RecPool.PoolId)"
140          " WHERE ";
141       query += " Pool.Name IN (" + pool_comsep + ")";
142       query += " ORDER BY Pool.Name, Media";
143
144       if (mainWin->m_sqlDebug) {
145          Pmsg1(000, "MediaList query cmd : %s\n",query.toUtf8().data());
146       }
147       QStringList results;
148       int counter = 0;
149       if (m_console->sql_cmd(query, results)) {
150          QStringList fieldlist;
151          QString prev_pool("");
152          QString this_pool("");
153
154          /* Iterate through the lines of results. */
155          foreach (QString resultline, results) {
156             fieldlist = resultline.split("\t");
157             this_pool = fieldlist.takeFirst();
158             if (prev_pool != this_pool) {
159                prev_pool = this_pool;
160                pooltreeitem = new QTreeWidgetItem(m_topItem);
161                pooltreeitem->setText(0, this_pool);
162                pooltreeitem->setData(0, Qt::UserRole, 1);
163             }
164             if(settings.contains(this_pool)) {
165                pooltreeitem->setExpanded(settings.value(this_pool).toBool());
166             } else {
167                pooltreeitem->setExpanded(true);
168             }
169
170             if (fieldlist.size() < 18)
171                continue; // some fields missing, ignore row
172
173             int index = 0;
174             TreeItemFormatter mediaitem(*pooltreeitem, 2);
175   
176             /* Iterate through fields in the record */
177             QStringListIterator fld(fieldlist);
178
179             /* volname */
180             mediaitem.setTextFld(index++, fld.next()); 
181
182             /* id */
183             mediaitem.setNumericFld(index++, fld.next()); 
184
185             /* status */
186             mediaitem.setVolStatusFld(index++, fld.next());
187
188             /* enabled */
189             mediaitem.setBoolFld(index++, fld.next());
190
191             /* bytes */
192             mediaitem.setBytesFld(index++, fld.next());
193
194             /* files */
195             mediaitem.setNumericFld(index++, fld.next()); 
196
197             /* jobs */
198             mediaitem.setNumericFld(index++, fld.next()); 
199
200             /* retention */
201             mediaitem.setDurationFld(index++, fld.next());
202
203             /* media type */
204             mediaitem.setTextFld(index++, fld.next()); 
205
206             /* inchanger + slot */
207             int inchanger = fld.next().toInt();
208             if (inchanger) {
209                mediaitem.setNumericFld(index++, fld.next()); 
210             }
211             else {
212                /* volume not in changer, show blank slot */
213                mediaitem.setNumericFld(index++, ""); 
214                fld.next();
215             }
216
217             /* use duration */
218             mediaitem.setDurationFld(index++, fld.next());
219
220             /* max jobs */
221             mediaitem.setNumericFld(index++, fld.next()); 
222
223             /* max files */
224             mediaitem.setNumericFld(index++, fld.next()); 
225
226             /* max bytes */
227             mediaitem.setBytesFld(index++, fld.next());
228
229             /* recycle */
230             mediaitem.setBoolFld(index++, fld.next());
231
232             /* last written */
233             mediaitem.setTextFld(index++, fld.next()); 
234
235             /* first written */
236             mediaitem.setTextFld(index++, fld.next()); 
237
238             /* read time */
239             mediaitem.setDurationFld(index++, fld.next());
240
241             /* write time */
242             mediaitem.setDurationFld(index++, fld.next());
243
244             /* Recycle Count */
245             mediaitem.setNumericFld(index++, fld.next()); 
246
247             /* recycle pool */
248             mediaitem.setTextFld(index++, fld.next()); 
249
250          } /* foreach resultline */
251          counter += 1;
252       } /* if results from query */
253    } /* foreach pool_listItem */
254    settings.endGroup();
255    /* Resize the columns */
256    for(int cnter=0; cnter<headerlist.count(); cnter++) {
257       mp_treeWidget->resizeColumnToContents(cnter);
258    }
259 }
260
261 /*
262  * Called from the signal of the context sensitive menu!
263  */
264 void MediaList::editVolume()
265 {
266    MediaEdit* edit = new MediaEdit(mainWin->getFromHash(this), m_currentVolumeId);
267    connect(edit, SIGNAL(destroyed()), this, SLOT(populateTree()));
268 }
269
270 /*
271  * Called from the signal of the context sensitive menu!
272  */
273 void MediaList::showJobs()
274 {
275    QTreeWidgetItem *parentItem = mainWin->getFromHash(this);
276    mainWin->createPageJobList(m_currentVolumeName, "", "", "", parentItem);
277 }
278
279 /*
280  * Called from the signal of the context sensitive menu!
281  */
282 void MediaList::viewVolume()
283 {
284    QTreeWidgetItem *parentItem = mainWin->getFromHash(this);
285    MediaInfo* view = new MediaInfo(parentItem, m_currentVolumeName);
286    connect(view, SIGNAL(destroyed()), this, SLOT(populateTree()));
287
288 }
289
290 /*
291  * When the treeWidgetItem in the page selector tree is singleclicked, Make sure
292  * The tree has been populated.
293  */
294 void MediaList::PgSeltreeWidgetClicked()
295 {
296    if (!m_populated) {
297       populateTree();
298       createContextMenu();
299    }
300    dockPage();
301 }
302
303 /*
304  * Added to set the context menu policy based on currently active treeWidgetItem
305  * signaled by currentItemChanged
306  */
307 void MediaList::treeItemChanged(QTreeWidgetItem *currentwidgetitem, QTreeWidgetItem *previouswidgetitem )
308 {
309    /* m_checkcurwidget checks to see if this is during a refresh, which will segfault */
310    if (m_checkcurwidget) {
311       /* The Previous item */
312       if (previouswidgetitem) { /* avoid a segfault if first time */
313          foreach(QAction* mediaAction, mp_treeWidget->actions()) {
314             mp_treeWidget->removeAction(mediaAction);
315          }
316       }
317
318       int treedepth = currentwidgetitem->data(0, Qt::UserRole).toInt();
319       m_currentVolumeName=currentwidgetitem->text(0);
320       mp_treeWidget->addAction(actionRefreshMediaList);
321       if (treedepth == 2){
322          m_currentVolumeId=currentwidgetitem->text(1);
323          mp_treeWidget->addAction(actionEditVolume);
324          mp_treeWidget->addAction(actionListJobsOnVolume);
325          mp_treeWidget->addAction(actionDeleteVolume);
326          mp_treeWidget->addAction(actionPruneVolume);
327          mp_treeWidget->addAction(actionPurgeVolume);
328          mp_treeWidget->addAction(actionRelabelVolume);
329          mp_treeWidget->addAction(actionVolumeFromPool);
330       } else if (treedepth == 1) {
331          mp_treeWidget->addAction(actionAllVolumesFromPool);
332       }
333    }
334 }
335
336 /* 
337  * Setup a context menu 
338  * Made separate from populate so that it would not create context menu over and
339  * over as the tree is repopulated.
340  */
341 void MediaList::createContextMenu()
342 {
343    mp_treeWidget->setContextMenuPolicy(Qt::ActionsContextMenu);
344    connect(mp_treeWidget, SIGNAL(itemDoubleClicked(QTreeWidgetItem *, int)), this, SLOT(viewVolume()));
345    connect(actionEditVolume, SIGNAL(triggered()), this, SLOT(editVolume()));
346    connect(actionListJobsOnVolume, SIGNAL(triggered()), this, SLOT(showJobs()));
347    connect(actionDeleteVolume, SIGNAL(triggered()), this, SLOT(deleteVolume()));
348    connect(actionPurgeVolume, SIGNAL(triggered()), this, SLOT(purgeVolume()));
349    connect(actionPruneVolume, SIGNAL(triggered()), this, SLOT(pruneVolume()));
350    connect(actionRelabelVolume, SIGNAL(triggered()), this, SLOT(relabelVolume()));
351    connect(mp_treeWidget, SIGNAL(
352            currentItemChanged(QTreeWidgetItem *, QTreeWidgetItem *)),
353            this, SLOT(treeItemChanged(QTreeWidgetItem *, QTreeWidgetItem *)));
354    /* connect to the action specific to this pages class */
355    connect(actionRefreshMediaList, SIGNAL(triggered()), this,
356                 SLOT(populateTree()));
357    connect(actionAllVolumes, SIGNAL(triggered()), this, SLOT(allVolumes()));
358    connect(actionAllVolumesFromPool, SIGNAL(triggered()), this, SLOT(allVolumesFromPool()));
359    connect(actionVolumeFromPool, SIGNAL(triggered()), this, SLOT(volumeFromPool()));
360 }
361
362 /*
363  * Virtual function which is called when this page is visible on the stack
364  */
365 void MediaList::currentStackItem()
366 {
367    if(!m_populated) {
368       populateTree();
369       /* Create the context menu for the medialist tree */
370       createContextMenu();
371    }
372 }
373
374 /*
375  * Called from the signal of the context sensitive menu to delete a volume!
376  */
377 void MediaList::deleteVolume()
378 {
379    if (QMessageBox::warning(this, "Bat",
380       tr("Are you sure you want to delete??  !!!.\n"
381 "This delete command is used to delete a Volume record and all associated catalog"
382 " records that were created. This command operates only on the Catalog"
383 " database and has no effect on the actual data written to a Volume. This"
384 " command can be dangerous and we strongly recommend that you do not use"
385 " it unless you know what you are doing.  All Jobs and all associated"
386 " records (File and JobMedia) will be deleted from the catalog."
387       "Press OK to proceed with delete operation.?"),
388       QMessageBox::Ok | QMessageBox::Cancel)
389       == QMessageBox::Cancel) { return; }
390
391    QString cmd("delete volume=");
392    cmd += m_currentVolumeName;
393    consoleCommand(cmd);
394 }
395
396 /*
397  * Called from the signal of the context sensitive menu to purge!
398  */
399 void MediaList::purgeVolume()
400 {
401    if (QMessageBox::warning(this, "Bat",
402       tr("Are you sure you want to purge ??  !!!.\n"
403 "The Purge command will delete associated Catalog database records from Jobs and"
404 " Volumes without considering the retention period. Purge  works only on the"
405 " Catalog database and does not affect data written to Volumes. This command can"
406 " be dangerous because you can delete catalog records associated with current"
407 " backups of files, and we recommend that you do not use it unless you know what"
408 " you are doing.\n"
409       "Press OK to proceed with the purge operation?"),
410       QMessageBox::Ok | QMessageBox::Cancel)
411       == QMessageBox::Cancel) { return; }
412
413    QString cmd("purge volume=");
414    cmd += m_currentVolumeName;
415    consoleCommand(cmd);
416    populateTree();
417 }
418
419 /*
420  * Called from the signal of the context sensitive menu to prune!
421  */
422 void MediaList::pruneVolume()
423 {
424    new prunePage(m_currentVolumeName, "");
425 }
426
427 /*
428  * Called from the signal of the context sensitive menu to relabel!
429  */
430 void MediaList::relabelVolume()
431 {
432    setConsoleCurrent();
433    new relabelDialog(m_console, m_currentVolumeName);
434 }
435
436 /*
437  * Called from the signal of the context sensitive menu to purge!
438  */
439 void MediaList::allVolumesFromPool()
440 {
441    QString cmd = "update volume AllFromPool=" + m_currentVolumeName;
442    consoleCommand(cmd);
443    populateTree();
444 }
445
446 void MediaList::allVolumes()
447 {
448    QString cmd = "update volume allfrompools";
449    consoleCommand(cmd);
450    populateTree();
451 }
452
453 /*
454  * Called from the signal of the context sensitive menu to purge!
455  */
456 void MediaList::volumeFromPool()
457 {
458    QTreeWidgetItem *currentItem = mp_treeWidget->currentItem();
459    QTreeWidgetItem *parent = currentItem->parent();
460    QString pool = parent->text(0);
461    QString cmd;
462    cmd = "update volume=" + m_currentVolumeName + " frompool=" + pool;
463    consoleCommand(cmd);
464    populateTree();
465 }
466
467 /*
468  * Write settings to save expanded states of the pools
469  */
470 void MediaList::writeExpandedSettings()
471 {
472    if (m_topItem) {
473       QSettings settings(m_console->m_dir->name(), "bat");
474       settings.beginGroup("MediaListTreeExpanded");
475       int childcount = m_topItem->childCount();
476       for (int cnt=0; cnt<childcount; cnt++) {
477          QTreeWidgetItem *poolitem = m_topItem->child(cnt);
478          settings.setValue(poolitem->text(0), poolitem->isExpanded());
479       }
480       settings.endGroup();
481    }
482 }