88c2feb4937ad6556c36ee40569adedacec5656b
[ardour.git] / libs / ardour / ardour / export_status.h
1 /*
2     Copyright (C) 2008 Paul Davis
3     Author: Sakari Bergen
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 #ifndef __ardour_export_status_h__
22 #define __ardour_export_status_h__
23
24 #include <list>
25
26 #include <stdint.h>
27 #include <sigc++/signal.h>
28
29 namespace ARDOUR
30 {
31
32 enum ExportStage {
33         export_None,
34         export_ReadTimespan,
35         export_PostProcess,
36         export_Write
37 };
38
39 struct ExportStatus {
40
41         ExportStatus ();
42         void init ();
43         
44         /* Status info */
45         
46         volatile bool           stop;
47         volatile bool           running;
48         
49         sigc::signal<void>      Aborting;
50         void abort (bool error_occurred = false);
51         bool aborted () const { return _aborted; }
52         bool errors () const { return _errors; }
53         
54         sigc::signal<void>      Finished;
55         void finish ();
56         bool finished () const { return _aborted; }
57         
58         /* Progress info */
59         
60         volatile ExportStage    stage;
61         volatile float          progress;
62         
63         volatile uint32_t       total_timespans;
64         volatile uint32_t       timespan;
65         
66         volatile uint32_t       total_channel_configs;
67         volatile uint32_t       channel_config;
68         
69         volatile uint32_t       total_formats;
70         volatile uint32_t       format;
71         
72   private:
73         volatile bool          _aborted;
74         volatile bool          _errors;
75         volatile bool          _finished;
76         
77 };
78
79 } // namespace ARDOUR
80
81 #endif /* __ardour_export_status_h__ */