enough with umpteen "i18n.h" files. Consolidate on pbd/i18n.h
[ardour.git] / gtk2_ardour / editor_export_audio.cc
index 33eecff6d248450910536e7850eb5b4fd3514ea4..795091fb4142e846753dd1013bd83e7b272925a4 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2001 Paul Davis 
+    Copyright (C) 2001 Paul Davis
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
 
 /* Note: public Editor methods are documented in public_editor.h */
 
+#include <inttypes.h>
 #include <unistd.h>
 #include <climits>
 
 #include <gtkmm/messagedialog.h>
 
-#include "export_dialog.h"
-#include "editor.h"
-#include "public_editor.h"
-#include "selection.h"
-#include "time_axis_view.h"
-#include "audio_time_axis.h"
-#include "audio_region_view.h"
+#include "pbd/gstdio_compat.h"
+
+#include "gtkmm2ext/choice.h"
 
 #include "pbd/pthread_utils.h"
-#include "ardour/types.h"
+
 #include "ardour/audio_track.h"
 #include "ardour/audiofilesource.h"
-#include "ardour/audio_diskstream.h"
-#include "ardour/audioregion.h"
 #include "ardour/audioplaylist.h"
+#include "ardour/audioregion.h"
 #include "ardour/chan_count.h"
+#include "ardour/midi_region.h"
+#include "ardour/session.h"
 #include "ardour/session_directory.h"
 #include "ardour/source_factory.h"
-#include "ardour/audiofilesource.h"
+#include "ardour/types.h"
+
+#include "audio_region_view.h"
+#include "audio_time_axis.h"
+#include "editor.h"
+#include "export_dialog.h"
+#include "midi_export_dialog.h"
+#include "midi_region_view.h"
+#include "public_editor.h"
+#include "selection.h"
+#include "time_axis_view.h"
+#include "utils.h"
 
-#include "i18n.h"
+#include "pbd/i18n.h"
 
 using namespace std;
 using namespace ARDOUR;
@@ -54,8 +63,16 @@ using namespace Gtk;
 void
 Editor::export_audio ()
 {
-       ExportDialog dialog (*this);
-       dialog.set_session (session);
+       ExportDialog dialog (*this, _("Export"), ExportProfileManager::RegularExport);
+       dialog.set_session (_session);
+       dialog.run();
+}
+
+void
+Editor::stem_export ()
+{
+       StemExportDialog dialog (*this);
+       dialog.set_session (_session);
        dialog.run();
 }
 
