]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/fileset/fileset.cpp
Did not intend to leave those debugging lines there.
[bacula/bacula] / bacula / src / qt-console / fileset / fileset.cpp
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2007-2009 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 and included
11    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 Kern Sibbald.
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$
31  *
32  *  FileSet Class
33  *
34  *   Dirk Bartley, March 2007
35  *
36  */ 
37
38 #include "bat.h"
39 #include <QAbstractEventDispatcher>
40 #include <QMenu>
41 #include "fileset/fileset.h"
42 #include "util/fmtwidgetitem.h"
43
44 FileSet::FileSet()
45 {
46    setupUi(this);
47    m_name = tr("FileSets");
48    pgInitialize();
49    QTreeWidgetItem* thisitem = mainWin->getFromHash(this);
50    thisitem->setIcon(0,QIcon(QString::fromUtf8(":images/system-file-manager.png")));
51
52    /* tableWidget, FileSet Tree Tree Widget inherited from ui_fileset.h */
53    m_populated = false;
54    m_checkcurwidget = true;
55    m_closeable = false;
56    readSettings();
57    /* add context sensitive menu items specific to this classto the page
58     * selector tree. m_contextActions is QList of QActions */
59    m_contextActions.append(actionRefreshFileSet);
60    dockPage();
61 }
62
63 FileSet::~FileSet()
64 {
65    writeSettings();
66 }
67
68 /*
69  * The main meat of the class!!  The function that querries the director and 
70  * creates the widgets with appropriate values.
71  */
72 void FileSet::populateTable()
73 {
74    m_populated = true;
75
76    Freeze frz(*tableWidget); /* disable updating*/
77
78    m_checkcurwidget = false;
79    tableWidget->clear();
80    m_checkcurwidget = true;
81
82    QStringList headerlist = (QStringList() << tr("FileSet Name") << tr("FileSet Id")
83        << tr("Create Time"));
84
85    tableWidget->setColumnCount(headerlist.count());
86    tableWidget->setHorizontalHeaderLabels(headerlist);
87    tableWidget->horizontalHeader()->setHighlightSections(false);
88    tableWidget->verticalHeader()->hide();
89    tableWidget->setSelectionBehavior(QAbstractItemView::SelectRows);
90    tableWidget->setSelectionMode(QAbstractItemView::SingleSelection);
91    tableWidget->setSortingEnabled(false); /* rows move on insert if sorting enabled */
92
93    QString fileset_comsep("");
94    bool first = true;
95    foreach(QString filesetName, m_console->fileset_list) {
96       if (first) {
97          fileset_comsep += "'" + filesetName + "'";
98          first = false;
99       }
100       else
101          fileset_comsep += ",'" + filesetName + "'";
102    }
103
104    if (fileset_comsep != "") {
105       /* Set up query QString and header QStringList */
106       QString query("");
107       query += "SELECT FileSet AS Name, FileSetId AS Id, CreateTime"
108            " FROM FileSet"
109            " WHERE FileSetId IN (SELECT MAX(FileSetId) FROM FileSet WHERE";
110       query += " FileSet IN (" + fileset_comsep + ")";
111       query += " GROUP BY FileSet) ORDER BY FileSet";
112
113       QStringList results;
114       if (mainWin->m_sqlDebug) {
115          Pmsg1(000, "FileSet query cmd : %s\n",query.toUtf8().data());
116       }
117       if (m_console->sql_cmd(query, results)) {
118          int row = 0;
119          QStringList fieldlist;
120          tableWidget->setRowCount(results.count());
121
122          /* Iterate through the record returned from the query */
123          foreach (QString resultline, results) {
124             fieldlist = resultline.split("\t");
125
126             TableItemFormatter item(*tableWidget, row);
127   
128             /* Iterate through fields in the record */
129             QStringListIterator fld(fieldlist);
130             int col = 0;
131
132             /* name */
133             item.setTextFld(col++, fld.next());
134
135             /* id */
136             item.setNumericFld(col++, fld.next());
137
138             /* creation time */
139             item.setTextFld(col++, fld.next());
140
141             row++;
142          }
143       }
144    }
145    /* set default sorting */
146    tableWidget->sortByColumn(headerlist.indexOf(tr("Create Time")), Qt::DescendingOrder);
147    tableWidget->setSortingEnabled(true);
148    
149    /* Resize rows and columns */
150    tableWidget->resizeColumnsToContents();
151    tableWidget->resizeRowsToContents();
152
153    /* make read only */
154    int rcnt = tableWidget->rowCount();
155    int ccnt = tableWidget->columnCount();
156    for(int r=0; r < rcnt; r++) {
157       for(int c=0; c < ccnt; c++) {
158          QTableWidgetItem* item = tableWidget->item(r, c);
159          if (item) {
160             item->setFlags(Qt::ItemFlags(item->flags() & (~Qt::ItemIsEditable)));
161          }
162       }
163    }
164 }
165
166 /*
167  * When the treeWidgetItem in the page selector tree is singleclicked, Make sure
168  * The tree has been populated.
169  */
170 void FileSet::PgSeltreeWidgetClicked()
171 {
172    if (!m_populated) {
173       populateTable();
174       createContextMenu();
175    }
176 }
177
178 /*
179  * Added to set the context menu policy based on currently active treeWidgetItem
180  * signaled by currentItemChanged
181  */
182 void FileSet::tableItemChanged(QTableWidgetItem *currentwidgetitem, QTableWidgetItem *previouswidgetitem)
183 {
184    /* m_checkcurwidget checks to see if this is during a refresh, which will segfault */
185    if (m_checkcurwidget) {
186       int currentRow = currentwidgetitem->row();
187       QTableWidgetItem *currentrowzeroitem = tableWidget->item(currentRow, 0);
188       m_currentlyselected = currentrowzeroitem->text();
189
190       /* The Previous item */
191       if (previouswidgetitem) { /* avoid a segfault if first time */
192          tableWidget->removeAction(actionStatusFileSetInConsole);
193          tableWidget->removeAction(actionShowJobs);
194       }
195
196       if (m_currentlyselected.length() != 0) {
197          /* set a hold variable to the fileset name in case the context sensitive
198           * menu is used */
199          tableWidget->addAction(actionStatusFileSetInConsole);
200          tableWidget->addAction(actionShowJobs);
201       }
202    }
203 }
204
205 /* 
206  * Setup a context menu 
207  * Made separate from populate so that it would not create context menu over and
208  * over as the tree is repopulated.
209  */
210 void FileSet::createContextMenu()
211 {
212    tableWidget->setContextMenuPolicy(Qt::ActionsContextMenu);
213    tableWidget->addAction(actionRefreshFileSet);
214    connect(tableWidget, SIGNAL(
215            currentItemChanged(QTableWidgetItem *, QTableWidgetItem *)),
216            this, SLOT(tableItemChanged(QTableWidgetItem *, QTableWidgetItem *)));
217    /* connect to the action specific to this pages class */
218    connect(actionRefreshFileSet, SIGNAL(triggered()), this,
219                 SLOT(populateTable()));
220    connect(actionStatusFileSetInConsole, SIGNAL(triggered()), this,
221                 SLOT(consoleShowFileSet()));
222    connect(actionShowJobs, SIGNAL(triggered()), this,
223                 SLOT(showJobs()));
224 }
225
226 /*
227  * Function responding to actionListJobsofFileSet which calls mainwin function
228  * to create a window of a list of jobs of this fileset.
229  */
230 void FileSet::consoleShowFileSet()
231 {
232    QString cmd("show fileset=\"");
233    cmd += m_currentlyselected + "\"";
234    consoleCommand(cmd);
235 }
236
237 /*
238  * Virtual function which is called when this page is visible on the stack
239  */
240 void FileSet::currentStackItem()
241 {
242    if(!m_populated) {
243       populateTable();
244       /* Create the context menu for the fileset table */
245       createContextMenu();
246    }
247 }
248
249 /*
250  * Save user settings associated with this page
251  */
252 void FileSet::writeSettings()
253 {
254    QSettings settings(m_console->m_dir->name(), "bat");
255    settings.beginGroup("FileSet");
256    settings.setValue("geometry", saveGeometry());
257    settings.endGroup();
258 }
259
260 /*
261  * Read and restore user settings associated with this page
262  */
263 void FileSet::readSettings()
264
265    QSettings settings(m_console->m_dir->name(), "bat");
266    settings.beginGroup("FileSet");
267    restoreGeometry(settings.value("geometry").toByteArray());
268    settings.endGroup();
269 }
270
271 /*
272  * Create a JobList object pre-populating a fileset
273  */
274 void FileSet::showJobs()
275 {
276    QTreeWidgetItem *parentItem = mainWin->getFromHash(this);
277    mainWin->createPageJobList("", "", "", m_currentlyselected, parentItem);
278 }