]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/medialist/medialist.cpp
More tweaks for medialist
[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       << "Pool Name" << "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       QString field;
95       QStringList fieldlist;
96       QRegExp regex("^Using Catalog");
97
98       foreach (resultline, results) {
99          fieldlist = resultline.split("\t");
100          if (regex.indexIn(resultline) < 0) {
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                   } else {
118                      /* Put media fields under the pool tree item */
119                      mediatreeitem->setData(index, Qt::UserRole, 2);
120                      mediatreeitem->setText(index, field);
121                   }
122                }
123                index++;
124             }
125          }
126       }
127    }
128 }
129
130 void MediaList::createConnections()
131 {
132    connect(treeWidget, SIGNAL(itemPressed(QTreeWidgetItem *, int)), this,
133                 SLOT(treeItemClicked(QTreeWidgetItem *, int)));
134    connect(treeWidget, SIGNAL(itemDoubleClicked(QTreeWidgetItem *, int)), this,
135                 SLOT(treeItemDoubleClicked(QTreeWidgetItem *, int)));
136 }
137
138 void MediaList::treeItemClicked(QTreeWidgetItem *item, int column)
139 {
140    int treedepth = item->data(column, Qt::UserRole).toInt();
141    switch (treedepth) {
142    case 1:
143       break;
144    case 2:
145       /* Can't figure out how to make a right button do this --- Qt::LeftButton, Qt::RightButton, Qt::MidButton */
146       m_popuptext = item->text(0);
147       QMenu *popup = new QMenu(m_treeWidget);
148       connect(popup->addAction("Edit Properties"), SIGNAL(triggered()), this, SLOT(editMedia()));
149       connect(popup->addAction("List Jobs On Media"), SIGNAL(triggered()), this, SLOT(showJobs()));
150       popup->exec(QCursor::pos());
151       break;
152    }
153 }
154
155 void MediaList::treeItemDoubleClicked(QTreeWidgetItem *item, int column)
156 {
157    int treedepth = item->data(column, Qt::UserRole).toInt();
158    if (treedepth >= 0) {
159    }
160 }
161
162 void MediaList::editMedia()
163 {
164    MediaEdit* edit = new MediaEdit(m_console, m_popuptext);
165    edit->show();
166 }
167
168 void MediaList::showJobs()
169 {
170    JobList* joblist = new JobList(m_console, m_popuptext);
171    joblist->show();
172 }
173
174 void MediaList::PgSeltreeWidgetClicked()
175 {
176    if(!m_populated) {
177       populateTree();
178       m_populated=true;
179    }
180 }
181
182 void MediaList::PgSeltreeWidgetDoubleClicked()
183 {
184    populateTree();
185 }