@@ -63,18 +80,18 @@ void
 Editor::export_selection ()
 {
        ExportSelectionDialog dialog (*this);
-       dialog.set_session (session);
+       dialog.set_session (_session);
        dialog.run();
 }
 
 void
 Editor::export_range ()
 {
-       Marker* marker;
+       ArdourMarker* marker;
 
-       if ((marker = reinterpret_cast<Marker *> (marker_menu_item->get_data ("marker"))) == 0) {
+       if ((marker = reinterpret_cast<ArdourMarker *> (marker_menu_item->get_data ("marker"))) == 0) {
                fatal << _("programming error: marker canvas item has no marker object pointer!") << endmsg;
-               /*NOTREACHED*/
+               abort(); /*NOTREACHED*/
        }
 
        Location* l;
@@ -82,11 +99,37 @@ Editor::export_range ()
 
        if (((l = find_location_from_marker (marker, is_start)) != 0) && (l->end() > l->start())) {
                ExportRangeDialog dialog (*this, l->id().to_s());
-               dialog.set_session (session);
+               dialog.set_session (_session);
                dialog.run();
        }
 }
 
+bool
+Editor::process_midi_export_dialog (MidiExportDialog& dialog, boost::shared_ptr<MidiRegion> midi_region)
+{
+       string path = dialog.get_path ();
+
+       if (Glib::file_test (path, Glib::FILE_TEST_EXISTS)) {
+               bool overwrite = ARDOUR_UI_UTILS::overwrite_file_dialog (dialog,
+                                                                        _("Confirm MIDI File Overwrite"),
+                                                                        _("A file with the same name already exists. Do you want to overwrite it?"));
+
+               if (!overwrite) {
+                       return false;
+               }
+
+               /* force ::g_unlink because the backend code will
+                  go wrong if it tries to open an existing
+                  file for writing.
+               */
+               ::g_unlink (path.c_str());
+       }
+
+       (void) midi_region->clone (path);
+
+       return true;
+}
+
 /** Export the first selected region */
 void
 Editor::export_region ()
@@ -94,21 +137,36 @@ Editor::export_region ()
        if (selection->regions.empty()) {
                return;
        }
-       
-       try {
-               boost::shared_ptr<Region> r = selection->regions.front()->region();
-               AudioRegion & region (dynamic_cast<AudioRegion &> (*r));
-               
-               RouteTimeAxisViewPtr rtv = boost::dynamic_pointer_cast<RouteTimeAxisView> (selection->regions.front()->get_time_axis_view());
-               AudioTrack & track (dynamic_cast<AudioTrack &> (*rtv->route()));
-               
-               ExportRegionDialog dialog (*this, region, track);
-               dialog.set_session (session);
-               dialog.run();
-               
-       } catch (std::bad_cast & e) {
-               error << "Exporting Region failed!" << endmsg;
-               return;
+
+       boost::shared_ptr<Region> r = selection->regions.front()->region();
+       boost::shared_ptr<AudioRegion> audio_region = boost::dynamic_pointer_cast<AudioRegion>(r);
+       boost::shared_ptr<MidiRegion> midi_region = boost::dynamic_pointer_cast<MidiRegion>(r);
+
+       if (audio_region) {
+
+               RouteTimeAxisView & rtv (dynamic_cast<RouteTimeAxisView &> (selection->regions.front()->get_time_axis_view()));
+               AudioTrack & track (dynamic_cast<AudioTrack &> (*rtv.route()));
+
+               ExportRegionDialog dialog (*this, *(audio_region.get()), track);
+               dialog.set_session (_session);
+               dialog.run ();
+
+       } else if (midi_region) {
+
+               MidiExportDialog dialog (*this, midi_region);
+               dialog.set_session (_session);
+
+               bool finished = false;
+               while (!finished) {
+                       switch (dialog.run ()) {
+                       case Gtk::RESPONSE_ACCEPT:
+                               finished = process_midi_export_dialog (dialog, midi_region);
+                               break;
+                       default:
+                               finished = true;
+                               return;
+                       }
+               }
        }
 }
 
@@ -116,37 +174,43 @@ int
 Editor::write_region_selection (RegionSelection& regions)
 {
        for (RegionSelection::iterator i = regions.begin(); i != regions.end(); ++i) {
-               // FIXME
                AudioRegionView* arv = dynamic_cast<AudioRegionView*>(*i);
-               if (arv)
+               if (arv) {
                        if (write_region ("", arv->audio_region()) == false)
                                return -1;
+               }
+
+               MidiRegionView* mrv = dynamic_cast<MidiRegionView*>(*i);
+               if (mrv) {
+                       warning << "MIDI region export not implemented" << endmsg;
+               }
        }
 
        return 0;
 }
 
 void
-Editor::bounce_region_selection ()
+Editor::bounce_region_selection (bool with_processing)
 {
+       /* no need to check for bounceable() because this operation never puts
+        * its results back in the playlist (only in the region list).
+        */
+
        for (RegionSelection::iterator i = selection->regions.begin(); i != selection->regions.end(); ++i) {
-               
+
                boost::shared_ptr<Region> region ((*i)->region());
-               RouteTimeAxisViewPtr rtv = boost::dynamic_pointer_cast<RouteTimeAxisView>((*i)->get_time_axis_view());
-               Track* track = dynamic_cast<Track*>(rtv->route().get());
+               RouteTimeAxisView* rtv = dynamic_cast<RouteTimeAxisView*>(&(*i)->get_time_axis_view());
+               boost::shared_ptr<Track> track = boost::dynamic_pointer_cast<Track> (rtv->route());
 
                InterThreadInfo itt;
 
-               itt.done = false;
-               itt.cancel = false;
-               itt.progress = 0.0f;
+               boost::shared_ptr<Region> r;
 
-               boost::shared_ptr<Region> r = track->bounce_range (region->position(), region->position() + region->length(), itt);
-               cerr << "Result of bounce of "
-                    << region->name() << " len = " << region->length()
-                    << " was "
-                    << r->name() << " len = " << r->length()
-                    << endl;
+               if (with_processing) {
+                       r = track->bounce_range (region->position(), region->position() + region->length(), itt, track->main_outs(), false);
+               } else {
+                       r = track->bounce_range (region->position(), region->position() + region->length(), itt, boost::shared_ptr<Processor>(), false);
+               }
        }
 }
 
@@ -154,20 +218,20 @@ bool
 Editor::write_region (string path, boost::shared_ptr<AudioRegion> region)
 {
        boost::shared_ptr<AudioFileSource> fs;
-       const nframes64_t chunk_size = 4096;
-       nframes64_t to_read;
+       const framepos_t chunk_size = 4096;
+       framepos_t to_read;
        Sample buf[chunk_size];
        gain_t gain_buffer[chunk_size];
-       nframes64_t pos;
+       framepos_t pos;
        char s[PATH_MAX+1];
        uint32_t cnt;
        vector<boost::shared_ptr<AudioFileSource> > sources;
        uint32_t nchans;
 
-       const string sound_directory = session->session_directory().sound_path().to_string();
+       const string sound_directory = _session->session_directory().sound_path();
 
        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(0)) {
@@ -178,7 +242,7 @@ Editor::write_region (string path, boost::shared_ptr<AudioRegion> region)
        if (path.length() == 0) {
 
                for (uint32_t n=0; n < nchans; ++n) {
-                       
+
                        for (cnt = 0; cnt < 999999; ++cnt) {
                                if (nchans == 1) {
                                        snprintf (s, sizeof(s), "%s/%s_%" PRIu32 ".wav", sound_directory.c_str(),
@@ -190,26 +254,26 @@ Editor::write_region (string path, boost::shared_ptr<AudioRegion> region)
                                }
 
                                path = s;
-                               
-                               if (::access (path.c_str(), F_OK) != 0) {
+
+                               if (!Glib::file_test (path, Glib::FILE_TEST_EXISTS)) {
                                        break;
                                }
                        }
-                       
+
                        if (cnt == 999999) {
                                error << "" << endmsg;
                                goto error_out;
                        }
-                       
-               
-                       
+
+
+
                        try {
                                fs = boost::dynamic_pointer_cast<AudioFileSource> (
-                                               SourceFactory::createWritable (DataType::AUDIO, *session,
-                                                               path, true,
-                                                               false, session->frame_rate()));
+                                       SourceFactory::createWritable (DataType::AUDIO, *_session,
+                                                                      path, true,
+                                                                      false, _session->frame_rate()));
                        }
-                       
+
                        catch (failed_constructor& err) {
                                goto error_out;
                        }
@@ -221,23 +285,23 @@ Editor::write_region (string path, boost::shared_ptr<AudioRegion> region)
                /* TODO: make filesources based on passed path */
 
        }
-       
+
        to_read = region->length();
        pos = region->position();
 
        while (to_read) {
-               nframes64_t this_time;
+               framepos_t this_time;
 
                this_time = min (to_read, chunk_size);
 
                for (vector<boost::shared_ptr<AudioFileSource> >::iterator src=sources.begin(); src != sources.end(); ++src) {
-                       
+
                        fs = (*src);
 
                        if (region->read_at (buf, buf, gain_buffer, pos, this_time) != this_time) {
                                break;
                        }
-                       
+
                        if (fs->write (buf, this_time) != this_time) {
                                error << "" << endmsg;
                                goto error_out;
@@ -252,7 +316,7 @@ Editor::write_region (string path, boost::shared_ptr<AudioRegion> region)
        struct tm* now;
        time (&tnow);
        now = localtime (&tnow);
-       
+
        for (vector<boost::shared_ptr<AudioFileSource> >::iterator src = sources.begin(); src != sources.end(); ++src) {
                (*src)->update_header (0, *now, tnow);
                (*src)->mark_immutable ();
@@ -280,17 +344,17 @@ Editor::write_audio_selection (TimeSelection& ts)
 
        for (TrackSelection::iterator i = selection->tracks.begin(); i != selection->tracks.end(); ++i) {
 
-               AudioTimeAxisViewPtr atv;
+               AudioTimeAxisView* atv;
 
-               if ((atv = boost::dynamic_pointer_cast<AudioTimeAxisView>(*i)) == 0) {
+               if ((atv = dynamic_cast<AudioTimeAxisView*>(*i)) == 0) {
                        continue;
                }
 
                if (atv->is_audio_track()) {
 
-                       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) {
+                       boost::shared_ptr<AudioPlaylist> playlist = boost::dynamic_pointer_cast<AudioPlaylist>(atv->track()->playlist());
+
+                       if (playlist && write_audio_range (*playlist, atv->track()->n_channels(), ts) == 0) {
                                ret = -1;
                                break;
                        }
@@ -304,22 +368,22 @@ bool
 Editor::write_audio_range (AudioPlaylist& playlist, const ChanCount& count, list<AudioRange>& range)
 {
        boost::shared_ptr<AudioFileSource> fs;
-       const nframes64_t chunk_size = 4096;
-       nframes64_t nframes;
+       const framepos_t chunk_size = 4096;
+       framepos_t nframes;
        Sample buf[chunk_size];
        gain_t gain_buffer[chunk_size];
-       nframes64_t pos;
+       framepos_t pos;
        char s[PATH_MAX+1];
        uint32_t cnt;
        string path;
        vector<boost::shared_ptr<AudioFileSource> > sources;
 
-       const string sound_directory = session->session_directory().sound_path().to_string();
+       const string sound_directory = _session->session_directory().sound_path();
 
        uint32_t channels = count.n_audio();
 
        for (uint32_t n=0; n < channels; ++n) {
-               
+
                for (cnt = 0; cnt < 999999; ++cnt) {
                        if (channels == 1) {
                                snprintf (s, sizeof(s), "%s/%s_%" PRIu32 ".wav", sound_directory.c_str(),
@@ -329,74 +393,74 @@ Editor::write_audio_range (AudioPlaylist& playlist, const ChanCount& count, list
                                snprintf (s, sizeof(s), "%s/%s_%" PRIu32 "-%" PRId32 ".wav", sound_directory.c_str(),
                                          legalize_for_path(playlist.name()).c_str(), cnt, n);
                        }
-                       
-                       if (::access (s, F_OK) != 0) {
+
+                       if (!Glib::file_test (s, Glib::FILE_TEST_EXISTS)) {
                                break;
                        }
                }
-               
+
                if (cnt == 999999) {
                        error << "" << endmsg;
                        goto error_out;
                }
 
                path = s;
-               
+
                try {
                        fs = boost::dynamic_pointer_cast<AudioFileSource> (
-                                       SourceFactory::createWritable (DataType::AUDIO, *session,
-                                                       path, true,
-                                                       false, session->frame_rate()));
+                               SourceFactory::createWritable (DataType::AUDIO, *_session,
+                                                              path, true,
+                                                              false, _session->frame_rate()));
                }
-               
+
                catch (failed_constructor& err) {
                        goto error_out;
                }
-               
+
                sources.push_back (fs);
 
        }
-       
+
 
        for (list<AudioRange>::iterator i = range.begin(); i != range.end();) {
-       
+
                nframes = (*i).length();
                pos = (*i).start;
-               
+
                while (nframes) {
-                       nframes64_t this_time;
-                       
+                       framepos_t this_time;
+
                        this_time = min (nframes, chunk_size);
 
                        for (uint32_t n=0; n < channels; ++n) {
 
                                fs = sources[n];
-                               
+
                                if (playlist.read (buf, buf, gain_buffer, pos, this_time, n) != this_time) {
                                        break;
                                }
-                               
+
                                if (fs->write (buf, this_time) != this_time) {
                                        goto error_out;
                                }
                        }
-                       
+
                        nframes -= this_time;
                        pos += this_time;
                }
-               
+
                list<AudioRange>::iterator tmp = i;
                ++tmp;
 
                if (tmp != range.end()) {
-                       
+
                        /* fill gaps with silence */
-                       
+
                        nframes = (*tmp).start - (*i).end;
 
                        while (nframes) {
 
-                               nframes64_t this_time = min (nframes, chunk_size);
+                               framepos_t this_time = min (nframes, chunk_size);
                                memset (buf, 0, sizeof (Sample) * this_time);
 
                                for (uint32_t n=0; n < channels; ++n) {
@@ -424,7 +488,7 @@ Editor::write_audio_range (AudioPlaylist& playlist, const ChanCount& count, list
                (*s)->mark_immutable ();
                // do we need to ref it again?
        }
-       
+
        return true;
 
 error_out: