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