]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/medialist/medialist.cpp
dhb Implement dir_cmd in medialist remove dosql from console
[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(3);
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("Volume Name");
87    m_headerlist->append("Media Id");
88    m_headerlist->append("Type");
89    m_treeWidget->setHeaderLabels(*m_headerlist);
90
91    QString currentpool("");
92    QString resultline;
93    QStringList results;
94    const char* m_cmd = ".sql \"select p.name, m.volumename, m.mediaid, m.mediatype from media m, pool p ORDER BY p.name\"";
95    if ( m_console->dir_cmd(m_cmd,results)){
96       int recordcounter=0;
97       foreach( resultline, results ){
98          QRegExp regex("^Using Catalog");
99          if ( regex.indexIn(resultline) < 0 ){
100             QStringList recorditemlist = resultline.split("\t");
101             int recorditemcnter=0;
102             /* Iterate through items in the record */
103             QString mediarecorditem;
104                foreach( mediarecorditem, recorditemlist ){
105                QString trimmeditem = mediarecorditem.trimmed();
106                if( trimmeditem != "" ){
107                   if ( recorditemcnter == 0 ){
108                      if ( currentpool != trimmeditem.toUtf8().data() ){
109                         currentpool = trimmeditem.toUtf8().data();
110                         pooltreeitem = new QTreeWidgetItem(topItem);
111                         pooltreeitem->setText(0, trimmeditem.toUtf8().data());
112                         pooltreeitem->setData(0, Qt::UserRole, 1);
113                         pooltreeitem->setExpanded( true );
114                      }
115                      mediatreeitem = new QTreeWidgetItem(pooltreeitem);
116                   } else {
117                      mediatreeitem->setData(recorditemcnter-1, Qt::UserRole, 2);
118                      mediatreeitem->setText(recorditemcnter-1, trimmeditem.toUtf8().data());
119                   }
120                   recorditemcnter+=1;
121                }
122             }
123          }
124          recordcounter+=1;
125       }
126    }
127 }
128
129 void MediaList::createConnections()
130 {
131    connect(treeWidget, SIGNAL(itemPressed(QTreeWidgetItem *, int)), this,
132                 SLOT(treeItemClicked(QTreeWidgetItem *, int)));
133    connect(treeWidget, SIGNAL(itemDoubleClicked(QTreeWidgetItem *, int)), this,
134                 SLOT(treeItemDoubleClicked(QTreeWidgetItem *, int)));
135 }
136
137 void MediaList::treeItemClicked(QTreeWidgetItem *item, int column)
138 {
139    int treedepth = item->data(column, Qt::UserRole).toInt();
140    QString text = item->text(0);
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_popupmedia = text;
147          QMenu *popup = new QMenu( m_treeWidget );
148          connect(popup->addAction("Edit Properties"), SIGNAL(triggered()), this, SLOT(editMedia()));
149          connect(popup->addAction("Show Jobs On Media"), SIGNAL(triggered()), this, SLOT(showJobs()));
150          popup->exec(QCursor::pos());
151    }
152 }
153
154 void MediaList::treeItemDoubleClicked(QTreeWidgetItem *item, int column)
155 {
156    int treedepth = item->data(column, Qt::UserRole).toInt();
157    if (treedepth >= 0) {
158    }
159 }
160
161 void MediaList::editMedia()
162 {
163    MediaEdit* edit = new MediaEdit(m_console, *m_popupmedia);
164    edit->show();
165 }
166
167 void MediaList::showJobs()
168 {
169    JobList* joblist = new JobList(m_console, *m_popupmedia);
170    joblist->show();
171 }
172
173 void MediaList::PgSeltreeWidgetClicked()
174 {
175    if( ! m_populated ){
176       populateTree();
177       m_populated=true;
178    }
179 }
180
181 void MediaList::PgSeltreeWidgetDoubleClicked()
182 {
183    populateTree();
184 }