]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/wx-console/wxbrestorepanel.h
ebfb82f364d1989a3fc55217853a75fab8391738
[bacula/bacula] / bacula / src / wx-console / wxbrestorepanel.h
1 /*
2  *
3  *   wxbPanel for restoring files
4  *
5  *    Nicolas Boichat, April-May 2004
6  *
7  */
8 /*
9    Copyright (C) 2004 Kern Sibbald and John Walker
10
11    This program is free software; you can redistribute it and/or
12    modify it under the terms of the GNU General Public License
13    as published by the Free Software Foundation; either version 2
14    of the License, or (at your option) any later version.
15
16    This program is distributed in the hope that it will be useful,
17    but WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19    GNU General Public License for more details.
20
21    You should have received a copy of the GNU General Public License
22    along with this program; if not, write to the Free Software
23    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24  */
25
26 #ifndef WXBRESTOREPANEL_H
27 #define WXBRESTOREPANEL_H
28
29 #include "wx/wxprec.h"
30
31 #ifndef WX_PRECOMP
32    #include "wx/wx.h"
33 #endif
34
35 #include "wxbtableparser.h"
36
37 #include <wx/thread.h>
38 #include <wx/listctrl.h>
39 #include <wx/treectrl.h>
40 #include <wx/gauge.h>
41 #include <wx/stattext.h>
42 #include <wx/splitter.h>
43
44 #include "wxbutils.h"
45
46 #include "wxbconfigpanel.h"
47 #include "wxbtreectrl.h"
48 #include "wxblistctrl.h"
49
50 /*
51  * wxbPanel for restoring files
52  */
53 class wxbRestorePanel : public wxbPanel
54 {
55    public:
56       wxbRestorePanel(wxWindow* parent);
57       ~wxbRestorePanel();
58
59       /* wxbPanel overloadings */
60       virtual wxString GetTitle();
61       virtual void EnablePanel(bool enable = true);
62
63    private:
64 /* Commands called by events handler */
65
66       /* The main button has been clicked */
67       void CmdStart();
68
69       /* The cancel button has been clicked */
70       void CmdCancel();
71
72       /* Apply configuration changes */
73       void CmdConfigApply();
74
75       /* Cancel restore */
76       void CmdConfigCancel();
77
78        /* List jobs for a specified client */
79       void CmdListJobs();
80
81       /* List files and directories for a specified tree item */
82       void CmdList(wxTreeItemId item);
83
84       /* Mark a treeitem (directory) or several listitems (file or directory),
85        * state defines if it should mark (1), unmark (0), or switch state (-1) */
86       void CmdMark(wxTreeItemId treeitem, long* listitems, int listsize, int state = -1);
87
88 /* General functions and variables */
89       //bool ended; /* The last command send has finished */
90
91       //long filemessages; /* When restoring, number of files restored */
92       long totfilemessages; /* When restoring, number of files to be restored */
93       wxString jobid;
94
95       /* Parse a table in tableParser */
96       wxbTableParser* CreateAndWaitForParser(wxString cmd);
97
98       /* Run a command, and waits until result is fully received,
99        * if keepresults is true, returns a valid pointer to a wxbDataTokenizer
100        * containing the data. */
101       wxbDataTokenizer* WaitForEnd(wxString cmd, bool keepresults = false, bool linebyline = true);
102
103       /* Run a command, and waits until prompt result is fully received,
104        * if keepresults is true, returns a valid pointer to a wxbPromptParser
105        * containing the data. */
106       wxbPromptParser* WaitForPrompt(wxString cmd, bool keepresults = false);
107
108       /* Run a dir command, and waits until result is fully received. */
109       void UpdateTreeItem(wxTreeItemId item, bool updatelist);
110
111       /* Parse dir command results. */
112       wxString* ParseList(wxString line);
113
114       /* Sets a list item state, and update its parents and children if it is a directory */
115       void SetListItemState(long listitem, int newstate);
116
117       /* Sets a tree item state, and update its children, parents and list (if necessary) */
118       void SetTreeItemState(wxTreeItemId item, int newstate);
119       
120       /* Update a tree item parents' state */
121       void UpdateTreeItemState(wxTreeItemId item);
122
123       /* Refresh a tree item, and all its children. */
124       void RefreshTree(wxTreeItemId item);
125       
126       /* Update first config, adapting settings to the job name selected */
127       void UpdateFirstConfig();
128       
129       /* Update second config */
130       bool UpdateSecondConfig(wxbDataTokenizer* dt);
131       
132 /* Status related */
133       enum status_enum
134       {
135          disabled,    // The panel is not activatable
136          activable,   // The panel is activable, but not activated
137          entered,     // The panel is activated
138          choosing,    // The user is choosing files to restore
139          listing,     // Dir listing is in progress
140          configuring, // The user is configuring restore process
141          restoring,   // Bacula is restoring files
142          finished     // Retore done (state will change in activable)
143       };
144
145       status_enum status;
146
147       /* Cancelled status :
148        *  - 0 - !cancelled
149        *  - 1 - will be cancelled
150        *  - 2 - has been cancelled */
151       int cancelled;
152
153       /* Set current status by enabling/disabling components */
154       void SetStatus(status_enum newstatus);
155
156 /* UI related */
157       bool working; // A command is running, discard GUI events
158       bool markWhenListingDone;
159       wxTreeItemId currentTreeItem; // Currently selected tree item
160
161       /* Enable or disable config controls status */
162       void EnableConfig(bool enable);
163
164 /* Event handling */
165       void OnStart(wxCommandEvent& WXUNUSED(event));
166       void OnCancel(wxCommandEvent& WXUNUSED(event));
167       
168       void OnTreeChanging(wxTreeEvent& event);
169       void OnTreeExpanding(wxTreeEvent& event);
170       void OnTreeChanged(wxTreeEvent& event);
171       void OnTreeMarked(wxbTreeMarkedEvent& event);
172       void OnTreeAdd(wxCommandEvent& WXUNUSED(event));
173       void OnTreeRemove(wxCommandEvent& WXUNUSED(event));
174       void OnTreeRefresh(wxCommandEvent& WXUNUSED(event));
175       
176       void OnListMarked(wxbListMarkedEvent& event);
177       void OnListActivated(wxListEvent& event);
178       void OnListChanged(wxListEvent& event);
179       void OnListAdd(wxCommandEvent& WXUNUSED(event));
180       void OnListRemove(wxCommandEvent& WXUNUSED(event));
181       void OnListRefresh(wxCommandEvent& WXUNUSED(event));
182       
183       void OnConfigUpdated(wxCommandEvent& event);
184       void OnConfigOk(wxCommandEvent& WXUNUSED(event));
185       void OnConfigApply(wxCommandEvent& WXUNUSED(event));
186       void OnConfigCancel(wxCommandEvent& WXUNUSED(event));
187
188 /* Components */
189       wxBoxSizer *centerSizer; /* Center sizer */
190       wxSplitterWindow *treelistPanel; /* Panel which contains tree and list */
191       wxbConfigPanel *configPanel; /* Panel which contains initial restore options */
192       wxbConfigPanel *restorePanel; /* Panel which contains final restore options */
193
194       wxImageList* imagelist; //image list for tree and list
195
196       wxButton* start;
197       wxButton* cancel;
198       
199       wxbTreeCtrl* tree;
200       wxButton* treeadd;
201       wxButton* treeremove;
202       wxButton* treerefresh;
203       
204       wxbListCtrl* list;
205       wxButton* listadd;
206       wxButton* listremove;
207       wxButton* listrefresh;
208       
209       wxGauge* gauge;
210      
211       long cfgUpdated; //keeps which config fields have been updated
212
213       friend class wxbSplitterWindow;
214
215       DECLARE_EVENT_TABLE();    
216 };
217
218 #endif // WXBRESTOREPANEL_H
219