]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/medialist/medialist.cpp
13c14d0fefd563f7dcb9e64e7c0f59ba1e951b50
[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, QTreeWidgetItem *treeItem, int indexseq)
46 {
47    SetPassedValues(parent, treeItem, indexseq );
48    setupUi(this);
49
50    /* mp_treeWidget, Storage Tree Tree Widget inherited from ui_medialist.h */
51    mp_console = console;
52    createConnections();
53    m_populated = false;
54    m_checkcurwidget = true;
55 }
56
57 MediaList::~MediaList()
58 {
59 }
60
61 /*
62  * The main meat of the class!!  The function that querries the director and 
63  * creates the widgets with appropriate values.
64  */
65 void MediaList::populateTree()
66 {
67    QTreeWidgetItem *mediatreeitem, *pooltreeitem, *topItem;
68    QString currentpool("");
69    QString resultline;
70    QStringList results;
71    const char *query = 
72       "SELECT p.Name,m.VolumeName,m.MediaId,m.VolStatus,m.Enabled,m.VolBytes,"
73       "m.VolFiles,m.VolRetention,m.MediaType,m.LastWritten"
74       " FROM Media m,Pool p"
75       " WHERE m.PoolId=p.PoolId"
76       " ORDER BY p.Name";
77    QStringList headerlist = (QStringList()
78       << "Pool Name" << "Volume Name" << "Media Id" << "Volume Status" << "Enabled"
79       << "Volume Bytes" << "Volume Files" << "Volume Retention" 
80       << "Media Type" << "Last Written");
81
82    m_checkcurwidget = false;
83    mp_treeWidget->clear();
84    m_checkcurwidget = true;
85    mp_treeWidget->setColumnCount(9);
86    topItem = new QTreeWidgetItem(mp_treeWidget);
87    topItem->setText(0, "Pools");
88    topItem->setData(0, Qt::UserRole, 0);
89    topItem->setExpanded( true );
90
91    mp_treeWidget->setHeaderLabels(headerlist);
92
93    if (mp_console->sql_cmd(query, results)) {
94       QString field;
95       QStringList fieldlist;
96
97       foreach (resultline, results) {
98          fieldlist = resultline.split("\t");
99          int index = 0;
100          /* Iterate through fields in the record */
101          foreach (field, fieldlist) {
102             field = field.trimmed();  /* strip leading & trailing spaces */
103             if (field != "") {
104                /* The first field is the pool name */
105                if (index == 0) {
106                   /* If new pool name, create new Pool item */
107                   if (currentpool != field) {
108                      currentpool = field;
109                      pooltreeitem = new QTreeWidgetItem(topItem);
110                      pooltreeitem->setText(0, field);
111                      pooltreeitem->setData(0, Qt::UserRole, 1);
112                      pooltreeitem->setExpanded(true);
113                   }
114                   mediatreeitem = new QTreeWidgetItem(pooltreeitem);
115                   mediatreeitem->setData(index, Qt::UserRole, 2);
116                } else {
117                   /* Put media fields under the pool tree item */
118                   mediatreeitem->setData(index, Qt::UserRole, 2);
119                   mediatreeitem->setText(index, field);
120                }
121             }
122             index++;
123          }
124       }
125    }
126 }
127
128 /*
129  * Not being used currently,  Should this be kept for possible future use.
130  */
131 void MediaList::createConnections()
132 {
133    connect(mp_treeWidget, SIGNAL(itemPressed(QTreeWidgetItem *, int)), this,
134                 SLOT(treeItemClicked(QTreeWidgetItem *, int)));
135    connect(mp_treeWidget, SIGNAL(itemDoubleClicked(QTreeWidgetItem *, int)), this,
136                 SLOT(treeItemDoubleClicked(QTreeWidgetItem *, int)));
137 }
138
139 /*
140  * Not being used currently,  Should this be kept for possible future use.
141  */
142 void MediaList::treeItemClicked(QTreeWidgetItem * /*item*/, int /*column*/)
143 {
144 }
145
146 /*
147  * Not being used currently,  Should this be kept for possible future use.
148  */
149 void MediaList::treeItemDoubleClicked(QTreeWidgetItem * /*item*/, int /*column*/)
150 {
151 }
152
153 /*
154  * Called from the signal of the context sensitive menu!
155  */
156 void MediaList::editMedia()
157 {
158    MediaEdit* edit = new MediaEdit(mp_console, m_currentlyselected);
159    edit->show();
160 }
161
162 /*
163  * Called from the signal of the context sensitive menu!
164  */
165 void MediaList::showJobs()
166 {
167    JobList* joblist = new JobList(mp_console, m_currentlyselected);
168    joblist->show();
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  * When the treeWidgetItem in the page selector tree is doubleclicked, Use that
186  * As a signal to repopulate from a query of the database.
187  * Should this be from a context sensitive menu in either or both of the page selector
188  * or This widnow ???
189  */
190 void MediaList::PgSeltreeWidgetDoubleClicked()
191 {
192    populateTree();
193 }
194
195 /*
196  * Added to set the context menu policy based on currently active treeWidgetItem
197  * signaled by currentItemChanged
198  */
199 void MediaList::treeItemChanged(QTreeWidgetItem *currentwidgetitem, QTreeWidgetItem *) /*previouswidgetitem*/
200 {
201    if ( m_checkcurwidget ) {
202       int treedepth = currentwidgetitem->data(0, Qt::UserRole).toInt();
203       if (treedepth == 2){
204          mp_treeWidget->setContextMenuPolicy(Qt::ActionsContextMenu);
205          m_currentlyselected=currentwidgetitem->text(1);
206       } else {
207          mp_treeWidget->setContextMenuPolicy(Qt::NoContextMenu);
208       }
209    }
210 }
211
212 /* 
213  * Setup a context menu 
214  * Made separate from populate so that it would not create context menu over and
215  * over as the tree is repopulated.
216  */
217 void MediaList::createContextMenu()
218 {
219    QAction *editAction = new QAction("Edit Properties", mp_treeWidget);
220    QAction *listAction = new QAction("List Jobs On Media", mp_treeWidget);
221    mp_treeWidget->addAction(editAction);
222    mp_treeWidget->addAction(listAction);
223    connect(editAction, SIGNAL(triggered()), this, SLOT(editMedia()));
224    connect(listAction, SIGNAL(triggered()), this, SLOT(showJobs()));
225    mp_treeWidget->setContextMenuPolicy(Qt::ActionsContextMenu);
226    connect(mp_treeWidget, SIGNAL(
227            currentItemChanged(QTreeWidgetItem *, QTreeWidgetItem *)),
228            this, SLOT(treeItemChanged(QTreeWidgetItem *, QTreeWidgetItem *)));
229    /* connect to the action specific to this pages class */
230    connect(actionRepopulateMediaTree, SIGNAL(triggered()), this,
231                 SLOT(populateTree()));
232 }
233
234 /*
235  * Virtual function which is called when this page is visible on the stack
236  */
237 void MediaList::currentStackItem()
238 {
239    if(!m_populated) {
240       populateTree();
241       m_contextActions.append(actionRepopulateMediaTree);
242       createContextMenu();
243       m_populated=true;
244    }
245 }