]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/mediaedit/mediaedit.cpp
Prevent connecting with the Console::m_at_main_prompt member.
[bacula/bacula] / bacula / src / qt-console / mediaedit / mediaedit.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  *   Version $Id: batstack.h 4230 2007-02-21 20:07:37Z kerns $
30  *
31  *   Dirk Bartley, March 2007
32  */
33  
34 #include <QAbstractEventDispatcher>
35 #include <QTableWidgetItem>
36 #include <QMessageBox>
37 #include "bat.h"
38 #include "mediaedit.h"
39
40 /*
41  * A constructor 
42  */
43 MediaEdit::MediaEdit(Console *console, QString &mediaId)
44 {
45    m_console = console;
46    m_console->notify(false);
47    m_pool = "";
48    m_status = "";
49    m_slot = 0;
50
51    setupUi(this);
52
53    if (!m_console->preventInUseConnect())
54        return;
55
56    /* The media's pool */
57    poolCombo->addItems(console->pool_list);
58
59    /* The media's Status */
60    QStringList statusList = (QStringList() << "Full" << "Used" << "Append" << "Error" << "Purged" << "Recycled");
61    statusCombo->addItems(statusList);
62
63    /* Set up the query for the default values */
64    QStringList FieldList = (QStringList()
65       << "Media.VolumeName" << "Pool.Name" << "Media.VolStatus" << "Media.Slot" );
66    QStringList AsList = (QStringList()
67       << "VolumeName" << "PoolName" << "Status" << "Slot" );
68    int i = 0;
69    QString query("SELECT ");
70    foreach (QString field, FieldList) {
71       if (i != 0) {
72          query += ", ";
73       }
74       query += field + " AS " + AsList[i];
75       i += 1;
76    }
77    query += " FROM Media, Pool WHERE Media.PoolId=Pool.PoolId";
78    query += " AND Media.MediaId='" + mediaId + "'";
79    query += " ORDER BY Pool.Name";
80
81    /* FIXME Make this a user configurable logging action and dont use printf */
82    //printf("MediaList query cmd : %s\n",query.toUtf8().data());
83    QStringList results;
84    if (m_console->sql_cmd(query, results)) {
85       QString field;
86       QStringList fieldlist;
87
88       /* Iterate through the lines of results, there should only be one. */
89       foreach (QString resultline, results) {
90          fieldlist = resultline.split("\t");
91          i = 0;
92
93          /* Iterate through fields in the record */
94          foreach (field, fieldlist) {
95             field = field.trimmed();  /* strip leading & trailing spaces */
96             if (i == 0) {
97                m_mediaName = field;
98                volumeLabel->setText(QString("Volume : %1").arg(m_mediaName));
99             } else if (i == 1) {
100                m_pool = field;
101             } else if (i == 2) {
102                m_status = field;
103             } else if (i == 3) {
104                bool ok;
105                m_slot = field.toInt(&ok, 10);
106                if (!ok){ m_slot = 0; }
107             }
108             i++;
109          } /* foreach field */
110       } /* foreach resultline */
111    } /* if results from query */
112
113    if (m_mediaName != "") {
114       int index;
115       /* default value for pool */
116       index = poolCombo->findText(m_pool, Qt::MatchExactly);
117       if (index != -1) {
118          poolCombo->setCurrentIndex(index);
119       }
120
121       /* default value for status */
122       index = statusCombo->findText(m_status, Qt::MatchExactly);
123       if (index != -1) {
124          statusCombo->setCurrentIndex(index);
125       }
126       slotSpin->setValue(m_slot);
127
128       this->show();
129    } else {
130       QMessageBox::warning(this, "No Volume name", "No Volume name given",
131                            QMessageBox::Ok, QMessageBox::Ok);
132       return;
133    }
134
135 }
136
137 /*
138  * Function to handle updating the record
139  */
140 void MediaEdit::accept()
141 {
142    QString scmd;
143    this->hide();
144    bool docmd = false;
145    scmd = QString("update volume=\"%1\"")
146                   .arg(m_mediaName);
147    if (m_pool != poolCombo->currentText()) {
148        scmd += " pool=\"" + poolCombo->currentText() + "\"";
149        docmd = true;
150    }
151    if (m_status != statusCombo->currentText()) {
152        scmd += " volstatus=\"" + statusCombo->currentText() + "\"";
153        docmd = true;
154    }
155    if (m_slot != slotSpin->value()) {
156        scmd += " slot=" + QString().setNum(slotSpin->value());
157        docmd = true;
158    }
159    if (docmd) {
160       /* FIXME Make this a user configurable logging action and dont use printf */
161       //printf("sending command : %s\n",scmd.toUtf8().data());
162       m_console->write_dir(scmd.toUtf8().data());
163       m_console->displayToPrompt();
164       m_console->notify(true);
165     }
166    delete this;
167    mainWin->resetFocus();
168 }
169
170 void MediaEdit::reject()
171 {
172    this->hide();
173    m_console->notify(true);
174    delete this;
175    mainWin->resetFocus();
176 }