]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/medialist/medialist.cpp
Add warning dialogs before purging and befoe deleting volumes and jobs.
[bacula/bacula] / bacula / src / qt-console / medialist / medialist.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 /*
30  *   Version $Id: medialist.cpp 4230 2007-02-21 20:07:37Z kerns $
31  *
32  *  MediaList Class
33  *
34  *   Dirk Bartley, March 2007
35  *
36  */ 
37
38 #include <QAbstractEventDispatcher>
39 #include <QMenu>
40 #include "bat.h"
41 #include "medialist.h"
42 #include "mediaedit/mediaedit.h"
43 #include "joblist/joblist.h"
44 #include "relabel/relabel.h"
45
46 MediaList::MediaList()
47 {
48    setupUi(this);
49    m_name = "Media";
50    pgInitialize();
51
52    /* mp_treeWidget, Storage Tree Tree Widget inherited from ui_medialist.h */
53    m_populated = false;
54    m_checkcurwidget = true;
55    m_closeable = false;
56 }
57
58 MediaList::~MediaList()
59 {
60 }
61
62 /*
63  * The main meat of the class!!  The function that querries the director and 
64  * creates the widgets with appropriate values.
65  */
66 void MediaList::populateTree()
67 {
68    QTreeWidgetItem *mediatreeitem, *pooltreeitem, *topItem;
69
70    QStringList headerlist = (QStringList()
71       << "Volume Name" << "Id" << "Status" << "Enabled"
72       << "Bytes" << "Files" << "Jobs" << "Retention" 
73       << "Media Type" << "Slot" << "Last Written");
74    int statusIndex = headerlist.indexOf("Status");
75
76    m_checkcurwidget = false;
77    mp_treeWidget->clear();
78    m_checkcurwidget = true;
79    mp_treeWidget->setColumnCount(headerlist.count());
80    topItem = new QTreeWidgetItem(mp_treeWidget);
81    topItem->setText(0, "Pools");
82    topItem->setData(0, Qt::UserRole, 0);
83    topItem->setExpanded(true);
84    
85    mp_treeWidget->setHeaderLabels(headerlist);
86
87    QString query;
88
89    foreach (QString pool_listItem, m_console->pool_list) {
90       pooltreeitem = new QTreeWidgetItem(topItem);
91       pooltreeitem->setText(0, pool_listItem);
92       pooltreeitem->setData(0, Qt::UserRole, 1);
93       pooltreeitem->setExpanded(true);
94
95       query =  "SELECT Media.VolumeName AS Media, "
96          " Media.MediaId AS Id, Media.VolStatus AS VolStatus,"
97          " Media.Enabled AS Enabled, Media.VolBytes AS Bytes,"
98          " Media.VolFiles AS FileCount, Media.VolJobs AS JobCount,"
99          " Media.VolRetention AS VolumeRetention, Media.MediaType AS MediaType,"
100          " Media.Slot AS Slot, Media.LastWritten AS LastWritten"
101          " FROM Media, Pool"
102          " WHERE Media.PoolId=Pool.PoolId";
103       query += " AND Pool.Name='" + pool_listItem + "'";
104       query += " ORDER BY Media";
105    
106       /* FIXME Make this a user configurable loggin action and dont use printf */
107       //printf("MediaList query cmd : %s\n",query.toUtf8().data());
108       QStringList results;
109       if (m_console->sql_cmd(query, results)) {
110          QString field;
111          QStringList fieldlist;
112
113          /* Iterate through the lines of results. */
114          foreach (QString resultline, results) {
115             fieldlist = resultline.split("\t");
116             int index = 0;
117             mediatreeitem = new QTreeWidgetItem(pooltreeitem);
118
119             /* Iterate through fields in the record */
120             foreach (field, fieldlist) {
121                field = field.trimmed();  /* strip leading & trailing spaces */
122                if (field != "") {
123                   mediatreeitem->setData(index, Qt::UserRole, 2);
124                   mediatreeitem->setData(index, Qt::UserRole, 2);
125                   mediatreeitem->setText(index, field);
126                   if (index == statusIndex) {
127                      setStatusColor(mediatreeitem, field, index);
128                   }
129                }
130                index++;
131             } /* foreach field */
132          } /* foreach resultline */
133       } /* if results from query */
134    } /* foreach pool_listItem */
135    /* Resize the columns */
136    for(int cnter=0; cnter<headerlist.count(); cnter++) {
137       mp_treeWidget->resizeColumnToContents(cnter);
138    }
139 }
140
141 void MediaList::setStatusColor(QTreeWidgetItem *item, QString &field, int &index)
142 {
143    if (field == "Append" ) {
144       item->setBackground(index, Qt::green);
145    } else if (field == "Error") {
146       item->setBackground(index, Qt::red);
147    } else if ((field == "Used") || ("Full")){
148       item->setBackground(index, Qt::yellow);
149    }
150 }
151
152 /*
153  * Called from the signal of the context sensitive menu!
154  */
155 void MediaList::editVolume()
156 {
157    MediaEdit* edit = new MediaEdit(m_console, m_currentVolumeId);
158    connect(edit, SIGNAL(destroyed()), this, SLOT(populateTree()));
159 }
160
161 /*
162  * Called from the signal of the context sensitive menu!
163  */
164 void MediaList::showJobs()
165 {
166    QString emptyclient("");
167    QTreeWidgetItem *parentItem = mainWin->getFromHash(this);
168    mainWin->createPageJobList(m_currentVolumeName, emptyclient, parentItem);
169 }
170
171 /*
172  * When the treeWidgetItem in the page selector tree is singleclicked, Make sure
173  * The tree has been populated.
174  */
175 void MediaList::PgSeltreeWidgetClicked()
176 {
177    if (!m_populated) {
178       populateTree();
179       createContextMenu();
180       m_populated=true;
181    }
182 }
183
184 /*
185  * Added to set the context menu policy based on currently active treeWidgetItem
186  * signaled by currentItemChanged
187  */
188 void MediaList::treeItemChanged(QTreeWidgetItem *currentwidgetitem, QTreeWidgetItem *previouswidgetitem )
189 {
190    /* m_checkcurwidget checks to see if this is during a refresh, which will segfault */
191    if (m_checkcurwidget) {
192       /* The Previous item */
193       if (previouswidgetitem) { /* avoid a segfault if first time */
194          int treedepth = previouswidgetitem->data(0, Qt::UserRole).toInt();
195          if (treedepth == 2){
196             mp_treeWidget->removeAction(actionEditVolume);
197             mp_treeWidget->removeAction(actionListJobsOnVolume);
198             mp_treeWidget->removeAction(actionDeleteVolume);
199             mp_treeWidget->removeAction(actionPurgeVolume);
200             mp_treeWidget->removeAction(actionRelabelVolume);
201          }
202       }
203
204       int treedepth = currentwidgetitem->data(0, Qt::UserRole).toInt();
205       if (treedepth == 2){
206          m_currentVolumeName=currentwidgetitem->text(0);
207          m_currentVolumeId=currentwidgetitem->text(1);
208          mp_treeWidget->addAction(actionEditVolume);
209          mp_treeWidget->addAction(actionListJobsOnVolume);
210          mp_treeWidget->addAction(actionDeleteVolume);
211          mp_treeWidget->addAction(actionPurgeVolume);
212          mp_treeWidget->addAction(actionRelabelVolume);
213       }
214    }
215 }
216
217 /* 
218  * Setup a context menu 
219  * Made separate from populate so that it would not create context menu over and
220  * over as the tree is repopulated.
221  */
222 void MediaList::createContextMenu()
223 {
224    mp_treeWidget->setContextMenuPolicy(Qt::ActionsContextMenu);
225    mp_treeWidget->addAction(actionRefreshMediaList);
226    connect(actionEditVolume, SIGNAL(triggered()), this, SLOT(editVolume()));
227    connect(actionListJobsOnVolume, SIGNAL(triggered()), this, SLOT(showJobs()));
228    connect(actionDeleteVolume, SIGNAL(triggered()), this, SLOT(deleteVolume()));
229    connect(actionPurgeVolume, SIGNAL(triggered()), this, SLOT(purgeVolume()));
230    connect(actionRelabelVolume, SIGNAL(triggered()), this, SLOT(relabelVolume()));
231    connect(mp_treeWidget, SIGNAL(
232            currentItemChanged(QTreeWidgetItem *, QTreeWidgetItem *)),
233            this, SLOT(treeItemChanged(QTreeWidgetItem *, QTreeWidgetItem *)));
234    /* connect to the action specific to this pages class */
235    connect(actionRefreshMediaList, SIGNAL(triggered()), this,
236                 SLOT(populateTree()));
237 }
238
239 /*
240  * Virtual function which is called when this page is visible on the stack
241  */
242 void MediaList::currentStackItem()
243 {
244    if(!m_populated) {
245       populateTree();
246       /* add context sensitive menu items specific to this classto the page
247        * selector tree. m_m_contextActions is QList of QActions, so this is 
248        * only done once with the first population. */
249       m_contextActions.append(actionRefreshMediaList);
250       /* Create the context menu for the medialist tree */
251       createContextMenu();
252       m_populated=true;
253    }
254 }
255
256 /*
257  * Called from the signal of the context sensitive menu!
258  */
259 void MediaList::deleteVolume()
260 {
261    if (QMessageBox::warning(this, tr("Bat"),
262       tr("Are you sure you want to delete??  !!!.\n"
263 "This delete command is used to delete a Volume record and all associated catalog"
264 " records that were created. This command operates only on the Catalog"
265 " database and has no effect on the actual data written to a Volume. This"
266 " command can be dangerous and we strongly recommend that you do not use"
267 " it unless you know what you are doing.  All Jobs and all associated"
268 " records (File and JobMedia) will be deleted from the catalog."
269       "Press OK to proceed with delete operation.?"),
270       QMessageBox::Ok | QMessageBox::Cancel)
271       == QMessageBox::Cancel) { return; }
272
273    QString cmd("delete volume=");
274    cmd += m_currentVolumeName;
275    consoleCommand(cmd);
276 }
277 /*
278  * Called from the signal of the context sensitive menu!
279  */
280 void MediaList::purgeVolume()
281 {
282    if (QMessageBox::warning(this, tr("Bat"),
283       tr("Are you sure you want to purge ??  !!!.\n"
284 "The Purge command will delete associated Catalog database records from Jobs and"
285 " Volumes without considering the retention period. Purge  works only on the"
286 " Catalog database and does not affect data written to Volumes. This command can"
287 " be dangerous because you can delete catalog records associated with current"
288 " backups of files, and we recommend that you do not use it unless you know what"
289 " you are doing.\n"
290       "Press OK to proceed with the purge operation?"),
291       QMessageBox::Ok | QMessageBox::Cancel)
292       == QMessageBox::Cancel) { return; }
293
294    QString cmd("purge volume=");
295    cmd += m_currentVolumeName;
296    consoleCommand(cmd);
297    populateTree();
298 }
299 /*
300  * Called from the signal of the context sensitive menu!
301  */
302 void MediaList::relabelVolume()
303 {
304    setConsoleCurrent();
305    new relabelDialog(m_console, m_currentVolumeName);
306 }