]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/run/runcmd.cpp
Prevent connecting with the Console::m_at_main_prompt member.
[bacula/bacula] / bacula / src / qt-console / run / runcmd.cpp
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2007-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  *  Run Command Dialog class
31  *
32  *  This is called when a Run Command signal is received from the
33  *    Director. We parse the Director's output and throw up a 
34  *    dialog box.  This happens, for example, after the user finishes
35  *    selecting files to be restored. The Director will then submit a
36  *    run command, that causes this page to be popped up.
37  *
38  *   Kern Sibbald, March MMVII
39  *
40  *  $Id: $
41  */ 
42
43 #include "bat.h"
44 #include "run.h"
45
46 /*
47  * Setup all the combo boxes and display the dialog
48  */
49 runCmdPage::runCmdPage()
50 {
51    m_dtformat = "yyyy-MM-dd HH:mm:ss";
52    m_name = "Restore Run";
53    pgInitialize();
54    setupUi(this);
55    m_console->notify(false);
56
57    fill();
58    m_console->discardToPrompt();
59
60    connect(okButton, SIGNAL(pressed()), this, SLOT(okButtonPushed()));
61    connect(cancelButton, SIGNAL(pressed()), this, SLOT(cancelButtonPushed()));
62    dockPage();
63    setCurrent();
64    this->show();
65
66 }
67
68 void runCmdPage::fill()
69 {
70    QString item, val;
71    QStringList items;
72    QRegExp rx("^.*:\\s*(\\S.*$)");   /* Regex to get value */
73
74    clientCombo->addItems(m_console->client_list);
75    filesetCombo->addItems(m_console->fileset_list);
76    replaceCombo->addItems(QStringList() << "never" << "always" << "ifnewer" << "ifolder");
77    storageCombo->addItems(m_console->storage_list);
78    dateTimeEdit->setDisplayFormat(m_dtformat);
79
80    m_console->read();
81    item = m_console->msg();
82    items = item.split("\n");
83    label->setText(items[0]);
84    Dmsg1(200, "Title=%s\n", items[0].toUtf8().data());
85    items.removeFirst();               /* remove title */
86    foreach(item, items) {
87       rx.indexIn(item);
88       val = rx.cap(1);
89       Dmsg1(200, "Item=%s\n", item.toUtf8().data());
90       Dmsg1(200, "Value=%s\n", val.toUtf8().data());
91
92       if (item.startsWith("JobName:")) {
93          jobCombo->addItem(val);
94          continue;
95       }
96       if (item.startsWith("Bootstrap:")) {
97          bootstrap->setText(val);
98          continue;
99       }
100       if (item.startsWith("Backup Client:")) {
101          clientCombo->setCurrentIndex(clientCombo->findText(val, Qt::MatchExactly));
102          continue;
103       }
104       if (item.startsWith("Storage:")) {
105          storageCombo->setCurrentIndex(storageCombo->findText(val, Qt::MatchExactly));
106          continue;
107       }
108       if (item.startsWith("Where:")) {
109          where->setText(val);
110          continue;
111       }
112       if (item.startsWith("When:")) {
113          dateTimeEdit->setDateTime(QDateTime::fromString(val,m_dtformat));
114          continue;
115       }
116       if (item.startsWith("Catalog:")) {
117          catalogCombo->addItem(val);
118          continue;
119       }
120       if (item.startsWith("FileSet:")) {
121          filesetCombo->setCurrentIndex(filesetCombo->findText(val, Qt::MatchExactly));
122          continue;
123       }
124       if (item.startsWith("Priority:")) {
125          bool okay;
126          int pri = val.toInt(&okay, 10);
127          if (okay) 
128             prioritySpin->setValue(pri);
129          continue;
130       }
131       if (item.startsWith("Replace:")) {
132          replaceCombo->setCurrentIndex(replaceCombo->findText(val, Qt::MatchExactly));
133          continue;
134       }
135    }
136 }
137
138 void runCmdPage::okButtonPushed()
139 {
140    QString cmd(".mod");
141    cmd += " restoreclient=\"" + clientCombo->currentText() + "\"";
142    cmd += " fileset=\"" + filesetCombo->currentText() + "\"";
143    cmd += " storage=\"" + storageCombo->currentText() + "\"";
144    cmd += " replace=\"" + replaceCombo->currentText() + "\"";
145    cmd += " when=\"" + dateTimeEdit->dateTime().toString(m_dtformat) + "\"";
146    cmd += " bootstrap=\"" + bootstrap->text() + "\"";
147    cmd += " where=\"" + where->text() + "\"";
148    QString pri;
149    QTextStream(&pri) << " priority=\"" << prioritySpin->value() << "\"";
150    cmd += pri;
151    cmd += " yes\n";
152    
153    setConsoleCurrent();
154    QString displayhtml("<font color=\"blue\">");
155    displayhtml += cmd + "</font>\n";
156    m_console->display_html(displayhtml);
157    m_console->display_text("\n");
158    m_console->write_dir(cmd.toUtf8().data());
159    m_console->displayToPrompt();
160 //   consoleCommand(cmd); ***FIXME set back to consoleCommand when connection issue is resolved
161
162    m_console->notify(true);
163    closeStackPage();
164 }
165
166
167 void runCmdPage::cancelButtonPushed()
168 {
169    m_console->displayToPrompt();
170    mainWin->set_status(" Canceled");
171    this->hide();
172    m_console->notify(true);
173    closeStackPage();
174    mainWin->resetFocus();
175 }