]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/console/console.h
Apply win32-fixes patch from Riccardo that makes the Win32
[bacula/bacula] / bacula / src / qt-console / console / console.h
1 #ifndef _CONSOLE_H_
2 #define _CONSOLE_H_
3 /*
4    Bacula® - The Network Backup Solution
5
6    Copyright (C) 2007-2008 Free Software Foundation Europe e.V.
7
8    The main author of Bacula is Kern Sibbald, with contributions from
9    many others, a complete list can be found in the file AUTHORS.
10    This program is Free Software; you can redistribute it and/or
11    modify it under the terms of version two of the GNU General Public
12    License as published by the Free Software Foundation and included
13    in the file LICENSE.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23    02110-1301, USA.
24
25    Bacula® is a registered trademark of Kern Sibbald.
26    The licensor of Bacula is the Free Software Foundation Europe
27    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
28    Switzerland, email:ftf@fsfeurope.org.
29 */
30 /*
31  *   Version $Id$
32  *
33  *   Kern Sibbald, January 2007
34  */
35
36 #include <QtGui>
37 #include "pages.h"
38 #include "ui_console.h"
39
40 #ifndef MAX_NAME_LENGTH
41 #define MAX_NAME_LENGTH 128
42 #endif
43
44 /*
45  * Structure for obtaining the defaults for a job
46  */
47 struct job_defaults {
48    QString job_name;
49    QString pool_name;
50    QString messages_name;
51    QString client_name;
52    QString store_name;
53    QString where;
54    QString level;
55    QString type;
56    QString fileset_name;
57    QString catalog_name;
58    bool enabled;
59 };
60
61 class DIRRES;
62 class BSOCK;
63 class JCR;
64 class CONRES;
65
66 class Console : public Pages, public Ui::ConsoleForm
67 {
68    Q_OBJECT 
69
70 public:
71    Console(QStackedWidget *parent);
72    ~Console();
73    void display_text(const char *buf);
74    void display_text(const QString buf);
75    void display_textf(const char *fmt, ...);
76    void display_html(const QString buf);
77    void update_cursor(void);
78    void write_dir(const char *buf);
79    int  sock_read();
80    bool dir_cmd(const char *cmd, QStringList &results);
81    bool dir_cmd(QString &cmd, QStringList &results);
82    bool sql_cmd(const char *cmd, QStringList &results);
83    bool sql_cmd(QString &cmd, QStringList &results);
84    bool authenticate_director(JCR *jcr, DIRRES *director, CONRES *cons, 
85           char *buf, int buflen);
86    bool is_connected() { return m_sock != NULL; };
87    bool is_ready() { return is_connected() && m_at_prompt && m_at_main_prompt; };
88    bool is_connectedGui();
89    bool preventInUseConnect();
90    const QFont get_font();
91    void writeSettings();
92    void readSettings();
93    char *msg();
94    bool notify(bool enable); // enables/disables socket notification - returns the previous state
95    bool is_notify_enabled() const;
96    QStringList get_list(char *cmd);
97    bool get_job_defaults(struct job_defaults &);
98    void terminate();
99    void beginNewCommand();
100    void displayToPrompt();
101    void discardToPrompt();
102    void setDirectorTreeItem(QTreeWidgetItem *);
103    void setDirRes(DIRRES *dir);
104    QTreeWidgetItem *directorTreeItem() { return m_directorTreeItem; };
105    void getDirResName(QString &);
106    void startTimer();
107    void stopTimer();
108    void getVolumeList(QStringList &);
109    void getStatusList(QStringList &);
110
111    QStringList job_list;
112    QStringList client_list;
113    QStringList fileset_list;
114    QStringList messages_list;
115    QStringList pool_list;
116    QStringList storage_list;
117    QStringList type_list;
118    QStringList level_list;
119
120
121 public slots:
122    void connect_dir();                     
123    void read_dir(int fd);
124    int read(void);
125    int write(const char *msg);
126    int write(QString msg);
127    void status_dir(void);
128    void messages(void);
129    void set_font(void);
130    void poll_messages(void);
131    void consoleHelp();
132    void consoleReload();
133
134 public:
135    DIRRES *m_dir;                  /* so various pages can reference it */
136
137 private:
138    QTextEdit *m_textEdit;
139    BSOCK *m_sock;   
140    bool m_at_prompt;
141    bool m_at_main_prompt;
142    QSocketNotifier *m_notifier;
143    QTextCursor *m_cursor;
144    QTreeWidgetItem *m_directorTreeItem;
145    bool m_api_set;
146    bool m_messages_pending;
147    QTimer *m_timer;
148 };
149
150 #endif /* _CONSOLE_H_ */