Re-work main right-click context menu to operate on the selection, and remove some...
[ardour.git] / gtk2_ardour / editor_export_audio.cc
index a68a94a4e8c105aab08b342ff83b5a81f507e34a..d4f8cc3eb842a165f4239577577926d40b602735 100644 (file)
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id$
 */
 
 #include <unistd.h>
 #include <climits>
-#include "export_dialog.h"
+
+#include <gtkmm/messagedialog.h>
+
+#include "export_session_dialog.h"
+#include "export_region_dialog.h"
+#include "export_range_markers_dialog.h"
 #include "editor.h"
 #include "public_editor.h"
 #include "selection.h"
 #include "time_axis_view.h"
 #include "audio_time_axis.h"
-#include "regionview.h"
-#include "ardour_message.h"
+#include "audio_region_view.h"
 
 #include <pbd/pthread_utils.h>
 #include <ardour/types.h>
 #include <ardour/export.h>
 #include <ardour/audio_track.h>
-#include <ardour/filesource.h>
-#include <ardour/diskstream.h>
+#include <ardour/audiofilesource.h>
+#include <ardour/audio_diskstream.h>
 #include <ardour/audioregion.h>
 #include <ardour/audioplaylist.h>
+#include <ardour/chan_count.h>
+#include <ardour/source_factory.h>
+#include <ardour/audiofilesource.h>
 
 #include "i18n.h"
 
 using namespace std;
 using namespace ARDOUR;
+using namespace PBD;
 using namespace Gtk;
 
 void
 Editor::export_session()
 {
        if (session) {
-               export_range (0, session->current_end_frame());
+               export_range (session->current_start_frame(), session->current_end_frame());
        }
 }
 
@@ -57,21 +64,21 @@ Editor::export_selection ()
 {
        if (session) {
                if (selection->time.empty()) {
-                       ArdourMessage message (this, X_("norange"), _("There is no range to export.\n\nSelect a range using the range mouse mode"));
+                       MessageDialog message (*this, _("There is no selection to export.\n\nSelect a selection using the range mouse mode"));
+                       message.run ();
                        return;
                }
 
-               export_range (selection->time.front().start, 
-                             selection->time.front().end);
+               export_range (selection->time.front().start, selection->time.front().end);
        }
 }
 
 void
-Editor::export_range (jack_nframes_t start, jack_nframes_t end)
+Editor::export_range (nframes_t start, nframes_t end)
 {
        if (session) {
                if (export_dialog == 0) {
-                       export_dialog = new ExportDialog (*this);
+                       export_dialog = new ExportSessionDialog (*this);
                }
                
                export_dialog->connect_to_session (session);
@@ -80,66 +87,66 @@ Editor::export_range (jack_nframes_t start, jack_nframes_t end)
        }
 }      
 
