]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/medialist/medialist.cpp
Add check boxes and combo boxes to limit the joblist. Move setTitle
[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
75    m_checkcurwidget = false;
76    mp_treeWidget->clear();
77    m_checkcurwidget = true;
78    mp_treeWidget->setColumnCount(headerlist.count());
79    topItem = new QTreeWidgetItem(mp_treeWidget);
80    topItem->setText(0, "Pools");
81    topItem->setData(0, Qt::UserRole, 0);
82    topItem->setExpanded(true);
83    
84    mp_treeWidget->setHeaderLabels(headerlist);
85
86    QString query;
87
88    foreach (QString pool_listItem, m_console->pool_list) {
89       pooltreeitem = new QTreeWidgetItem(topItem);
90       pooltreeitem->setText(0, pool_listItem);
91       pooltreeitem->setData(0, Qt::UserRole, 1);
92       pooltreeitem->setExpanded(true);
93
94       query =  "SELECT Media.VolumeName AS Media, "
95          " Media.MediaId AS Id, Media.VolStatus AS VolStatus,"
96          " Media.Enabled AS Enabled, Media.VolBytes AS Bytes,"
97          " Media.VolFiles AS FileCount, Media.VolJobs AS JobCount,"
98          " Media.VolRetention AS VolumeRetention, Media.MediaType AS MediaType,"
99          " Media.Slot AS Slot, Media.LastWritten AS LastWritten"
100          " FROM Media, Pool"
101          " WHERE Media.PoolId=Pool.PoolId";
102       query += " AND Pool.Name='" + pool_listItem + "'";
103       query += " ORDER BY Media";
104    
105       /* FIXME Make this a user configurable loggin action and dont use printf */
106       //printf("MediaList query cmd : %s\n",query.toUtf8().data());
107       QStringList results;
108       if (m_console->sql_cmd(query, results)) {
109          QString field;
110          QStringList fieldlist;
111
112          /* Iterate through the lines of results. */
113          foreach (QString resultline, results) {
114             fieldlist = resultline.split("\t");
115             int index = 0;
116             mediatreeitem = new QTreeWidgetItem(pooltreeitem);
117
118             /* Iterate through fields in the record */
119             foreach (field, fieldlist) {
120                field = field.trimmed();  /* strip leading & trailing spaces */
121                if (field != "") {
122                   mediatreeitem->setData(index, Qt::UserRole, 2);
123                   mediatreeitem->setData(index, Qt::UserRole, 2);
124                   mediatreeitem->setText(index, field);
125                }
126                index++;
127             } /* foreach field */
128          } /* foreach resultline */
129       } /* if results from query */
130    } /* foreach pool_listItem */
131    /* Resize the columns */
132    for(int cnter=0; cnter<headerlist.count(); cnter++) {
133       mp_treeWidget->resizeColumnToContents(cnter);
134    }
135 }
136
137 /*
138  * Called from the signal of the context sensitive menu!
139  */
140 void MediaList::editVolume()
141 {
142    MediaEdit* edit = new MediaEdit(m_console, m_currentVolumeId);
143    connect(edit, SIGNAL(destroyed()), this, SLOT(populateTree()));
144 }
145
146 /*
147  * Called from the signal of the context sensitive menu!
148  */
149 void MediaList::showJobs()
150 {
151    QString emptyclient("");
152    QTreeWidgetItem *parentItem = mainWin->getFromHash(this);
153    mainWin->createPageJobList(m_currentVolumeName, emptyclient, parentItem);
154 }
155
156 /*
157  * When the treeWidgetItem in the page selector tree is singleclicked, Make sure
158  * The tree has been populated.
159  */
160 void MediaList::PgSeltreeWidgetClicked()
161 {
162    if (!m_populated) {
163       populateTree();
164       createContextMenu();
165       m_populated=true;
166    }
167 }
168
169 /*
170  * Added to set the context menu policy based on currently active treeWidgetItem
171  * signaled by currentItemChanged
172  */
173 void MediaList::treeItemChanged(QTreeWidgetItem *currentwidgetitem, QTreeWidgetItem *previouswidgetitem )
174 {
175    /* m_checkcurwidget checks to see if this is during a refresh, which will segfault */
176    if (m_checkcurwidget) {
177       /* The Previous item */
178       if (previouswidgetitem) { /* avoid a segfault if first time */
179          int treedepth = previouswidgetitem->data(0, Qt::UserRole).toInt();
180          if (treedepth == 2){
181             mp_treeWidget->removeAction(actionEditVolume);
182             mp_treeWidget->removeAction(actionListJobsOnVolume);
183             mp_treeWidget->removeAction(actionDeleteVolume);
184             mp_treeWidget->removeAction(actionPurgeVolume);
185             mp_treeWidget->removeAction(actionRelabelVolume);
186          }
187       }
188
189       int treedepth = currentwidgetitem->data(0, Qt::UserRole).toInt();
190       if (treedepth == 2){
191          m_currentVolumeName=currentwidgetitem->text(0);
192          m_currentVolumeId=currentwidgetitem->text(1);
193          mp_treeWidget->addAction(actionEditVolume);
194          mp_treeWidget->addAction(actionListJobsOnVolume);
195          mp_treeWidget->addAction(actionDeleteVolume);
196          mp_treeWidget->addAction(actionPurgeVolume);
197          mp_treeWidget->addAction(actionRelabelVolume);
198       }
199    }
200 }
201
202 /* 
203  * Setup a context menu 
204  * Made separate from populate so that it would not create context menu over and
205  * over as the tree is repopulated.
206  */
207 void MediaList::createContextMenu()
208 {
209    mp_treeWidget->setContextMenuPolicy(Qt::ActionsContextMenu);
210    mp_treeWidget->addAction(actionRefreshMediaList);
211    connect(actionEditVolume, SIGNAL(triggered()), this, SLOT(editVolume()));
212    connect(actionListJobsOnVolume, SIGNAL(triggered()), this, SLOT(showJobs()));
213    connect(actionDeleteVolume, SIGNAL(triggered()), this, SLOT(deleteVolume()));
214    connect(actionPurgeVolume, SIGNAL(triggered()), this, SLOT(purgeVolume()));
215    connect(actionRelabelVolume, SIGNAL(triggered()), this, SLOT(relabelVolume()));
216    connect(mp_treeWidget, SIGNAL(
217            currentItemChanged(QTreeWidgetItem *, QTreeWidgetItem *)),
218            this, SLOT(treeItemChanged(QTreeWidgetItem *, QTreeWidgetItem *)));
219    /* connect to the action specific to this pages class */
220    connect(actionRefreshMediaList, SIGNAL(triggered()), this,
221                 SLOT(populateTree()));
222 }
223
224 /*
225  * Virtual function which is called when this page is visible on the stack
226  */
227 void MediaList::currentStackItem()
228 {
229    if(!m_populated) {
230       populateTree();
231       /* add context sensitive menu items specific to this classto the page
232        * selector tree. m_m_contextActions is QList of QActions, so this is 
233        * only done once with the first population. */
234       m_contextActions.append(actionRefreshMediaList);
235       /* Create the context menu for the medialist tree */
236       createContextMenu();
237       m_populated=true;
238    }
239 }
240
241 /*
242  * Called from the signal of the context sensitive menu!
243  */
244 void MediaList::deleteVolume()
245 {
246    QString cmd("delete volume=");
247    cmd += m_currentVolumeName;
248    consoleCommand(cmd);
249 }
250 /*
251  * Called from the signal of the context sensitive menu!
252  */
253 void MediaList::purgeVolume()
254 {
255    QString cmd("purge volume=");
256    cmd += m_currentVolumeName;
257    consoleCommand(cmd);
258    populateTree();
259 }
260 /*
261  * Called from the signal of the context sensitive menu!
262  */
263 void MediaList::relabelVolume()
264 {
265    setConsoleCurrent();
266    new relabelDialog(m_console, m_currentVolumeName);
267 }