]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/wx-console/console_thread.h
- Put Dmsg() on inside if() to avoid calling subroutine.
[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 "bacula.h"
35 #include "jcr.h"
36
37 /**
38  * Console thread, does interaction between bacula routines and the GUI
39  */
40 class console_thread : public wxThread
41 {
42    public:
43       // class constructor
44       console_thread();
45       // class destructor
46       ~console_thread();
47
48       void* Entry();
49       void Write(const char* str);
50       virtual void Delete();
51
52       static void InitLib();
53       static void FreeLib();
54       static wxString LoadConfig(wxString configfile);
55       static void SetWorkingDirectory(wxString w_dir);
56    private:
57       static bool inited;
58       static bool configloaded;
59
60       bool choosingdirector;
61
62       static wxString working_dir;
63
64       int directorchoosen;
65
66       BSOCK* UA_sock;
67       JCR jcr;
68 };
69
70 int pm_cst_strcpy(POOLMEM **pm, const char *str);
71
72 #endif // CONSOLE_THREAD_H