]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/medialist/medialist.cpp
dhb This solves the really not elegant at all way to determine what tree item
[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  *   Kern Sibbald, January MMVI
35  *
36  */ 
37
38 #include <QAbstractEventDispatcher>
39 #include "bat.h"
40 #include "medialist.h"
41 #include "mediaedit/mediaedit.h"
42 #include "joblist/joblist.h"
43 #include <QMenu>
44 //#include <QSize>
45
46 MediaList::MediaList(QStackedWidget *parent, Console *console, QTreeWidgetItem *treeItem)
47 {
48    setupUi(this);
49    m_parent=parent;
50 //   AddTostack();
51    m_poollist = new QStringList();
52
53    m_treeWidget = treeWidget;   /* our Storage Tree Tree Widget */
54    m_console = console;
55    m_treeItem = treeItem;
56    createConnections();
57    m_popupmedia="";
58 }
59
60 void MediaList::populateTree()
61 {
62    int stat;
63    QTreeWidgetItem *mediatreeitem, *treeitem, *topItem;
64
65    m_treeWidget->clear();
66    m_treeWidget->setColumnCount(3);
67    topItem = new QTreeWidgetItem(m_treeWidget);
68    topItem->setText(0, "Pools");
69    topItem->setData(0, Qt::UserRole, 0);
70    topItem->setExpanded( true );
71    //topItem->setSizeHint(0,QSize(1050,50));
72
73    /* Start with a list of pools */
74    m_poollist->clear();
75    QString *scmd = new QString(".pools\n");
76    m_console->write_dir(scmd->toUtf8().data());
77    while ((stat=m_console->read()) > 0) {
78       m_poollist->append(m_console->msg());
79    }
80    for ( QStringList::Iterator poolitem = m_poollist->begin(); poolitem != m_poollist->end(); ++poolitem ) {
81       treeitem = new QTreeWidgetItem(topItem);
82       //m_console->setTreeItem(treeitem);
83       poolitem->replace(QRegExp("\n"), "");
84       treeitem->setText(0, poolitem->toUtf8().data());
85       treeitem->setData(0, Qt::UserRole, 1);
86       treeitem->setExpanded( true );
87
88       /* iterate through the media in the pool */
89       QString *mcmd = new QString("sqlquery\n");
90       m_console->write_dir(mcmd->toUtf8().data());
91       while ((stat=m_console->read()) > 0) { }
92       QString *mcmd2 = new QString("select m.volumename, m.mediaid, m.mediatype from media m, pool p where p.name = '");
93       mcmd2->append(*poolitem);
94       mcmd2->append("';\n");
95       m_console->write_dir(mcmd2->toUtf8().data());
96       QString *mediaread = new QString();
97       while ((stat=m_console->read()) > 0) {
98          *mediaread += m_console->msg();
99       }
100       m_console->discardToPrompt();
101       QStringList sqllinelist = mediaread->split("\n");
102       /* a regex todetermine if mediareadline is a line of interest. */
103       QRegExp regex("^\\|.*\\|$");
104       int recordcnter=0;
105       QStringList *headerlist = new QStringList();
106       /* Iterate through lines retuned */
107       for ( QStringList::Iterator mediareadline = sqllinelist.begin(); mediareadline != sqllinelist.end(); ++mediareadline ) {
108          if ( regex.indexIn(*mediareadline) >= 0 ){
109             QStringList recorditemlist = mediareadline->split("|");
110             int recorditemcnter=0;
111             /* Iterate through items in the record */
112             for ( QStringList::Iterator mediarecorditem = recorditemlist.begin(); mediarecorditem != recorditemlist.end(); ++mediarecorditem ) {
113                QString trimmeditem = mediarecorditem->trimmed();
114                if( trimmeditem != "" ){
115                   if ( recordcnter == 0 ){
116                      headerlist->append(trimmeditem);
117                   } else {
118                      if ( recorditemcnter == 0 ){
119                         mediatreeitem = new QTreeWidgetItem(treeitem);
120                      }
121                      mediatreeitem->setData(recorditemcnter, Qt::UserRole, 2);
122                      mediatreeitem->setText(recorditemcnter, trimmeditem.toUtf8().data());
123                   }
124                   recorditemcnter+=1;
125                }
126             }
127             recordcnter+=1;
128          }
129       }
130       m_treeWidget->setHeaderLabels(*headerlist);
131    }
132 }
133
134 void MediaList::createConnections()
135 {
136    connect(treeWidget, SIGNAL(itemPressed(QTreeWidgetItem *, int)), this,
137                 SLOT(treeItemClicked(QTreeWidgetItem *, int)));
138    connect(treeWidget, SIGNAL(itemDoubleClicked(QTreeWidgetItem *, int)), this,
139                 SLOT(treeItemDoubleClicked(QTreeWidgetItem *, int)));
140 }
141
142 void MediaList::treeItemClicked(QTreeWidgetItem *item, int column)
143 {
144    int treedepth = item->data(column, Qt::UserRole).toInt();
145    QString text = item->text(0);
146    switch (treedepth){
147       case 1:
148          break;
149       case 2:
150          /* Can't figure out how to make a right button do this --- Qt::LeftButton, Qt::RightButton, Qt::MidButton */
151          m_popupmedia = text;
152          QMenu *popup = new QMenu( m_treeWidget );
153          connect(popup->addAction("Edit Properties"), SIGNAL(triggered()), this, SLOT(editMedia()));
154          connect(popup->addAction("Show Jobs On Media"), SIGNAL(triggered()), this, SLOT(showJobs()));
155          popup->exec(QCursor::pos());
156    }
157 }
158
159 void MediaList::treeItemDoubleClicked(QTreeWidgetItem *item, int column)
160 {
161    int treedepth = item->data(column, Qt::UserRole).toInt();
162    if (treedepth >= 0) {
163    }
164 }
165
166 void MediaList::editMedia()
167 {
168    MediaEdit* edit = new MediaEdit(m_console, m_popupmedia);
169    edit->show();
170 }
171
172 void MediaList::showJobs()
173 {
174    JobList* joblist = new JobList(m_console, m_popupmedia);
175    joblist->show();
176 }