2 Bacula® - The Network Backup Solution
4 Copyright (C) 2007-2009 Free Software Foundation Europe e.V.
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
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.
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
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.
34 * Dirk Bartley, March 2007
39 #include <QAbstractEventDispatcher>
41 #include "fileset/fileset.h"
42 #include "util/fmtwidgetitem.h"
47 m_name = tr("FileSets");
49 QTreeWidgetItem* thisitem = mainWin->getFromHash(this);
50 thisitem->setIcon(0,QIcon(QString::fromUtf8(":images/system-file-manager.png")));
52 /* tableWidget, FileSet Tree Tree Widget inherited from ui_fileset.h */
54 m_checkcurwidget = true;
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);
69 * The main meat of the class!! The function that querries the director and
70 * creates the widgets with appropriate values.
72 void FileSet::populateTable()
76 Freeze frz(*tableWidget); /* disable updating*/
78 m_checkcurwidget = false;
80 m_checkcurwidget = true;
82 QStringList headerlist = (QStringList() << tr("FileSet Name") << tr("FileSet Id")
83 << tr("Create Time"));
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 */
93 QString fileset_comsep("");
95 foreach(QString filesetName, m_console->fileset_list) {
97 fileset_comsep += "'" + filesetName + "'";
101 fileset_comsep += ",'" + filesetName + "'";
104 if (fileset_comsep != "") {
105 /* Set up query QString and header QStringList */
107 query += "SELECT FileSet AS Name, FileSetId AS Id, CreateTime"
109 " WHERE FileSetId IN (SELECT MAX(FileSetId) FROM FileSet WHERE";
110 query += " FileSet IN (" + fileset_comsep + ")";
111 query += " GROUP BY FileSet) ORDER BY FileSet";
114 if (mainWin->m_sqlDebug) {
115 Pmsg1(000, "FileSet query cmd : %s\n",query.toUtf8().data());
117 if (m_console->sql_cmd(query, results)) {
119 QStringList fieldlist;
120 tableWidget->setRowCount(results.count());
122 /* Iterate through the record returned from the query */
123 foreach (QString resultline, results) {
124 fieldlist = resultline.split("\t");
126 TableItemFormatter item(*tableWidget, row);
128 /* Iterate through fields in the record */
129 QStringListIterator fld(fieldlist);
133 item.setTextFld(col++, fld.next());
136 item.setNumericFld(col++, fld.next());
139 item.setTextFld(col++, fld.next());
145 /* set default sorting */
146 tableWidget->sortByColumn(headerlist.indexOf(tr("Create Time")), Qt::DescendingOrder);
147 tableWidget->setSortingEnabled(true);
149 /* Resize rows and columns */
150 tableWidget->resizeColumnsToContents();
151 tableWidget->resizeRowsToContents();
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);
160 item->setFlags(Qt::ItemFlags(item->flags() & (~Qt::ItemIsEditable)));
167 * When the treeWidgetItem in the page selector tree is singleclicked, Make sure
168 * The tree has been populated.
170 void FileSet::PgSeltreeWidgetClicked()
179 * Added to set the context menu policy based on currently active treeWidgetItem
180 * signaled by currentItemChanged
182 void FileSet::tableItemChanged(QTableWidgetItem *currentwidgetitem, QTableWidgetItem *previouswidgetitem)
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();
190 /* The Previous item */
191 if (previouswidgetitem) { /* avoid a segfault if first time */
192 tableWidget->removeAction(actionStatusFileSetInConsole);
193 tableWidget->removeAction(actionShowJobs);
196 if (m_currentlyselected.length() != 0) {
197 /* set a hold variable to the fileset name in case the context sensitive
199 tableWidget->addAction(actionStatusFileSetInConsole);
200 tableWidget->addAction(actionShowJobs);
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.
210 void FileSet::createContextMenu()
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,
227 * Function responding to actionListJobsofFileSet which calls mainwin function
228 * to create a window of a list of jobs of this fileset.
230 void FileSet::consoleShowFileSet()
232 QString cmd("show fileset=\"");
233 cmd += m_currentlyselected + "\"";
238 * Virtual function which is called when this page is visible on the stack
240 void FileSet::currentStackItem()
244 /* Create the context menu for the fileset table */
250 * Save user settings associated with this page
252 void FileSet::writeSettings()
254 QSettings settings(m_console->m_dir->name(), "bat");
255 settings.beginGroup("FileSet");
256 settings.setValue("geometry", saveGeometry());
261 * Read and restore user settings associated with this page
263 void FileSet::readSettings()
265 QSettings settings(m_console->m_dir->name(), "bat");
266 settings.beginGroup("FileSet");
267 restoreGeometry(settings.value("geometry").toByteArray());
272 * Create a JobList object pre-populating a fileset
274 void FileSet::showJobs()
276 QTreeWidgetItem *parentItem = mainWin->getFromHash(this);
277 mainWin->createPageJobList("", "", "", m_currentlyselected, parentItem);