ardour
export_status.h
Go to the documentation of this file.
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 
27 #include "ardour/types.h"
28 
29 #include "pbd/signals.h"
30 
31 namespace ARDOUR
32 {
33 
35  public:
36  ExportStatus ();
37  void init ();
38 
39  /* Status info */
40 
41  volatile bool stop;
42  volatile bool running;
43 
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  void cleanup ();
53 
54  /* Progress info */
55 
56  volatile bool normalizing;
57 
58  volatile uint32_t total_timespans;
59  volatile uint32_t timespan;
60  std::string timespan_name;
61 
64 
67 
68  volatile uint32_t total_normalize_cycles;
69  volatile uint32_t current_normalize_cycle;
70 
71  private:
72  volatile bool _aborted;
73  volatile bool _errors;
74  volatile bool _finished;
75 
76 };
77 
78 } // namespace ARDOUR
79 
80 #endif /* __ardour_export_status_h__ */
std::string timespan_name
Definition: export_status.h:60
volatile uint32_t timespan
Definition: export_status.h:59
volatile bool _finished
Definition: export_status.h:74
volatile bool stop
Definition: export_status.h:41
volatile framecnt_t processed_frames_current_timespan
Definition: export_status.h:66
bool finished() const
Definition: export_status.h:50
volatile framecnt_t total_frames_current_timespan
Definition: export_status.h:65
volatile bool _errors
Definition: export_status.h:73
volatile framecnt_t processed_frames
Definition: export_status.h:63
bool errors() const
Definition: export_status.h:46
volatile bool running
Definition: export_status.h:42
int64_t framecnt_t
Definition: types.h:76
bool aborted() const
Definition: export_status.h:45
Definition: amp.h:29
volatile uint32_t total_normalize_cycles
Definition: export_status.h:68
volatile bool _aborted
Definition: export_status.h:72
#define LIBARDOUR_API
LIBARDOUR_API void cleanup()
Definition: globals.cc:502
volatile framecnt_t total_frames
Definition: export_status.h:62
volatile uint32_t total_timespans
Definition: export_status.h:58
PBD::Signal0< void > Finished
Definition: export_status.h:48
volatile uint32_t current_normalize_cycle
Definition: export_status.h:69
LIBARDOUR_API bool init(bool with_vst, bool try_optimization, const char *localedir)
Definition: globals.cc:376
volatile bool normalizing
Definition: export_status.h:56