Marginal cleanup.
[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 <stdint.h>
25
26 #include "ardour/types.h"
27
28 #include "pbd/signals.h"
29
30 namespace ARDOUR
31 {
32
33 class ExportStatus {
34   public:
35         ExportStatus ();
36         void init ();
37
38         /* Status info */
39
40         volatile bool           stop;
41         volatile bool           running;
42
43         PBD::Signal0<void>      Aborting;
44         void abort (bool error_occurred = false);
45         bool aborted () const { return _aborted; }
46         bool errors () const { return _errors; }
47
48         PBD::Signal0<void>      Finished;
49         void finish ();
50         bool finished () const { return _finished; }
51
52         /* Progress info */
53
54         volatile bool           normalizing;
55
56         volatile uint32_t       total_timespans;
57         volatile uint32_t       timespan;
58         std::string             timespan_name;
59
60         volatile framecnt_t     total_frames;
61         volatile framecnt_t     processed_frames;
62
63         volatile framecnt_t     total_frames_current_timespan;
64         volatile framecnt_t     processed_frames_current_timespan;
65
66         volatile uint32_t       total_normalize_cycles;
67         volatile uint32_t       current_normalize_cycle;
68
69   private:
70         volatile bool          _aborted;
71         volatile bool          _errors;
72         volatile bool          _finished;
73
74 };
75
76 } // namespace ARDOUR
77
78 #endif /* __ardour_export_status_h__ */