Normalize API rename part 2
[ardour.git] / libs / ardour / export_status.cc
index dbb96432ee5fb68aac8eded0611d069d51d68c6a..808d6f144c59d2d1617aee02243b7ffec8962dff 100644 (file)
@@ -18,6 +18,8 @@
 
 */
 
+#include <pbd/stacktrace.h>
+
 #include "ardour/export_status.h"
 
 namespace ARDOUR
@@ -31,38 +33,43 @@ ExportStatus::ExportStatus ()
 void
 ExportStatus::init ()
 {
+       Glib::Threads::Mutex::Lock l (_run_lock);
        stop = false;
-       running = false;
+       _running = false;
        _aborted = false;
-       _finished = false;
        _errors = false;
 
-       progress = 0.0;
-       normalizing = false;
+       active_job = Exporting;
 
        total_timespans = 0;
        timespan = 0;
 
        total_frames = 0;
        processed_frames = 0;
+
+       total_frames_current_timespan = 0;
+       processed_frames_current_timespan = 0;
+
+       total_postprocessing_cycles = 0;
+       current_postprocessing_cycle = 0;
+       result_map.clear();
 }
 
 void
 ExportStatus::abort (bool error_occurred)
 {
+       Glib::Threads::Mutex::Lock l (_run_lock);
        _aborted = true;
-       _finished = true;
        _errors = _errors || error_occurred;
-       running = false;
-       Aborting ();
+       _running = false;
 }
 
 void
 ExportStatus::finish ()
 {
-       _finished = true;
-       running = false;
-       Finished();
+       Glib::Threads::Mutex::Lock l (_run_lock);
+       set_running (false);
+       Finished(); /* EMIT SIGNAL */
 }
 
 } // namespace ARDOUR