]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/medialist/medialist.cpp
Add refresh medialist in context sensitive of medialist tree. If context
[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
45 MediaList::MediaList(QStackedWidget *parent, Console *console)
46 {
47    setupUi(this);
48
49    /* mp_treeWidget, Storage Tree Tree Widget inherited from ui_medialist.h */
50    mp_console = console;
51    m_parent = parent;
52    createConnections();
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    QString currentpool("");
70    QString resultline;
71    QStringList results;
72    const char *query = 
73       "SELECT p.Name,m.VolumeName,m.MediaId,m.VolStatus,m.Enabled,m.VolBytes,"
74       "m.VolFiles,m.VolJobs,m.VolRetention,m.MediaType,m.LastWritten"
75       " FROM Media m,Pool p"
76       " WHERE m.PoolId=p.PoolId"
77       " ORDER BY p.Name";
78    QStringList headerlist = (QStringList()
79       << "Pool Name" << "Volume Name" << "Media Id" << "Volume Status" << "Enabled"
80       << "Volume Bytes" << "Volume Files" << "Volume Jobs" << "Volume Retention" 
81       << "Media Type" << "Last Written");
82
83    m_checkcurwidget = false;
84    mp_treeWidget->clear();
85    m_checkcurwidget = true;
86    mp_treeWidget->setColumnCount(headerlist.count());
87    topItem = new QTreeWidgetItem(mp_treeWidget);
88    topItem->setText(0, "Pools");
89    topItem->setData(0, Qt::UserRole, 0);
90    topItem->setExpanded(true);
91
92    mp_treeWidget->setHeaderLabels(headerlist);
93
94    //printf("MediaList query cmd : %s\n",query);
95    if (mp_console->sql_cmd(query, results)) {
96       QString field;
97       QStringList fieldlist;
98
99       foreach (resultline, results) {
100          fieldlist = resultline.split("\t");
101          int index = 0;
102          /* Iterate through fields in the record */
103          foreach (field, fieldlist) {
104             field = field.trimmed();  /* strip leading & trailing spaces */
105             if (field != "") {
106                /* The first field is the pool name */
107                if (index == 0) {
108                   /* If new pool name, create new Pool item */
109                   if (currentpool != field) {
110                      currentpool = field;
111                      pooltreeitem = new QTreeWidgetItem(topItem);
112                      pooltreeitem->setText(0, field);
113                      pooltreeitem->setData(0, Qt::UserRole, 1);
114                      pooltreeitem->setExpanded(true);
115                   }
116                   mediatreeitem = new QTreeWidgetItem(pooltreeitem);
117                   mediatreeitem->setData(index, Qt::UserRole, 2);
118                } else {
119                   /* Put media fields under the pool tree item */
120                   mediatreeitem->setData(index, Qt::UserRole, 2);
121                   mediatreeitem->setText(index, field);
122                }
123             }
124             index++;
125          }
126       }
127    }
128 }
129
130 /*
131  * Not being used currently,  Should this be kept for possible future use.
132  */
133 void MediaList::createConnections()
134 {
135    connect(mp_treeWidget, SIGNAL(itemPressed(QTreeWidgetItem *, int)), this,
136                 SLOT(treeItemClicked(QTreeWidgetItem *, int)));
137    connect(mp_treeWidget, SIGNAL(itemDoubleClicked(QTreeWidgetItem *, int)), this,
138                 SLOT(treeItemDoubleClicked(QTreeWidgetItem *, int)));
139 }
140
141 /*
142  * Not being used currently,  Should this be kept for possible future use.
143  */
144 void MediaList::treeItemClicked(QTreeWidgetItem * /*item*/, int /*column*/)
145 {
146 }
147
148 /*
149  * Not being used currently,  Should this be kept for possible future use.
150  */
151 void MediaList::treeItemDoubleClicked(QTreeWidgetItem * /*item*/, int /*column*/)
152 {
153 }
154
155 /*
156  * Called from the signal of the context sensitive menu!
157  */
158 void MediaList::editMedia()
159 {
160    MediaEdit* edit = new MediaEdit(mp_console, m_currentlyselected);
161    edit->show();
162 }
163
164 /*
165  * Called from the signal of the context sensitive menu!
166  */
167 void MediaList::showJobs()
168 {
169    mainWin->createPagejoblist(m_currentlyselected);
170 }
171
172 /*
173  * When the treeWidgetItem in the page selector tree is singleclicked, Make sure
174  * The tree has been populated.
175  */
176 void MediaList::PgSeltreeWidgetClicked()
177 {
178    if(!m_populated) {
179       populateTree();
180       createContextMenu();
181       m_populated=true;
182    }
183 }
184
185 /*
186  * When the treeWidgetItem in the page selector tree is doubleclicked, Use that
187  * As a signal to repopulate from a query of the database.
188  * Should this be from a context sensitive menu in either or both of the page selector
189  * or This widnow ???
190  */
191 void MediaList::PgSeltreeWidgetDoubleClicked()
192 {
193    populateTree();
194 }
195
196 /*
197  * Added to set the context menu policy based on currently active treeWidgetItem
198  * signaled by currentItemChanged
199  */
200 void MediaList::treeItemChanged(QTreeWidgetItem *currentwidgetitem, QTreeWidgetItem *previouswidgetitem )
201 {
202    /* m_checkcurwidget checks to see if this is during a refresh, which will segfault */
203    if (m_checkcurwidget) {
204       /* The Previous item */
205       if (previouswidgetitem) { /* avoid a segfault if first time */
206          int treedepth = previouswidgetitem->data(0, Qt::UserRole).toInt();
207          if (treedepth == 2){
208             mp_treeWidget->removeAction(actionEditVolume);
209             mp_treeWidget->removeAction(actionListJobsOnVolume);
210          }
211       }
212
213       int treedepth = currentwidgetitem->data(0, Qt::UserRole).toInt();
214       if (treedepth == 2){
215          m_currentlyselected=currentwidgetitem->text(1);
216          mp_treeWidget->addAction(actionEditVolume);
217          mp_treeWidget->addAction(actionListJobsOnVolume);
218       }
219    }
220 }
221
222 /* 
223  * Setup a context menu 
224  * Made separate from populate so that it would not create context menu over and
225  * over as the tree is repopulated.
226  */
227 void MediaList::createContextMenu()
228 {
229    mp_treeWidget->setContextMenuPolicy(Qt::ActionsContextMenu);
230    /*mp_treeWidget->setContextMenuPolicy(Qt::NoContextMenu);*/
231    mp_treeWidget->addAction(actionRefreshMediaList);
232    connect(actionEditVolume, SIGNAL(triggered()), this, SLOT(editMedia()));
233    connect(actionListJobsOnVolume, SIGNAL(triggered()), this, SLOT(showJobs()));
234    mp_treeWidget->setContextMenuPolicy(Qt::ActionsContextMenu);
235    connect(mp_treeWidget, SIGNAL(
236            currentItemChanged(QTreeWidgetItem *, QTreeWidgetItem *)),
237            this, SLOT(treeItemChanged(QTreeWidgetItem *, QTreeWidgetItem *)));
238    /* connect to the action specific to this pages class */
239    connect(actionRefreshMediaList, SIGNAL(triggered()), this,
240                 SLOT(populateTree()));
241 }
242
243 /*
244  * Virtual function which is called when this page is visible on the stack
245  */
246 void MediaList::currentStackItem()
247 {
248    if(!m_populated) {
249       populateTree();
250       /* add context sensitive menu items specific to this classto the page
251        * selector tree. m_m_contextActions is QList of QActions, so this is 
252        * only done once with the first population. */
253       m_contextActions.append(actionRefreshMediaList);
254       /* Create the context menu for the medialist tree */
255       createContextMenu();
256       m_populated=true;
257    }
258 }