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