+/** Export the first selected region */
 void
 Editor::export_region ()
 {
-       if (clicked_regionview == 0) {
+       if (selection->regions.empty()) {
                return;
        }
 
-       ExportDialog* dialog = new ExportDialog (*this, &clicked_regionview->region);
+       boost::shared_ptr<Region> r = selection->regions.front()->region();
+       
+       ExportDialog* dialog = new ExportRegionDialog (*this, r);
                
        dialog->connect_to_session (session);
-       dialog->set_range (0, clicked_regionview->region.length());
+       dialog->set_range (r->first_frame(), r->last_frame());
        dialog->start_export();
 }
 
 void
-Editor::write_a_region ()
+Editor::export_range_markers ()
 {
-       if (clicked_regionview == 0) {
-               return;
-       }
-
-       FileSelection file_selector;
-
-       file_selector.get_selection_entry()->signal_activate().connect (sigc::bind (mem_fun(*this, &Editor::finish_sub_event_loop), 1));
-       file_selector.get_cancel_button()->signal_clicked().connect (bind (mem_fun(*this, &Editor::finish_sub_event_loop), -1));
-       file_selector.get_ok_button()->signal_clicked().connect (bind (mem_fun(*this, &Editor::finish_sub_event_loop), 1));
-       file_selector.signal_delete_event().connect (bind (mem_fun(*this, &Editor::finish_sub_event_loop_on_delete), -1));
+       if (session) {
 
-       file_selector.show_all();
+               if (session->locations()->num_range_markers() == 0) {
+                       MessageDialog message (*this, _("There are no ranges to export.\n\nCreate 1 or more ranges by dragging the mouse in the range bar"));
+                       message.run ();
+                       return;
+               }
+               
 
-       run_sub_event_loop ();
-       
-       if (sub_event_loop_status == 1) {
-               string path = file_selector.get_filename();
-               printf ("got region: %s\n", path.c_str());
-               if (path.length()) {
-                       write_region (path, clicked_regionview->region);
-               } 
+               if (export_range_markers_dialog == 0) {
+                       export_range_markers_dialog = new ExportRangeMarkersDialog(*this);
+               }
+               
+               export_range_markers_dialog->connect_to_session (session);
+               export_range_markers_dialog->start_export();
        }
-}
+}      
 
 int
-Editor::write_region_selection (AudioRegionSelection& regions)
+Editor::write_region_selection (RegionSelection& regions)
 {
-       for (AudioRegionSelection::iterator i = regions.begin(); i != regions.end(); ++i) {
-               if (write_region ("", (*i)->region) == false) {
-                       return -1;
-               }
+       for (RegionSelection::iterator i = regions.begin(); i != regions.end(); ++i) {
+               // FIXME
+               AudioRegionView* arv = dynamic_cast<AudioRegionView*>(*i);
+               if (arv)
+                       if (write_region ("", arv->audio_region()) == false)
+                               return -1;
        }
+
        return 0;
 }
 
 void
 Editor::bounce_region_selection ()
 {
-       for (AudioRegionSelection::iterator i = selection->audio_regions.begin(); i != selection->audio_regions.end(); ++i) {
+       for (RegionSelection::iterator i = selection->regions.begin(); i != selection->regions.end(); ++i) {
                
-               AudioRegion& region ((*i)->region);
-               AudioTimeAxisView* atv = dynamic_cast<AudioTimeAxisView*>(&(*i)->get_time_axis_view());
-               AudioTrack* track = dynamic_cast<AudioTrack*>(&(atv->route()));
+               boost::shared_ptr<Region> region ((*i)->region());
+               RouteTimeAxisView* rtv = dynamic_cast<RouteTimeAxisView*>(&(*i)->get_time_axis_view());
+               Track* track = dynamic_cast<Track*>(rtv->route().get());
 
                InterThreadInfo itt;
 
@@ -147,29 +154,29 @@ Editor::bounce_region_selection ()
                itt.cancel = false;
                itt.progress = 0.0f;
 
-               track->bounce_range (region.position(), region.position() + region.length(), itt);
+               track->bounce_range (region->position(), region->position() + region->length(), itt);
        }
 }
 
 bool
-Editor::write_region (string path, AudioRegion& region)
+Editor::write_region (string path, boost::shared_ptr<AudioRegion> region)
 {
-       FileSource* fs;
-       const jack_nframes_t chunk_size = 4096;
-       jack_nframes_t to_read;
+       boost::shared_ptr<AudioFileSource> fs;
+       const nframes_t chunk_size = 4096;
+       nframes_t to_read;
        Sample buf[chunk_size];
        gain_t gain_buffer[chunk_size];
-       jack_nframes_t pos;
+       nframes_t pos;
        char s[PATH_MAX+1];
        uint32_t cnt;
-       vector<FileSource *> sources;
+       vector<boost::shared_ptr<AudioFileSource> > sources;
        uint32_t nchans;
        
-       nchans = region.n_channels();
+       nchans = region->n_channels();
        
        /* don't do duplicate of the entire source if that's what is going on here */
 
-       if (region.start() == 0 && region.length() == region.source().length()) {
+       if (region->start() == 0 && region->length() == region->source()->length()) {
                /* XXX should link(2) to create a new inode with "path" */
                return true;
        }
@@ -181,11 +188,11 @@ Editor::write_region (string path, AudioRegion& region)
                        for (cnt = 0; cnt < 999999; ++cnt) {
                                if (nchans == 1) {
                                        snprintf (s, sizeof(s), "%s/%s_%" PRIu32 ".wav", session->sound_dir().c_str(),
-                                                 legalize_for_path(region.name()).c_str(), cnt);
+                                                 legalize_for_path(region->name()).c_str(), cnt);
                                }
                                else {
                                        snprintf (s, sizeof(s), "%s/%s_%" PRIu32 "-%" PRId32 ".wav", session->sound_dir().c_str(),
-                                                 legalize_for_path(region.name()).c_str(), cnt, n);
+                                                 legalize_for_path(region->name()).c_str(), cnt, n);
                                }
 
                                path = s;
@@ -203,7 +210,7 @@ Editor::write_region (string path, AudioRegion& region)
                
                        
                        try {
-                               fs = new FileSource (path, session->frame_rate());
+                               fs = boost::dynamic_pointer_cast<AudioFileSource> (SourceFactory::createWritable (DataType::AUDIO, *session, path, false, session->frame_rate()));
                        }
                        
                        catch (failed_constructor& err) {
@@ -218,19 +225,19 @@ Editor::write_region (string path, AudioRegion& region)
 
        }
        
-       to_read = region.length();
-       pos = region.position();
+       to_read = region->length();
+       pos = region->position();
 
        while (to_read) {
-               jack_nframes_t this_time;
+               nframes_t this_time;
 
                this_time = min (to_read, chunk_size);
 
-               for (vector<FileSource *>::iterator src=sources.begin(); src != sources.end(); ++src) {
-
-                       fs = (*src);
+               for (vector<boost::shared_ptr<AudioFileSource> >::iterator src=sources.begin(); src != sources.end(); ++src) {
                        
-                       if (region.read_at (buf, buf, gain_buffer, pos, this_time) != this_time) {
+                       fs = (*src);
+
+                       if (region->read_at (buf, buf, gain_buffer, pos, this_time) != this_time) {
                                break;
                        }
                        
@@ -249,17 +256,17 @@ Editor::write_region (string path, AudioRegion& region)
        time (&tnow);
        now = localtime (&tnow);
        
-       for (vector<FileSource *>::iterator src = sources.begin(); src != sources.end(); ++src) {
+       for (vector<boost::shared_ptr<AudioFileSource> >::iterator src = sources.begin(); src != sources.end(); ++src) {
                (*src)->update_header (0, *now, tnow);
+               (*src)->mark_immutable ();
        }
 
        return true;
 
 error_out:
 
-       for (vector<FileSource*>::iterator i = sources.begin(); i != sources.end(); ++i) {
+       for (vector<boost::shared_ptr<AudioFileSource> >::iterator i = sources.begin(); i != sources.end(); ++i) {
                (*i)->mark_for_remove ();
-               delete (*i);
        }
 
        return 0;
@@ -284,7 +291,7 @@ Editor::write_audio_selection (TimeSelection& ts)
 
                if (atv->is_audio_track()) {
 
-                       Playlist* playlist = atv->get_diskstream()->playlist();
+                       boost::shared_ptr<AudioPlaylist> playlist = boost::dynamic_pointer_cast<AudioPlaylist>(atv->get_diskstream()->playlist());
                        
                        if (playlist && write_audio_range (*playlist, atv->get_diskstream()->n_channels(), ts) == 0) {
                                ret = -1;
@@ -297,18 +304,20 @@ Editor::write_audio_selection (TimeSelection& ts)
 }
 
 bool
-Editor::write_audio_range (Playlist& playlist, uint32_t channels, list<AudioRange>& range)
+Editor::write_audio_range (AudioPlaylist& playlist, const ChanCount& count, list<AudioRange>& range)
 {
-       FileSource* fs;
-       const jack_nframes_t chunk_size = 4096;
-       jack_nframes_t nframes;
+       boost::shared_ptr<AudioFileSource> fs;
+       const nframes_t chunk_size = 4096;
+       nframes_t nframes;
        Sample buf[chunk_size];
        gain_t gain_buffer[chunk_size];
-       jack_nframes_t pos;
+       nframes_t pos;
        char s[PATH_MAX+1];
        uint32_t cnt;
        string path;
-       vector<FileSource *> sources;
+       vector<boost::shared_ptr<AudioFileSource> > sources;
+
+       uint32_t channels = count.n_audio();
 
        for (uint32_t n=0; n < channels; ++n) {
                
@@ -335,7 +344,7 @@ Editor::write_audio_range (Playlist& playlist, uint32_t channels, list<AudioRang
                path = s;
                
                try {
-                       fs = new FileSource (path, session->frame_rate());
+                       fs = boost::dynamic_pointer_cast<AudioFileSource> (SourceFactory::createWritable (DataType::AUDIO, *session, path, false, session->frame_rate()));
                }
                
                catch (failed_constructor& err) {
@@ -353,7 +362,7 @@ Editor::write_audio_range (Playlist& playlist, uint32_t channels, list<AudioRang
                pos = (*i).start;
                
                while (nframes) {
-                       jack_nframes_t this_time;
+                       nframes_t this_time;
                        
                        this_time = min (nframes, chunk_size);
 
@@ -385,7 +394,7 @@ Editor::write_audio_range (Playlist& playlist, uint32_t channels, list<AudioRang
 
                        while (nframes) {
 
-                               jack_nframes_t this_time = min (nframes, chunk_size);
+                               nframes_t this_time = min (nframes, chunk_size);
                                memset (buf, 0, sizeof (Sample) * this_time);
 
                                for (uint32_t n=0; n < channels; ++n) {
@@ -408,8 +417,9 @@ Editor::write_audio_range (Playlist& playlist, uint32_t channels, list<AudioRang
        time (&tnow);
        now = localtime (&tnow);
 
-       for (uint32_t n=0; n < channels; ++n) {
-               sources[n]->update_header (0, *now, tnow);
+       for (vector<boost::shared_ptr<AudioFileSource> >::iterator s = sources.begin(); s != sources.end(); ++s) {
+               (*s)->update_header (0, *now, tnow);
+               (*s)->mark_immutable ();
                // do we need to ref it again?
        }
        
@@ -418,9 +428,8 @@ Editor::write_audio_range (Playlist& playlist, uint32_t channels, list<AudioRang
 error_out:
        /* unref created files */
 
-       for (vector<FileSource*>::iterator i = sources.begin(); i != sources.end(); ++i) {
+       for (vector<boost::shared_ptr<AudioFileSource> >::iterator i = sources.begin(); i != sources.end(); ++i) {
                (*i)->mark_for_remove ();
-               delete *i;
        }
 
        return false;
@@ -431,7 +440,7 @@ Editor::write_selection ()
 {
        if (!selection->time.empty()) {
                write_audio_selection (selection->time);
-       } else if (!selection->audio_regions.empty()) {
-               write_region_selection (selection->audio_regions);
+       } else if (!selection->regions.empty()) {
+               write_region_selection (selection->regions);
        }
 }