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