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