globally remove all trailing whitespace from ardour code base.
[ardour.git] / gtk2_ardour / editor_audio_import.cc
1 /*
2     Copyright (C) 2000-2006 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <sys/types.h>
21 #include <sys/stat.h>
22 #include <sys/time.h>
23 #include <errno.h>
24 #include <unistd.h>
25 #include <algorithm>
26
27 #include <sndfile.h>
28
29 #include "pbd/pthread_utils.h"
30 #include "pbd/basename.h"
31 #include "pbd/shortpath.h"
32 #include "pbd/stateful_diff_command.h"
33
34 #include <gtkmm2ext/choice.h>
35
36 #include "ardour/audio_track.h"
37 #include "ardour/audiofilesource.h"
38 #include "ardour/audioregion.h"
39 #include "ardour/midi_region.h"
40 #include "ardour/midi_track.h"
41 #include "ardour/operations.h"
42 #include "ardour/region_factory.h"
43 #include "ardour/smf_source.h"
44 #include "ardour/source_factory.h"
45 #include "ardour/utils.h"
46 #include "pbd/memento_command.h"
47
48 #include "ardour_ui.h"
49 #include "cursor_context.h"
50 #include "editor.h"
51 #include "sfdb_ui.h"
52 #include "editing.h"
53 #include "audio_time_axis.h"
54 #include "midi_time_axis.h"
55 #include "session_import_dialog.h"
56 #include "gui_thread.h"
57 #include "interthread_progress_window.h"
58 #include "mouse_cursors.h"
59 #include "editor_cursors.h"
60
61 #include "i18n.h"
62
63 using namespace std;
64 using namespace ARDOUR;
65 using namespace PBD;
66 using namespace Gtk;
67 using namespace Gtkmm2ext;
68 using namespace Editing;
69 using std::string;
70
71 /* Functions supporting the incorporation of external (non-captured) audio material into ardour */
72
73 void
74 Editor::add_external_audio_action (ImportMode mode_hint)
75 {
76         if (_session == 0) {
77                 MessageDialog msg (_("You can't import or embed an audiofile until you have a session loaded."));
78                 msg.run ();
79                 return;
80         }
81
82         if (sfbrowser == 0) {
83                 sfbrowser = new SoundFileOmega (_("Add Existing Media"), _session, 0, true, mode_hint);
84         } else {
85                 sfbrowser->set_mode (mode_hint);
86         }
87
88         external_audio_dialog ();
89 }
90
91 void
92 Editor::external_audio_dialog ()
93 {
94         vector<string> paths;
95         uint32_t audio_track_cnt;
96         uint32_t midi_track_cnt;
97
98         if (_session == 0) {
99                 MessageDialog msg (_("You can't import or embed an audiofile until you have a session loaded."));
100                 msg.run ();
101                 return;
102         }
103
104         audio_track_cnt = 0;
105         midi_track_cnt = 0;
106
107         for (TrackSelection::iterator x = selection->tracks.begin(); x != selection->tracks.end(); ++x) {
108                 AudioTimeAxisView* atv = dynamic_cast<AudioTimeAxisView*>(*x);
109
110                 if (atv) {
111                         if (atv->is_audio_track()) {
112                                 audio_track_cnt++;
113                         }
114
115                 } else {
116                         MidiTimeAxisView* mtv = dynamic_cast<MidiTimeAxisView*>(*x);
117
118                         if (mtv) {
119                                 if (mtv->is_midi_track()) {
120                                         midi_track_cnt++;
121                                 }
122                         }
123                 }
124         }
125
126         if (sfbrowser == 0) {
127                 sfbrowser = new SoundFileOmega (_("Add Existing Media"), _session, audio_track_cnt, midi_track_cnt, true);
128         } else {
129                 sfbrowser->reset (audio_track_cnt, midi_track_cnt);
130         }
131
132         sfbrowser->show_all ();
133 }
134
135 void
136 Editor::session_import_dialog ()
137 {
138         SessionImportDialog dialog (_session);
139         dialog.run ();
140 }
141
142 typedef std::map<PBD::ID,boost::shared_ptr<ARDOUR::Source> > SourceMap;
143
144 /**
145  * Updating is still disabled, see note in libs/ardour/import.cc Session::import_files()
146  *
147  * all_or_nothing:
148  *   true  = show "Update", "Import" and "Skip"
149  *   false = show "Import", and "Cancel"
150  *
151  * Returns:
152  *     0  To update an existing source of the same name
153  *     1  To import/embed the file normally (make sure the new name will be unique)
154  *     2  If the user wants to skip this file
155  **/
156 int
157 Editor::check_whether_and_how_to_import(string path, bool all_or_nothing)
158 {
159         string wave_name (Glib::path_get_basename(path));
160
161         bool already_exists = false;
162         uint32_t existing;
163
164         if ((existing = _session->count_sources_by_origin (path)) > 0) {
165                 already_exists = true;
166         }
167
168         int function = 1;
169
170         if (already_exists) {
171                 string message;
172                 if (all_or_nothing) {
173                         // updating is still disabled
174                         //message = string_compose(_("The session already contains a source file named %1. Do you want to update that file (and thus all regions using the file) or import this file as a new file?"),wave_name);
175                         message = string_compose (_("The session already contains a source file named %1.  Do you want to import %1 as a new file, or skip it?"), wave_name);
176                 } else {
177                         message = string_compose (_("The session already contains a source file named %1.  Do you want to import %2 as a new source, or skip it?"), wave_name, wave_name);
178
179                 }
180                 MessageDialog dialog(message, false, Gtk::MESSAGE_QUESTION, Gtk::BUTTONS_NONE, true);
181
182                 if (all_or_nothing) {
183                         // disabled
184                         //dialog.add_button("Update", 0);
185                         dialog.add_button("Import", 1);
186                         dialog.add_button("Skip",   2);
187                 } else {
188                         dialog.add_button("Import", 1);
189                         dialog.add_button("Cancel", 2);
190                 }
191
192                 //dialog.add_button("Skip all", 4); // All or rest?
193
194                 dialog.show();
195
196                 function = dialog.run ();
197
198                 dialog.hide();
199         }
200
201         return function;
202 }
203
204 boost::shared_ptr<AudioTrack>
205 Editor::get_nth_selected_audio_track (int nth) const
206 {
207         AudioTimeAxisView* atv;
208         TrackSelection::iterator x;
209
210         for (x = selection->tracks.begin(); nth > 0 && x != selection->tracks.end(); ++x) {
211
212                 atv = dynamic_cast<AudioTimeAxisView*>(*x);
213
214                 if (!atv) {
215                         continue;
216                 } else if (atv->is_audio_track()) {
217                         --nth;
218                 }
219         }
220
221         if (x == selection->tracks.end()) {
222                 atv = dynamic_cast<AudioTimeAxisView*>(selection->tracks.back());
223         } else {
224                 atv = dynamic_cast<AudioTimeAxisView*>(*x);
225         }
226
227         if (!atv || !atv->is_audio_track()) {
228                 return boost::shared_ptr<AudioTrack>();
229         }
230
231         return atv->audio_track();
232 }
233
234 boost::shared_ptr<MidiTrack>
235 Editor::get_nth_selected_midi_track (int nth) const
236 {
237         MidiTimeAxisView* mtv;
238         TrackSelection::iterator x;
239
240         for (x = selection->tracks.begin(); nth > 0 && x != selection->tracks.end(); ++x) {
241
242                 mtv = dynamic_cast<MidiTimeAxisView*>(*x);
243
244                 if (!mtv) {
245                         continue;
246                 } else if (mtv->is_midi_track()) {
247                         --nth;
248                 }
249         }
250
251         if (x == selection->tracks.end()) {
252                 mtv = dynamic_cast<MidiTimeAxisView*>(selection->tracks.back());
253         } else {
254                 mtv = dynamic_cast<MidiTimeAxisView*>(*x);
255         }
256
257         if (!mtv || !mtv->is_midi_track()) {
258                 return boost::shared_ptr<MidiTrack>();
259         }
260
261         return mtv->midi_track();
262 }
263
264 void
265 Editor::do_import (vector<string>        paths,
266                    ImportDisposition     disposition,
267                    ImportMode            mode,
268                    SrcQuality            quality,
269                    framepos_t&           pos,
270                    ARDOUR::PluginInfoPtr instrument)
271 {
272         boost::shared_ptr<Track> track;
273         vector<string> to_import;
274         int nth = 0;
275         bool use_timestamp = (pos == -1);
276
277         current_interthread_info = &import_status;
278         import_status.current = 1;
279         import_status.total = paths.size ();
280         import_status.all_done = false;
281
282         ImportProgressWindow ipw (&import_status, _("Import"), _("Cancel Import"));
283
284         bool ok = true;
285
286         if (disposition == Editing::ImportMergeFiles) {
287
288                 /* create 1 region from all paths, add to 1 track,
289                    ignore "track"
290                 */
291
292                 bool cancel = false;
293                 for (vector<string>::iterator a = paths.begin(); a != paths.end(); ++a) {
294                         int check = check_whether_and_how_to_import(*a, false);
295                         if (check == 2) {
296                                 cancel = true;
297                                 break;
298                         }
299                 }
300
301                 if (cancel) {
302                         ok = false;
303                 } else {
304                         ipw.show ();
305                         ok = (import_sndfiles (paths, disposition, mode, quality, pos, 1, 1, track, false, instrument) == 0);
306                         import_status.sources.clear();
307                 }
308
309         } else {
310
311                 bool replace = false;
312
313                 for (vector<string>::iterator a = paths.begin(); a != paths.end(); ++a) {
314
315                         const int check = check_whether_and_how_to_import (*a, true);
316
317                         switch (check) {
318                         case 2:
319                                 // user said skip
320                                 continue;
321                         case 0:
322                                 fatal << "Updating existing sources should be disabled!" << endmsg;
323                                 abort(); /* NOTREACHED*/
324                                 break;
325                         case 1:
326                                 replace = false;
327                                 break;
328                         default:
329                                 fatal << "Illegal return " << check <<  " from check_whether_and_how_to_import()!" << endmsg;
330                                 abort(); /* NOTREACHED*/
331                         }
332
333                         /* have to reset this for every file we handle */
334
335                         if (use_timestamp) {
336                                 pos = -1;
337                         }
338
339                         ipw.show ();
340
341                         switch (disposition) {
342                         case Editing::ImportDistinctFiles:
343
344                                 to_import.clear ();
345                                 to_import.push_back (*a);
346
347                                 if (mode == Editing::ImportToTrack) {
348                                         track = get_nth_selected_audio_track (nth++);
349                                 }
350
351                                 ok = (import_sndfiles (to_import, disposition, mode, quality, pos, 1, -1, track, replace, instrument) == 0);
352                                 import_status.sources.clear();
353                                 break;
354
355                         case Editing::ImportDistinctChannels:
356
357                                 to_import.clear ();
358                                 to_import.push_back (*a);
359
360                                 ok = (import_sndfiles (to_import, disposition, mode, quality, pos, -1, -1, track, replace, instrument) == 0);
361                                 import_status.sources.clear();
362                                 break;
363
364                         case Editing::ImportSerializeFiles:
365
366                                 to_import.clear ();
367                                 to_import.push_back (*a);
368
369                                 ok = (import_sndfiles (to_import, disposition, mode, quality, pos, 1, 1, track, replace, instrument) == 0);
370                                 import_status.sources.clear();
371                                 break;
372
373                         case Editing::ImportMergeFiles:
374                                 // Not entered, handled in earlier if() branch
375                                 break;
376                         }
377                 }
378         }
379
380         if (ok) {
381                 _session->save_state ("");
382         }
383
384         import_status.all_done = true;
385 }
386
387 void
388 Editor::do_embed (vector<string> paths, ImportDisposition import_as, ImportMode mode, framepos_t& pos, ARDOUR::PluginInfoPtr instrument)
389 {
390         boost::shared_ptr<Track> track;
391         bool check_sample_rate = true;
392         bool ok = false;
393         vector<string> to_embed;
394         bool multi = paths.size() > 1;
395         int nth = 0;
396         bool use_timestamp = (pos == -1);
397
398         switch (import_as) {
399         case Editing::ImportDistinctFiles:
400                 for (vector<string>::iterator a = paths.begin(); a != paths.end(); ++a) {
401
402                         /* have to reset this for every file we handle */
403                         if (use_timestamp) {
404                                 pos = -1;
405                         }
406
407                         to_embed.clear ();
408                         to_embed.push_back (*a);
409
410                         if (mode == Editing::ImportToTrack) {
411                                 track = get_nth_selected_audio_track (nth++);
412                         }
413
414                         if (embed_sndfiles (to_embed, multi, check_sample_rate, import_as, mode, pos, 1, -1, track, instrument) < -1) {
415                                 goto out;
416                         }
417                 }
418                 break;
419
420         case Editing::ImportDistinctChannels:
421                 for (vector<string>::iterator a = paths.begin(); a != paths.end(); ++a) {
422
423                         /* have to reset this for every file we handle */
424                         if (use_timestamp) {
425                                 pos = -1;
426                         }
427
428                         to_embed.clear ();
429                         to_embed.push_back (*a);
430
431                         if (embed_sndfiles (to_embed, multi, check_sample_rate, import_as, mode, pos, -1, -1, track, instrument) < -1) {
432                                 goto out;
433                         }
434                 }
435                 break;
436
437         case Editing::ImportMergeFiles:
438                 if (embed_sndfiles (paths, multi, check_sample_rate, import_as, mode, pos, 1, 1, track, instrument) < -1) {
439                         goto out;
440                 }
441                 break;
442
443         case Editing::ImportSerializeFiles:
444                 for (vector<string>::iterator a = paths.begin(); a != paths.end(); ++a) {
445
446                         /* have to reset this for every file we handle */
447                         if (use_timestamp) {
448                                 pos = -1;
449                         }
450
451                         to_embed.clear ();
452                         to_embed.push_back (*a);
453
454                         if (embed_sndfiles (to_embed, multi, check_sample_rate, import_as, mode, pos, 1, 1, track, instrument) < -1) {
455                                 goto out;
456                         }
457                 }
458                 break;
459         }
460
461         ok = true;
462
463   out:
464         if (ok) {
465                 _session->save_state ("");
466         }
467 }
468
469 int
470 Editor::import_sndfiles (vector<string>            paths,
471                          ImportDisposition         disposition,
472                          ImportMode                mode,
473                          SrcQuality                quality,
474                          framepos_t&               pos,
475                          int                       target_regions,
476                          int                       target_tracks,
477                          boost::shared_ptr<Track>& track,
478                          bool                      replace,
479                          ARDOUR::PluginInfoPtr     instrument)
480 {
481         import_status.paths = paths;
482         import_status.done = false;
483         import_status.cancel = false;
484         import_status.freeze = false;
485         import_status.quality = quality;
486         import_status.replace_existing_source = replace;
487
488         import_status.mode = mode;
489         import_status.pos = pos;
490         import_status.target_tracks = target_tracks;
491         import_status.target_regions = target_regions;
492         import_status.track = track;
493         import_status.replace = replace;
494
495         CursorContext::Handle cursor_ctx = CursorContext::create(*this, _cursors->wait);
496         gdk_flush ();
497
498         /* start import thread for this spec. this will ultimately call Session::import_files()
499            which, if successful, will add the files as regions to the region list. its up to us
500            (the GUI) to direct additional steps after that.
501         */
502
503         pthread_create_and_store ("import", &import_status.thread, _import_thread, this);
504         pthread_detach (import_status.thread);
505
506         while (!import_status.done && !import_status.cancel) {
507                 gtk_main_iteration ();
508         }
509
510         import_status.done = true;
511
512         int result = -1;
513
514         if (!import_status.cancel && !import_status.sources.empty()) {
515                 result = add_sources (
516                         import_status.paths,
517                         import_status.sources,
518                         import_status.pos,
519                         disposition,
520                         import_status.mode,
521                         import_status.target_regions,
522                         import_status.target_tracks,
523                         track, false, instrument
524                         );
525
526                 /* update position from results */
527
528                 pos = import_status.pos;
529         }
530
531         return result;
532 }
533
534 int
535 Editor::embed_sndfiles (vector<string>            paths,
536                         bool                      multifile,
537                         bool&                     check_sample_rate,
538                         ImportDisposition         disposition,
539                         ImportMode                mode,
540                         framepos_t&               pos,
541                         int                       target_regions,
542                         int                       target_tracks,
543                         boost::shared_ptr<Track>& track,
544                         ARDOUR::PluginInfoPtr     instrument)
545 {
546         boost::shared_ptr<AudioFileSource> source;
547         SourceList sources;
548         string linked_path;
549         SoundFileInfo finfo;
550
551         CursorContext::Handle cursor_ctx = CursorContext::create(*this, _cursors->wait);
552         gdk_flush ();
553
554         for (vector<string>::iterator p = paths.begin(); p != paths.end(); ++p) {
555
556                 string path = *p;
557                 string error_msg;
558
559                 /* note that we temporarily truncated _id at the colon */
560
561                 if (!AudioFileSource::get_soundfile_info (path, finfo, error_msg)) {
562                         error << string_compose(_("Editor: cannot open file \"%1\", (%2)"), path, error_msg ) << endmsg;
563                         return -3;
564                 }
565
566                 if (check_sample_rate  && (finfo.samplerate != (int) _session->frame_rate())) {
567                         vector<string> choices;
568
569                         if (multifile) {
570                                 choices.push_back (_("Cancel entire import"));
571                                 choices.push_back (_("Don't embed it"));
572                                 choices.push_back (_("Embed all without questions"));
573
574                                 Gtkmm2ext::Choice rate_choice (
575                                         _("Sample rate"),
576                                         string_compose (_("%1\nThis audiofile's sample rate doesn't match the session sample rate!"),
577                                                         short_path (path, 40)),
578                                         choices, false
579                                         );
580
581                                 int resx = rate_choice.run ();
582
583                                 switch (resx) {
584                                 case 0: /* stop a multi-file import */
585                                         return -2;
586                                 case 1: /* don't embed this one */
587                                         return -1;
588                                 case 2: /* do it, and the rest without asking */
589                                         check_sample_rate = false;
590                                         break;
591                                 case 3: /* do it */
592                                         break;
593                                 default:
594                                         return -2;
595                                 }
596                         } else {
597                                 choices.push_back (_("Cancel"));
598                                 choices.push_back (_("Embed it anyway"));
599
600                                 Gtkmm2ext::Choice rate_choice (
601                                         _("Sample rate"),
602                                         string_compose (_("%1\nThis audiofile's sample rate doesn't match the session sample rate!"), path),
603                                         choices, false
604                                         );
605
606                                 int resx = rate_choice.run ();
607
608                                 switch (resx) {
609                                 case 0: /* don't import */
610                                         return -1;
611                                 case 1: /* do it */
612                                         break;
613                                 default:
614                                         return -2;
615                                 }
616                         }
617                 }
618
619                 for (int n = 0; n < finfo.channels; ++n) {
620
621                         try {
622
623                                 /* check if we have this thing embedded already */
624
625                                 boost::shared_ptr<Source> s;
626
627                                 if ((s = _session->audio_source_by_path_and_channel (path, n)) == 0) {
628
629                                         source = boost::dynamic_pointer_cast<AudioFileSource> (
630                                                 SourceFactory::createExternal (DataType::AUDIO, *_session,
631                                                                                path, n,
632                                                                                (mode == ImportAsTapeTrack
633                                                                                 ? Source::Destructive
634                                                                                 : Source::Flag (0)),
635                                                                         true, true));
636                                 } else {
637                                         source = boost::dynamic_pointer_cast<AudioFileSource> (s);
638                                 }
639
640                                 sources.push_back(source);
641                         }
642
643                         catch (failed_constructor& err) {
644                                 error << string_compose(_("could not open %1"), path) << endmsg;
645                                 return -3;
646                         }
647
648                         gtk_main_iteration();
649                 }
650         }
651
652         if (!sources.empty()) {
653                 return add_sources (paths, sources, pos, disposition, mode, target_regions, target_tracks, track, true, instrument);
654         }
655
656         return 0;
657 }
658
659 int
660 Editor::add_sources (vector<string>            paths,
661                      SourceList&               sources,
662                      framepos_t&               pos,
663                      ImportDisposition         disposition,
664                      ImportMode                mode,
665                      int                       target_regions,
666                      int                       target_tracks,
667                      boost::shared_ptr<Track>& track,
668                      bool                      /*add_channel_suffix*/,
669                      ARDOUR::PluginInfoPtr     instrument)
670 {
671         vector<boost::shared_ptr<Region> > regions;
672         string region_name;
673         uint32_t input_chan = 0;
674         uint32_t output_chan = 0;
675         bool use_timestamp;
676         vector<string> track_names;
677
678         use_timestamp = (pos == -1);
679
680         // kludge (for MIDI we're abusing "channel" for "track" here)
681         if (SMFSource::safe_midi_file_extension (paths.front())) {
682                 target_regions = -1;
683         }
684
685         if (target_regions == 1) {
686
687                 /* take all the sources we have and package them up as a region */
688
689                 region_name = region_name_from_path (paths.front(), (sources.size() > 1), false);
690
691                 /* we checked in import_sndfiles() that there were not too many */
692
693                 while (RegionFactory::region_by_name (region_name)) {
694                         region_name = bump_name_once (region_name, '.');
695                 }
696
697                 PropertyList plist;
698
699                 plist.add (ARDOUR::Properties::start, 0);
700                 plist.add (ARDOUR::Properties::length, sources[0]->length (pos));
701                 plist.add (ARDOUR::Properties::name, region_name);
702                 plist.add (ARDOUR::Properties::layer, 0);
703                 plist.add (ARDOUR::Properties::whole_file, true);
704                 plist.add (ARDOUR::Properties::external, true);
705
706                 boost::shared_ptr<Region> r = RegionFactory::create (sources, plist);
707
708                 if (use_timestamp && boost::dynamic_pointer_cast<AudioRegion>(r)) {
709                         boost::dynamic_pointer_cast<AudioRegion>(r)->special_set_position(sources[0]->natural_position());
710                 }
711
712                 regions.push_back (r);
713
714                 /* if we're creating a new track, name it after the cleaned-up
715                  * and "merged" region name.
716                  */
717
718                 track_names.push_back (region_name);
719
720         } else if (target_regions == -1 || target_regions > 1) {
721
722                 /* take each source and create a region for each one */
723
724                 SourceList just_one;
725                 SourceList::iterator x;
726                 uint32_t n;
727
728                 for (n = 0, x = sources.begin(); x != sources.end(); ++x, ++n) {
729
730                         just_one.clear ();
731                         just_one.push_back (*x);
732
733                         boost::shared_ptr<FileSource> fs = boost::dynamic_pointer_cast<FileSource> (*x);
734
735                         if (sources.size() > 1 && disposition == ImportDistinctChannels) {
736
737                                 /* generate a per-channel region name so that things work as
738                                  * intended
739                                  */
740
741                                 string path;
742
743                                 if (fs) {
744                                         region_name = basename_nosuffix (fs->path());
745                                 } else {
746                                         region_name = (*x)->name();
747                                 }
748
749                                 if (sources.size() == 2) {
750                                         if (n == 0) {
751                                                 region_name += "-L";
752                                         } else {
753                                                 region_name += "-R";
754                                         }
755                                 } else if (sources.size() > 2) {
756                                         region_name += string_compose ("-%1", n+1);
757                                 }
758
759                                 track_names.push_back (region_name);
760
761                         } else {
762                                 if (fs) {
763                                         region_name = region_name_from_path (fs->path(), false, false, sources.size(), n);
764                                 } else {
765                                         region_name = (*x)->name();
766                                 }
767
768                                 if (SMFSource::safe_midi_file_extension (paths.front())) {
769                                         string track_name = string_compose ("%1-t%2", PBD::basename_nosuffix (fs->path()), (n + 1));
770                                         track_names.push_back (track_name);
771                                 } else {
772                                         track_names.push_back (PBD::basename_nosuffix (paths[n]));
773                                 }
774                         }
775
776                         PropertyList plist;
777
778                         /* Fudge region length to ensure it is non-zero; make it 1 beat at 120bpm
779                            for want of a better idea.  It can't be too small, otherwise if this
780                            is a MIDI region the conversion from frames -> beats -> frames will
781                            round it back down to 0 again.
782                         */
783                         framecnt_t len = (*x)->length (pos);
784                         if (len == 0) {
785                                 len = (60.0 / 120.0) * _session->frame_rate ();
786                         }
787
788                         plist.add (ARDOUR::Properties::start, 0);
789                         plist.add (ARDOUR::Properties::length, len);
790                         plist.add (ARDOUR::Properties::name, region_name);
791                         plist.add (ARDOUR::Properties::layer, 0);
792                         plist.add (ARDOUR::Properties::whole_file, true);
793                         plist.add (ARDOUR::Properties::external, true);
794
795                         boost::shared_ptr<Region> r = RegionFactory::create (just_one, plist);
796
797                         if (use_timestamp && boost::dynamic_pointer_cast<AudioRegion>(r)) {
798                                 boost::dynamic_pointer_cast<AudioRegion>(r)->special_set_position((*x)->natural_position());
799                         }
800
801                         regions.push_back (r);
802                 }
803         }
804
805         if (target_regions == 1) {
806                 input_chan = regions.front()->n_channels();
807         } else {
808                 if (target_tracks == 1) {
809                         input_chan = regions.size();
810                 } else {
811                         input_chan = 1;
812                 }
813         }
814
815         if (Config->get_output_auto_connect() & AutoConnectMaster) {
816                 output_chan = (_session->master_out() ? _session->master_out()->n_inputs().n_audio() : input_chan);
817         } else {
818                 output_chan = input_chan;
819         }
820
821         int n = 0;
822         framepos_t rlen = 0;
823
824         begin_reversible_command (Operations::insert_file);
825
826         /* we only use tracks names when importing to new tracks, but we
827          * require that one is defined for every region, just to keep
828          * the API simpler.
829          */
830         assert (regions.size() == track_names.size());
831
832         for (vector<boost::shared_ptr<Region> >::iterator r = regions.begin(); r != regions.end(); ++r, ++n) {
833                 boost::shared_ptr<AudioRegion> ar = boost::dynamic_pointer_cast<AudioRegion> (*r);
834
835                 if (use_timestamp) {
836                         if (ar) {
837
838                                 /* get timestamp for this region */
839
840                                 const boost::shared_ptr<Source> s (ar->sources().front());
841                                 const boost::shared_ptr<AudioSource> as = boost::dynamic_pointer_cast<AudioSource> (s);
842
843                                 assert (as);
844
845                                 if (as->natural_position() != 0) {
846                                         pos = as->natural_position();
847                                 } else if (target_tracks == 1) {
848                                         /* hmm, no timestamp available, put it after the previous region
849                                          */
850                                         if (n == 0) {
851                                                 pos = get_preferred_edit_position ();
852                                         } else {
853                                                 pos += rlen;
854                                         }
855                                 } else {
856                                         pos = get_preferred_edit_position ();
857                                 }
858                         } else {
859                                 /* should really get first position in MIDI file, but for now, use edit position*/
860                                 pos = get_preferred_edit_position ();
861                         }
862                 }
863
864                 finish_bringing_in_material (*r, input_chan, output_chan, pos, mode, track, track_names[n], instrument);
865
866                 rlen = (*r)->length();
867
868                 if (target_tracks != 1) {
869                         track.reset ();
870                 } else {
871                         if (!use_timestamp || !ar) {
872                                 /* line each one up right after the other */
873                                 pos += (*r)->length();
874                         }
875                 }
876         }
877
878         commit_reversible_command ();
879
880         /* setup peak file building in another thread */
881
882         for (SourceList::iterator x = sources.begin(); x != sources.end(); ++x) {
883                 SourceFactory::setup_peakfile (*x, true);
884         }
885
886         return 0;
887 }
888
889 int
890 Editor::finish_bringing_in_material (boost::shared_ptr<Region> region,
891                                      uint32_t                  in_chans,
892                                      uint32_t                  out_chans,
893                                      framepos_t&               pos,
894                                      ImportMode                mode,
895                                      boost::shared_ptr<Track>& existing_track,
896                                      const string&             new_track_name,
897                                      ARDOUR::PluginInfoPtr     instrument)
898 {
899         boost::shared_ptr<AudioRegion> ar = boost::dynamic_pointer_cast<AudioRegion>(region);
900         boost::shared_ptr<MidiRegion> mr = boost::dynamic_pointer_cast<MidiRegion>(region);
901
902         switch (mode) {
903         case ImportAsRegion:
904                 /* relax, its been done */
905                 break;
906
907         case ImportToTrack:
908         {
909                 if (!existing_track) {
910
911                         if (ar) {
912                                 existing_track = get_nth_selected_audio_track (0);
913                         } else if (mr) {
914                                 existing_track = get_nth_selected_midi_track (0);
915                         }
916
917                         if (!existing_track) {
918                                 return -1;
919                         }
920                 }
921
922                 boost::shared_ptr<Playlist> playlist = existing_track->playlist();
923                 boost::shared_ptr<Region> copy (RegionFactory::create (region, region->properties()));
924                 playlist->clear_changes ();
925                 playlist->add_region (copy, pos);
926                 if (Config->get_edit_mode() == Ripple)
927                         playlist->ripple (pos, copy->length(), copy);
928
929                 _session->add_command (new StatefulDiffCommand (playlist));
930                 break;
931         }
932
933         case ImportAsTrack:
934         {
935                 if (!existing_track) {
936                         if (ar) {
937                                 list<boost::shared_ptr<AudioTrack> > at (_session->new_audio_track (in_chans, out_chans, Normal, 0, 1));
938
939                                 if (at.empty()) {
940                                         return -1;
941                                 }
942
943                                 existing_track = at.front();
944                         } else if (mr) {
945                                 list<boost::shared_ptr<MidiTrack> > mt (
946                                         _session->new_midi_track (ChanCount (DataType::MIDI, 1),
947                                                                   ChanCount (DataType::MIDI, 1),
948                                                                   instrument,
949                                                                   Normal, 0, 1));
950
951                                 if (mt.empty()) {
952                                         return -1;
953                                 }
954
955                                 existing_track = mt.front();
956                         }
957
958                         if (!new_track_name.empty()) {
959                                 existing_track->set_name (new_track_name);
960                         } else {
961                                 existing_track->set_name (region->name());
962                         }
963                 }
964
965                 boost::shared_ptr<Playlist> playlist = existing_track->playlist();
966                 boost::shared_ptr<Region> copy (RegionFactory::create (region, true));
967                 playlist->clear_changes ();
968                 playlist->add_region (copy, pos);
969                 _session->add_command (new StatefulDiffCommand (playlist));
970                 break;
971         }
972
973         case ImportAsTapeTrack:
974         {
975                 if (!ar) {
976                         return -1;
977                 }
978
979                 list<boost::shared_ptr<AudioTrack> > at (_session->new_audio_track (in_chans, out_chans, Destructive));
980                 if (!at.empty()) {
981                         boost::shared_ptr<Playlist> playlist = at.front()->playlist();
982                         boost::shared_ptr<Region> copy (RegionFactory::create (region, true));
983                         playlist->clear_changes ();
984                         playlist->add_region (copy, pos);
985                         _session->add_command (new StatefulDiffCommand (playlist));
986                 }
987                 break;
988         }
989         }
990
991         return 0;
992 }
993
994 void *
995 Editor::_import_thread (void *arg)
996 {
997         SessionEvent::create_per_thread_pool ("import events", 64);
998
999         Editor *ed = (Editor *) arg;
1000         return ed->import_thread ();
1001 }
1002
1003 void *
1004 Editor::import_thread ()
1005 {
1006         _session->import_files (import_status);
1007         return 0;
1008 }