]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/medialist/medialist.cpp
kes Implement dir_sql() which issues an SQL query.
[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    m_treeWidget = treeWidget;   /* our Storage Tree Tree Widget */
51    m_console = console;
52    createConnections();
53    m_populated = false;
54 }
55
56 MediaList::~MediaList()
57 {
58 }
59
60 void MediaList::populateTree()
61 {
62    QTreeWidgetItem *mediatreeitem, *pooltreeitem, *topItem;
63    QString currentpool("");
64    QString resultline;
65    QStringList results;
66    const char *query = 
67       "SELECT p.Name,m.VolumeName,m.MediaId,m.VolStatus,m.Enabled,m.VolBytes,"
68       "m.VolFiles,m.VolRetention,m.MediaType,m.LastWritten"
69       " FROM Media m,Pool p"
70       " WHERE m.PoolId=p.PoolId"
71       " ORDER BY p.Name";
72    QStringList headerlist = (QStringList()
73       << "Volume Name" << "Media Id" << "Volume Status" << "Enabled"
74       << "Volume Bytes" << "Volume Files" << "Volume Retention" 
75       << "Media Type" << "Last Written");
76
77    m_treeWidget->clear();
78    m_treeWidget->setColumnCount(9);
79    topItem = new QTreeWidgetItem(m_treeWidget);
80    topItem->setText(0, "Pools");
81    topItem->setData(0, Qt::UserRole, 0);
82    topItem->setExpanded( true );
83
84 #ifdef xxx
85 #include <QSize>
86 *****    FIXME   *****
87 //how to get the size of a column to be larger
88 //topItem->setSizeHint(0,QSize(1050,50));
89 #endif
90
91    m_treeWidget->setHeaderLabels(headerlist);
92
93    if (m_console->sql_cmd(query, results)) {
94       int recordcounter = 0;
95       foreach (resultline, results) {
96          QRegExp regex("^Using Catalog");
97          if (regex.indexIn(resultline) < 0) {
98             QStringList recorditemlist = resultline.split("\t");
99             int recorditemcnter = 0;
100             /* Iterate through items in the record */
101             QString mediarecorditem;
102             foreach (mediarecorditem, recorditemlist) {
103                QString trimmeditem = mediarecorditem.trimmed();
104                if (trimmeditem != "") {
105                   if (recorditemcnter == 0) {
106                      if (currentpool != trimmeditem) {
107                         currentpool = trimmeditem;
108                         pooltreeitem = new QTreeWidgetItem(topItem);
109                         pooltreeitem->setText(0, trimmeditem);
110                         pooltreeitem->setData(0, Qt::UserRole, 1);
111                         pooltreeitem->setExpanded(true);
112                      }
113                      mediatreeitem = new QTreeWidgetItem(pooltreeitem);
114                   } else {
115                      mediatreeitem->setData(recorditemcnter-1, Qt::UserRole, 2);
116                      mediatreeitem->setText(recorditemcnter-1, trimmeditem);
117                   }
118                   recorditemcnter++;
119                }
120             }
121          }
122          recordcounter++;
123       }
124    }
125 }
126
127 void MediaList::createConnections()
128 {
129    connect(treeWidget, SIGNAL(itemPressed(QTreeWidgetItem *, int)), this,
130                 SLOT(treeItemClicked(QTreeWidgetItem *, int)));
131    connect(treeWidget, SIGNAL(itemDoubleClicked(QTreeWidgetItem *, int)), this,
132                 SLOT(treeItemDoubleClicked(QTreeWidgetItem *, int)));
133 }
134
135 void MediaList::treeItemClicked(QTreeWidgetItem *item, int column)
136 {
137    int treedepth = item->data(column, Qt::UserRole).toInt();
138    switch (treedepth) {
139    case 1:
140       break;
141    case 2:
142       /* Can't figure out how to make a right button do this --- Qt::LeftButton, Qt::RightButton, Qt::MidButton */
143       m_popuptext = item->text(0);
144       QMenu *popup = new QMenu( m_treeWidget );
145       connect(popup->addAction("Edit Properties"), SIGNAL(triggered()), this, SLOT(editMedia()));
146       connect(popup->addAction("Show Jobs On Media"), SIGNAL(triggered()), this, SLOT(showJobs()));
147       popup->exec(QCursor::pos());
148       break;
149    }
150 }
151
152 void MediaList::treeItemDoubleClicked(QTreeWidgetItem *item, int column)
153 {
154    int treedepth = item->data(column, Qt::UserRole).toInt();
155    if (treedepth >= 0) {
156    }
157 }
158
159 void MediaList::editMedia()
160 {
161    MediaEdit* edit = new MediaEdit(m_console, m_popuptext);
162    edit->show();
163 }
164
165 void MediaList::showJobs()
166 {
167    JobList* joblist = new JobList(m_console, m_popuptext);
168    joblist->show();
169 }
170
171 void MediaList::PgSeltreeWidgetClicked()
172 {
173    if(!m_populated) {
174       populateTree();
175       m_populated=true;
176    }
177 }
178
179 void MediaList::PgSeltreeWidgetDoubleClicked()
180 {
181    populateTree();
182 }