199eaac489f2a7555bf44fccd891fbaff780b714
[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
26 #include <sndfile.h>
27
28 #include <pbd/pthread_utils.h>
29 #include <pbd/basename.h>
30 #include <pbd/shortpath.h>
31
32 #include <gtkmm2ext/choice.h>
33 #include <gtkmm2ext/window_title.h>
34
35 #include <ardour/session.h>
36 #include <ardour/audioplaylist.h>
37 #include <ardour/audioregion.h>
38 #include <ardour/audio_diskstream.h>
39 #include <ardour/utils.h>
40 #include <ardour/audio_track.h>
41 #include <ardour/audioplaylist.h>
42 #include <ardour/audiofilesource.h>
43 #include <ardour/region_factory.h>
44 #include <ardour/source_factory.h>
45 #include <ardour/session.h>
46 #include <pbd/memento_command.h>
47
48 #include "ardour_ui.h"
49 #include "editor.h"
50 #include "sfdb_ui.h"
51 #include "editing.h"
52 #include "audio_time_axis.h"
53 #include "utils.h"
54
55 #include "i18n.h"
56
57 using namespace std;
58 using namespace ARDOUR;
59 using namespace PBD;
60 using namespace sigc;
61 using namespace Gtk;
62 using namespace Gtkmm2ext;
63 using namespace Editing;
64 using Glib::ustring;
65
66 /* Functions supporting the incorporation of external (non-captured) audio material into ardour */
67
68 void
69 Editor::add_external_audio_action (ImportMode mode_hint)
70 {
71         if (session == 0) {
72                 MessageDialog msg (0, _("You can't import or embed an audiofile until you have a session loaded."));
73                 msg.run ();
74                 return;
75         }
76         
77         if (sfbrowser == 0) {
78                 sfbrowser = new SoundFileOmega (*this, _("Add existing audio"), session, 0, true, mode_hint);
79         } else {
80                 sfbrowser->set_mode (mode_hint);
81         }
82
83         external_audio_dialog ();
84 }
85
86 void
87 Editor::external_audio_dialog ()
88 {
89         vector<Glib::ustring> paths;
90         uint32_t track_cnt;
91
92         if (session == 0) {
93                 MessageDialog msg (0, _("You can't import or embed an audiofile until you have a session loaded."));
94                 msg.run ();
95                 return;
96         }
97         
98         track_cnt = 0;
99
100         for (TrackSelection::iterator x = selection->tracks.begin(); x != selection->tracks.end(); ++x) {
101                 AudioTimeAxisView* atv = dynamic_cast<AudioTimeAxisView*>(*x);
102                 
103                 if (!atv) {
104                         continue;
105                 } else if (atv->is_audio_track()) {
106                         track_cnt++;
107                 }
108         }
109
110         if (sfbrowser == 0) {
111                 sfbrowser = new SoundFileOmega (*this, _("Add existing audio"), session, track_cnt, true);
112         } else {
113                 sfbrowser->reset (track_cnt);
114         }
115
116         sfbrowser->show_all ();
117
118
119         bool keepRunning;
120
121         do {
122                 keepRunning = false;
123
124                 int response = sfbrowser->run ();
125
126                 switch (response) {
127                         case RESPONSE_APPLY:
128                                 // leave the dialog open
129                                 break;
130
131                         case RESPONSE_OK:
132                                 sfbrowser->hide ();
133                                 break;
134
135                         default:
136                                 // cancel from the browser - we are done
137                                 sfbrowser->hide ();
138                                 return;
139                 }
140
141                 /* lets do it */
142
143                 paths = sfbrowser->get_paths ();
144
145                 ImportPosition pos = sfbrowser->get_position ();
146                 ImportMode mode = sfbrowser->get_mode ();
147                 ImportDisposition chns = sfbrowser->get_channel_disposition ();
148                 nframes64_t where;
149
150                 switch (pos) {
151                         case ImportAtEditPoint:
152                                 where = get_preferred_edit_position ();
153                                 break;
154                         case ImportAtTimestamp:
155                                 where = -1;
156                                 break;
157                         case ImportAtPlayhead:
158                                 where = playhead_cursor->current_frame;
159                                 break;
160                         case ImportAtStart:
161                                 where = session->current_start_frame();
162                                 break;
163                 }
164
165                 SrcQuality quality = sfbrowser->get_src_quality();
166
167
168                 if (sfbrowser->copy_files_btn.get_active()) {
169                         do_import (paths, chns, mode, quality, where);
170                 } else {
171                         do_embed (paths, chns, mode, where);
172                 }
173
174                 if (response == RESPONSE_APPLY) {
175                         sfbrowser->clear_selection ();
176                         keepRunning = true;
177                 }
178
179         } while (keepRunning);
180 }
181
182 typedef std::map<PBD::ID,boost::shared_ptr<AudioSource> > AudioSourceList;
183
184 /**
185  * Updating is still disabled, see note in libs/ardour/import.cc Session::import_audiofiles()
186  *
187  * all_or_nothing:
188  *   true  = show "Update", "Import" and "Skip"
189  *   false = show "Import", and "Cancel"
190  *
191  * Returns:
192  *     0  To update an existing source of the same name
193  *     1  To import/embed the file normally (make sure the new name will be unique)
194  *     2  If the user wants to skip this file
195  **/
196 int
197 Editor::check_whether_and_how_to_import(string path, bool all_or_nothing)
198 {
199         string wave_name (Glib::path_get_basename(path));
200
201         AudioSourceList all_sources = session->get_audio_sources();
202         bool wave_name_exists = false;
203
204         for (AudioSourceList::iterator i = all_sources.begin(); i != all_sources.end(); ++i) {
205                 boost::shared_ptr<AudioFileSource> afs = boost::dynamic_pointer_cast<AudioFileSource>(i->second);
206
207                 string tmp (Glib::path_get_basename (afs->path()));
208
209                 if (tmp == wave_name) {
210                         wave_name_exists = true;
211                         break;
212                 }
213         }
214
215         int function = 1;
216
217
218         if (wave_name_exists) {
219                 string message;
220                 if (all_or_nothing) {
221                         // updating is still disabled
222                         //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);
223                         message = string_compose(_("The session already contains a source file named %1. This file will be imported as a new file, please confirm."),wave_name);
224                 } else {
225                         message = _("Lorem ipsum. Do you want to skidaddle?");
226
227                 }
228                 MessageDialog dialog(message, false,Gtk::MESSAGE_QUESTION, Gtk::BUTTONS_NONE, true);
229
230                 if (all_or_nothing) {
231                         // disabled
232                         //dialog.add_button("Update", 0);
233                         dialog.add_button("Import", 1);
234                         dialog.add_button("Skip",   2);
235                 } else {
236                         dialog.add_button("Import", 1);
237                         dialog.add_button("Cancel", 2);
238                 }
239                 
240                 
241                 //dialog.add_button("Skip all", 4); // All or rest?
242
243                 dialog.show();
244
245                 function = dialog.run ();
246
247                 dialog.hide();
248         }
249
250         return function;
251 }
252
253 boost::shared_ptr<AudioTrack>
254 Editor::get_nth_selected_audio_track (int nth) const
255 {
256         AudioTimeAxisView* atv;
257         TrackSelection::iterator x;
258         
259         for (x = selection->tracks.begin(); nth > 0 && x != selection->tracks.end(); ++x) {
260
261                 atv = dynamic_cast<AudioTimeAxisView*>(*x);
262                 
263                 if (!atv) {
264                         continue;
265                 } else if (atv->is_audio_track()) {
266                         --nth;
267                 }
268         }
269         
270         if (x == selection->tracks.end()) {
271                 atv = dynamic_cast<AudioTimeAxisView*>(selection->tracks.back());
272         } else {
273                 atv = dynamic_cast<AudioTimeAxisView*>(*x);
274         }
275         
276         if (!atv || !atv->is_audio_track()) {
277                 return boost::shared_ptr<AudioTrack>();
278         }
279         
280         return atv->audio_track();
281 }       
282
283 void
284 Editor::do_import (vector<ustring> paths, ImportDisposition chns, ImportMode mode, SrcQuality quality, nframes64_t& pos)
285 {
286         boost::shared_ptr<AudioTrack> track;
287         vector<ustring> to_import;
288         bool ok = true;
289         int nth = 0;
290
291         if (interthread_progress_window == 0) {
292                 build_interthread_progress_window ();
293         }
294
295
296         if (chns == Editing::ImportMergeFiles) {
297                 /* create 1 region from all paths, add to 1 track,
298                    ignore "track"
299                 */
300                 bool cancel = false;
301                 for (vector<ustring>::iterator a = paths.begin(); a != paths.end() && ok; ++a) {
302                         int check = check_whether_and_how_to_import(*a, false);
303                         if (check == 2) {
304                                 cancel = true;
305                                 break;
306                         }
307                 }
308
309                 if (!cancel) {
310                         if (import_sndfiles (paths, mode, quality, pos, 1, 1, track, false)) {
311                                 ok = false;
312                         }
313                 }
314
315         } else {
316                 bool replace;
317
318                 for (vector<ustring>::iterator a = paths.begin(); a != paths.end() && ok; ++a) {
319
320                         int check = check_whether_and_how_to_import(*a, true);
321
322                         if (check == 2 ) { 
323                                 // skip
324                                 continue;
325                         }
326
327                         if (check == 0) {
328                                 fatal << "Updating existing sources should be disabled!" << endl;
329                                 replace = true;
330                         } else if (check == 1) {
331                                 replace = false;
332                         }
333                         
334
335                         switch (chns) {
336                                 case Editing::ImportDistinctFiles:
337
338                                         to_import.clear ();
339                                         to_import.push_back (*a);
340
341                                         if (mode == Editing::ImportToTrack) {
342                                                 track = get_nth_selected_audio_track (nth++);
343                                         }
344
345                                         if (import_sndfiles (to_import, mode, quality, pos, 1, -1, track, replace)) {
346                                                 ok = false;
347                                         }
348
349                                         break;
350
351                                 case Editing::ImportDistinctChannels:
352
353                                         to_import.clear ();
354                                         to_import.push_back (*a);
355
356                                         if (import_sndfiles (to_import, mode, quality, pos, -1, -1, track, replace)) {
357                                                 ok = false;
358                                         }
359
360                                         break;
361
362                                 case Editing::ImportSerializeFiles:
363
364                                         to_import.clear ();
365                                         to_import.push_back (*a);
366
367                                         /* create 1 region from this path, add to 1 track,
368                                            reuse "track" across paths
369                                            */
370
371                                         if (import_sndfiles (to_import, mode, quality, pos, 1, 1, track, replace)) {
372                                                 ok = false;
373                                         }
374
375                                         break;
376
377                                 case Editing::ImportMergeFiles:
378                                         // Not entered
379                                         break;
380                         }
381                 }
382
383                 if (ok) {
384                         session->save_state ("");
385                 }
386
387                 interthread_progress_window->hide_all ();
388         }
389 }
390
391 bool
392 Editor::idle_do_embed (vector<ustring> paths, ImportDisposition chns, ImportMode mode, nframes64_t& pos)
393 {
394         _do_embed (paths, chns, mode, pos);
395         return false;
396 }
397
398 void
399 Editor::do_embed (vector<ustring> paths, ImportDisposition chns, ImportMode mode, nframes64_t& pos)
400 {
401 #ifdef GTKOSX
402         Glib::signal_idle().connect (bind (mem_fun (*this, &Editor::idle_do_embed), paths, chns, mode, pos));
403 #else
404         _do_embed (paths, chns, mode, pos);
405 #endif
406 }
407
408 void
409 Editor::_do_embed (vector<ustring> paths, ImportDisposition chns, ImportMode mode, nframes64_t& pos)
410 {
411         boost::shared_ptr<AudioTrack> track;
412         bool check_sample_rate = true;
413         bool ok = false;
414         vector<ustring> to_embed;
415         bool multi = paths.size() > 1;
416         int nth = 0;
417
418         switch (chns) {
419         case Editing::ImportDistinctFiles:
420                 for (vector<ustring>::iterator a = paths.begin(); a != paths.end(); ++a) {
421
422                         to_embed.clear ();
423                         to_embed.push_back (*a);
424
425                         if (mode == Editing::ImportToTrack) {
426                                 track = get_nth_selected_audio_track (nth++);
427                         }
428
429                         if (embed_sndfiles (to_embed, multi, check_sample_rate, mode, pos, 1, -1, track) < -1) {
430                                 goto out;
431                         }
432                 }
433                 break;
434                 
435         case Editing::ImportDistinctChannels:
436                 for (vector<ustring>::iterator a = paths.begin(); a != paths.end(); ++a) {
437
438                         to_embed.clear ();
439                         to_embed.push_back (*a);
440
441                         if (embed_sndfiles (to_embed, multi, check_sample_rate, mode, pos, -1, -1, track) < -1) {
442                                 goto out;
443                         }
444                 }
445                 break;
446
447         case Editing::ImportMergeFiles:
448                 if (embed_sndfiles (paths, multi, check_sample_rate, mode, pos, 1, 1, track) < -1) {
449                         goto out;
450                 }
451         break;
452
453         case Editing::ImportSerializeFiles:
454                 for (vector<ustring>::iterator a = paths.begin(); a != paths.end(); ++a) {
455
456                         to_embed.clear ();
457                         to_embed.push_back (*a);
458
459                         if (embed_sndfiles (to_embed, multi, check_sample_rate, mode, pos, 1, 1, track) < -1) {
460                                 goto out;
461                         }
462                 }
463                 break;
464         }
465
466         ok = true;
467         
468   out:  
469         if (ok) {
470                 session->save_state ("");
471         }
472 }
473
474 int
475 Editor::import_sndfiles (vector<ustring> paths, ImportMode mode, SrcQuality quality, nframes64_t& pos, 
476                          int target_regions, int target_tracks, boost::shared_ptr<AudioTrack>& track, bool replace)
477 {
478         WindowTitle title = string_compose (_("importing %1"), paths.front());
479
480         interthread_progress_window->set_title (title.get_string());
481         interthread_progress_window->set_position (Gtk::WIN_POS_MOUSE);
482         interthread_progress_window->show_all ();
483         interthread_progress_bar.set_fraction (0.0f);
484         interthread_cancel_label.set_text (_("Cancel Import"));
485         current_interthread_info = &import_status;
486
487         import_status.paths = paths;
488         import_status.done = false;
489         import_status.cancel = false;
490         import_status.freeze = false;
491         import_status.done = 0.0;
492         import_status.quality = quality;
493         import_status.replace_existing_source = replace;
494
495         interthread_progress_connection = Glib::signal_timeout().connect 
496                 (bind (mem_fun(*this, &Editor::import_progress_timeout), (gpointer) 0), 100);
497         
498         track_canvas.get_window()->set_cursor (Gdk::Cursor (Gdk::WATCH));
499         ARDOUR_UI::instance()->flush_pending ();
500
501         /* start import thread for this spec. this will ultimately call Session::import_audiofile()
502            and if successful will add the file(s) as a region to the session region list.
503         */
504         
505         pthread_create_and_store ("import", &import_status.thread, 0, _import_thread, this);
506         pthread_detach (import_status.thread);
507         
508         while (!(import_status.done || import_status.cancel)) {
509                 gtk_main_iteration ();
510         }
511
512         interthread_progress_window->hide ();
513         
514         import_status.done = true;
515         interthread_progress_connection.disconnect ();
516         
517         /* import thread finished - see if we should build a new track */
518
519         boost::shared_ptr<AudioRegion> r;
520         
521         if (import_status.cancel || import_status.sources.empty()) {
522                 goto out;
523         }
524
525         if (add_sources (paths, import_status.sources, pos, mode, target_regions, target_tracks, track, false) == 0) {
526                 session->save_state ("");
527         }
528
529   out:
530         track_canvas.get_window()->set_cursor (*current_canvas_cursor);
531         return 0;
532 }
533
534 int
535 Editor::embed_sndfiles (vector<Glib::ustring> paths, bool multifile,
536                         bool& check_sample_rate, ImportMode mode, nframes64_t& pos, int target_regions, int target_tracks,
537                         boost::shared_ptr<AudioTrack>& track)
538 {
539         boost::shared_ptr<AudioFileSource> source;
540         SourceList sources;
541         string linked_path;
542         SoundFileInfo finfo;
543         int ret = 0;
544
545         track_canvas.get_window()->set_cursor (Gdk::Cursor (Gdk::WATCH));
546         ARDOUR_UI::instance()->flush_pending ();
547
548         for (vector<Glib::ustring>::iterator p = paths.begin(); p != paths.end(); ++p) {
549
550                 ustring path = *p;
551
552                 /* lets see if we can link it into the session */
553                 
554                 linked_path = session->sound_dir();
555                 linked_path += '/';
556                 linked_path += Glib::path_get_basename (path);
557                 
558                 if (link (path.c_str(), linked_path.c_str()) == 0) {
559
560                         /* there are many reasons why link(2) might have failed.
561                            but if it succeeds, we now have a link in the
562                            session sound dir that will protect against
563                            unlinking of the original path. nice.
564                         */
565                         
566                         path = linked_path;
567
568                 } else {
569
570                         /* one possible reason is that its already linked */
571
572                         if (errno == EEXIST) {
573                                 struct stat sb;
574
575                                 if (stat (linked_path.c_str(), &sb) == 0) {
576                                         if (sb.st_nlink > 1) { // its a hard link, assume its the one we want
577                                                 path = linked_path;
578                                         }
579                                 }
580                         }
581                 }
582                 
583                 /* note that we temporarily truncated _id at the colon */
584                 
585                 string error_msg;
586
587                 if (!AudioFileSource::get_soundfile_info (path, finfo, error_msg)) {
588                         error << string_compose(_("Editor: cannot open file \"%1\", (%2)"), path, error_msg ) << endmsg;
589                         goto out;
590                 }
591                 
592                 if (check_sample_rate  && (finfo.samplerate != (int) session->frame_rate())) {
593                         vector<string> choices;
594                         
595                         if (multifile) {
596                                 choices.push_back (_("Cancel entire import"));
597                                 choices.push_back (_("Don't embed it"));
598                                 choices.push_back (_("Embed all without questions"));
599                         
600                                 Gtkmm2ext::Choice rate_choice (
601                                         string_compose (_("%1\nThis audiofile's sample rate doesn't match the session sample rate!"), 
602                                                         short_path (path, 40)),
603                                         choices, false);
604                                 
605                                 int resx = rate_choice.run ();
606                                 
607                                 switch (resx) {
608                                 case 0: /* stop a multi-file import */
609                                         ret = -2;
610                                         goto out;
611                                 case 1: /* don't embed this one */
612                                         ret = -1;
613                                         goto out;
614                                 case 2: /* do it, and the rest without asking */
615                                         check_sample_rate = false;
616                                         break;
617                                 case 3: /* do it */
618                                         break;
619                                 default:
620                                         ret = -2;
621                                         goto out;
622                                 }
623                         } else {
624                                 choices.push_back (_("Cancel"));
625                                 choices.push_back (_("Embed it anyway"));
626                         
627                                 Gtkmm2ext::Choice rate_choice (
628                                         string_compose (_("%1\nThis audiofile's sample rate doesn't match the session sample rate!"), path),
629                                         choices, false);
630                                 
631                                 int resx = rate_choice.run ();
632                                 
633                                 switch (resx) {
634                                 case 0: /* don't import */
635                                         ret = -1;
636                                         goto out;
637                                 case 1: /* do it */
638                                         break;
639                                 default:
640                                         ret = -2;
641                                         goto out;
642                                 }
643                         }
644                 }
645                 
646                 track_canvas.get_window()->set_cursor (Gdk::Cursor (Gdk::WATCH));
647
648                 for (int n = 0; n < finfo.channels; ++n) {
649                         try {
650
651                                 /* check if we have this thing embedded already */
652
653                                 boost::shared_ptr<Source> s;
654
655                                 if ((s = session->source_by_path_and_channel (path, n)) == 0) {
656                                         source = boost::dynamic_pointer_cast<AudioFileSource> (SourceFactory::createReadable 
657                                                                                                (*session, path,  n,
658                                                                                                 (mode == ImportAsTapeTrack ? 
659                                                                                                  AudioFileSource::Destructive : 
660                                                                                                  AudioFileSource::Flag (0)),
661                                                                                                 true, true));
662                                 } else {
663                                         source = boost::dynamic_pointer_cast<AudioFileSource> (s);
664                                 }
665
666                                 sources.push_back(source);
667                         } 
668                         
669                         catch (failed_constructor& err) {
670                                 error << string_compose(_("could not open %1"), path) << endmsg;
671                                 goto out;
672                         }
673                         
674                         ARDOUR_UI::instance()->flush_pending ();
675                 }
676         }
677
678         if (sources.empty()) {
679                 goto out;
680         }
681
682         ret = add_sources (paths, sources, pos, mode, target_regions, target_tracks, track, true);
683
684   out:
685         track_canvas.get_window()->set_cursor (*current_canvas_cursor);
686         return ret;
687 }
688
689 int
690 Editor::add_sources (vector<Glib::ustring> paths, SourceList& sources, nframes64_t& pos, ImportMode mode, 
691                      int target_regions, int target_tracks, boost::shared_ptr<AudioTrack>& track, bool add_channel_suffix)
692 {
693         vector<boost::shared_ptr<AudioRegion> > regions;
694         ustring region_name;
695         uint32_t input_chan = 0;
696         uint32_t output_chan = 0;
697
698         if (pos == -1) { // "use timestamp"
699                 if (sources[0]->natural_position() != 0) {
700                         pos = sources[0]->natural_position();
701                 } else {
702                         pos = get_preferred_edit_position ();
703                 }
704         }
705
706         if (target_regions == 1) {
707
708                 /* take all the sources we have and package them up as a region */
709
710                 region_name = region_name_from_path (paths.front(), (sources.size() > 1), false);
711                 
712                 regions.push_back (boost::dynamic_pointer_cast<AudioRegion> 
713                                    (RegionFactory::create (sources, 0, sources[0]->length(), region_name, 0,
714                                                            Region::Flag (Region::DefaultFlags|Region::WholeFile|Region::External))));
715                 
716         } else if (target_regions == -1) {
717
718                 /* take each source and create a region for each one */
719
720                 SourceList just_one;
721                 SourceList::iterator x;
722                 uint32_t n;
723
724                 for (n = 0, x = sources.begin(); x != sources.end(); ++x, ++n) {
725
726                         just_one.clear ();
727                         just_one.push_back (*x);
728                         
729                         boost::shared_ptr<AudioFileSource> afs = boost::dynamic_pointer_cast<AudioFileSource> (*x);
730
731                         region_name = region_name_from_path (afs->path(), false, true, sources.size(), n);
732
733                         regions.push_back (boost::dynamic_pointer_cast<AudioRegion> 
734                                            (RegionFactory::create (just_one, 0, (*x)->length(), region_name, 0,
735                                                                    Region::Flag (Region::DefaultFlags|Region::WholeFile|Region::External))));
736
737                 }
738         }
739
740         if (target_regions == 1) {
741                 input_chan = regions.front()->n_channels();
742         } else {
743                 if (target_tracks == 1) {
744                         input_chan = regions.size();
745                 } else {
746                         input_chan = 1;
747                 }
748         }
749
750         if (Config->get_output_auto_connect() & AutoConnectMaster) {
751                 output_chan = (session->master_out() ? session->master_out()->n_inputs() : input_chan);
752         } else {
753                 output_chan = input_chan;
754         }
755
756         int n = 0;
757
758         for (vector<boost::shared_ptr<AudioRegion> >::iterator r = regions.begin(); r != regions.end(); ++r, ++n) {
759
760                 finish_bringing_in_audio (*r, input_chan, output_chan, pos, mode, track);
761
762                 if (target_tracks != 1) {
763                         track.reset ();
764                 } else {
765                         pos += (*r)->length();
766                 } 
767         }
768
769         /* setup peak file building in another thread */
770
771         for (SourceList::iterator x = sources.begin(); x != sources.end(); ++x) {
772                 SourceFactory::setup_peakfile (*x, true);
773         }
774
775         return 0;
776 }
777         
778 int
779 Editor::finish_bringing_in_audio (boost::shared_ptr<AudioRegion> region, uint32_t in_chans, uint32_t out_chans, nframes64_t& pos, 
780                                   ImportMode mode, boost::shared_ptr<AudioTrack>& existing_track)
781 {
782         switch (mode) {
783         case ImportAsRegion:
784                 /* relax, its been done */
785                 break;
786                 
787         case ImportToTrack:
788         {
789                 if (!existing_track) {
790
791                         existing_track = get_nth_selected_audio_track (0);
792
793                         if (!existing_track) {
794                                 return -1;
795                         }
796                 }
797
798                 boost::shared_ptr<Playlist> playlist = existing_track->diskstream()->playlist();
799                 boost::shared_ptr<AudioRegion> copy (boost::dynamic_pointer_cast<AudioRegion> (RegionFactory::create (region)));
800                 begin_reversible_command (_("insert sndfile"));
801                 XMLNode &before = playlist->get_state();
802                 playlist->add_region (copy, pos);
803                 session->add_command (new MementoCommand<Playlist>(*playlist, &before, &playlist->get_state()));
804                 commit_reversible_command ();
805                 break;
806         }
807
808         case ImportAsTrack:
809         { 
810                 if (!existing_track) {
811                         list<boost::shared_ptr<AudioTrack> > at (session->new_audio_track (in_chans, out_chans, Normal, 1));
812
813                         if (at.empty()) {
814                                 return -1;
815                         }
816
817                         existing_track = at.front();
818                         existing_track->set_name (region->name(), this);
819                 }
820
821                 boost::shared_ptr<AudioRegion> copy (boost::dynamic_pointer_cast<AudioRegion> (RegionFactory::create (region)));
822                 existing_track->diskstream()->playlist()->add_region (copy, pos);
823                 break;
824         }
825
826
827         case ImportAsTapeTrack:
828         {
829                 list<boost::shared_ptr<AudioTrack> > at (session->new_audio_track (in_chans, out_chans, Destructive));
830                 if (!at.empty()) {
831                         boost::shared_ptr<AudioRegion> copy (boost::dynamic_pointer_cast<AudioRegion> (RegionFactory::create (region)));
832                         at.front()->set_name (basename_nosuffix (copy->name()), this);
833                         at.front()->diskstream()->playlist()->add_region (copy, pos);
834                 }
835                 break;
836         }
837         }
838
839         return 0;
840 }
841
842 void *
843 Editor::_import_thread (void *arg)
844 {
845         PBD::ThreadCreated (pthread_self(), X_("Import"));
846
847         Editor *ed = (Editor *) arg;
848         return ed->import_thread ();
849 }
850
851 void *
852 Editor::import_thread ()
853 {
854         session->import_audiofiles (import_status);
855         pthread_exit_pbd (0);
856         /*NOTREACHED*/
857         return 0;
858 }
859
860 gint
861 Editor::import_progress_timeout (void *arg)
862 {
863         interthread_progress_label.set_text (import_status.doing_what);
864
865         if (import_status.freeze) {
866                 interthread_cancel_button.set_sensitive(false);
867         } else {
868                 interthread_cancel_button.set_sensitive(true);
869         }
870
871         if (import_status.doing_what == "building peak files") {
872                 interthread_progress_bar.pulse ();
873                 return FALSE;
874         } else {
875                 interthread_progress_bar.set_fraction (import_status.progress);
876         }
877
878         return !(import_status.done || import_status.cancel);
879 }
880