Normalize API rename part 2
[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/libardour_visibility.h"
27 #include "ardour/export_analysis.h"
28 #include "ardour/types.h"
29
30 #include "pbd/signals.h"
31
32 namespace ARDOUR
33 {
34
35 class LIBARDOUR_API ExportStatus {
36   public:
37         ExportStatus ();
38         void init ();
39
40         /* Status info */
41
42         volatile bool           stop;
43
44         void abort (bool error_occurred = false);
45         bool aborted () const { return _aborted; }
46         bool errors () const { return _errors; }
47         bool running () const { return _running; }
48
49         void set_running (bool r) {
50                 assert (!_run_lock.trylock()); // must hold lock
51                 _running = r;
52         }
53         Glib::Threads::Mutex& lock () { return _run_lock; }
54
55         PBD::Signal0<void>      Finished;
56         void finish ();
57
58         void cleanup ();
59
60         /* Progress info */
61
62         volatile enum Progress {
63                 Exporting,
64                 Normalizing,
65                 Encoding,
66                 Tagging,
67                 Uploading,
68                 Command }
69                                 active_job;
70
71         volatile uint32_t       total_timespans;
72         volatile uint32_t       timespan;
73         std::string             timespan_name;
74
75         volatile framecnt_t     total_frames;
76         volatile framecnt_t     processed_frames;
77
78         volatile framecnt_t     total_frames_current_timespan;
79         volatile framecnt_t     processed_frames_current_timespan;
80
81         volatile uint32_t       total_postprocessing_cycles;
82         volatile uint32_t       current_postprocessing_cycle;
83
84         AnalysisResults         result_map;
85
86   private:
87         volatile bool          _aborted;
88         volatile bool          _errors;
89         volatile bool          _running;
90
91         Glib::Threads::Mutex   _run_lock;
92 };
93
94 } // namespace ARDOUR
95
96 #endif /* __ardour_export_status_h__ */