]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/wx-console/console_thread.h
Fix out of order volumes during restore.
[bacula/bacula] / bacula / src / wx-console / console_thread.h
1 /*
2  *
3  *    Interaction thread between director and the GUI
4  *
5  *    Nicolas Boichat, April-May 2004
6  *
7  *    Version $Id$
8  */
9 /*
10    Copyright (C) 2004 Kern Sibbald and John Walker
11
12    This program is free software; you can redistribute it and/or
13    modify it under the terms of the GNU General Public License
14    as published by the Free Software Foundation; either version 2
15    of the License, or (at your option) any later version.
16
17    This program is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20    GNU General Public License for more details.
21
22    You should have received a copy of the GNU General Public License
23    along with this program; if not, write to the Free Software
24    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25  */
26
27 #ifndef CONSOLE_THREAD_H
28 #define CONSOLE_THREAD_H
29
30 #include <wx/wxprec.h>
31
32 #include <wx/string.h>
33 #include <wx/thread.h> // inheriting class's header file
34 #include <wx/intl.h> /* We need to have _ and N_ defined by wxWidgets before Bacula tries to redefine them */
35 #include "bacula.h"
36 #include "jcr.h"
37
38 /**
39  * Console thread, does interaction between bacula routines and the GUI
40  */
41 class console_thread : public wxThread
42 {
43    public:
44       // class constructor
45       console_thread();
46       // class destructor
47       ~console_thread();
48
49       void* Entry();
50       void Write(const char* str);
51       virtual void Delete();
52
53       static void InitLib();
54       static void FreeLib();
55       static wxString LoadConfig(wxString configfile);
56       static void SetWorkingDirectory(wxString w_dir);
57    private:
58       static bool inited;
59       static bool configloaded;
60
61       bool choosingdirector;
62
63       static wxString working_dir;
64
65       int directorchoosen;
66
67       BSOCK* UA_sock;
68       JCR jcr;
69 };
70
71 int pm_cst_strcpy(POOLMEM **pm, const char *str);
72
73 #endif // CONSOLE_THREAD_H