ef9605f467ad14a876e7b2dac90ec8a877519ca3
[ardour.git] / libs / ardour / import.cc
1 /*
2     Copyright (C) 2000 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 <cstdio>
21 #include <cstdlib>
22 #include <string>
23 #include <climits>
24 #include <cerrno>
25 #include <unistd.h>
26 #include <sys/stat.h>
27 #include <time.h>
28
29 #include <sndfile.h>
30 #include <samplerate.h>
31
32 #include <glibmm.h>
33
34 #include <boost/scoped_array.hpp>
35 #include <boost/shared_array.hpp>
36
37 #include "pbd/basename.h"
38 #include "pbd/convert.h"
39
40 #include "evoral/SMF.hpp"
41
42 #include "ardour/ardour.h"
43 #include "ardour/session.h"
44 #include "ardour/session_directory.h"
45 #include "ardour/audio_diskstream.h"
46 #include "ardour/audioengine.h"
47 #include "ardour/sndfilesource.h"
48 #include "ardour/sndfile_helpers.h"
49 #include "ardour/audioregion.h"
50 #include "ardour/region_factory.h"
51 #include "ardour/source_factory.h"
52 #include "ardour/resampled_source.h"
53 #include "ardour/sndfileimportable.h"
54 #include "ardour/analyser.h"
55 #include "ardour/smf_source.h"
56 #include "ardour/tempo.h"
57
58 #ifdef HAVE_COREAUDIO
59 #ifdef USE_COREAUDIO_FOR_FILE_IO
60 #include "ardour/caimportable.h"
61 #endif
62 #endif
63
64 #include "i18n.h"
65
66 using namespace ARDOUR;
67 using namespace PBD;
68
69
70 static boost::shared_ptr<ImportableSource>
71 open_importable_source (const string& path, nframes_t samplerate, ARDOUR::SrcQuality quality)
72 {
73 #ifdef HAVE_COREAUDIO
74 #ifdef USE_COREAUDIO_FOR_FILE_IO
75
76         /* see if we can use CoreAudio to handle the IO */
77         
78         try { 
79                 CAImportableSource* src = new CAImportableSource(path);
80                 boost::shared_ptr<CAImportableSource> source (src);
81                 
82                 if (source->samplerate() == samplerate) {
83                         return source;
84                 }
85                 
86                 /* rewrap as a resampled source */
87
88                 return boost::shared_ptr<ImportableSource>(new ResampledImportableSource(source, samplerate, quality));
89         }
90
91         catch (...) {
92
93                 /* fall back to SndFile */
94 #endif  
95 #endif
96
97                 try { 
98                         boost::shared_ptr<SndFileImportableSource> source(new SndFileImportableSource(path));
99                         
100                         if (source->samplerate() == samplerate) {
101                                 return source;
102                         }
103                         
104                         /* rewrap as a resampled source */
105                         
106                         return boost::shared_ptr<ImportableSource>(new ResampledImportableSource(source, samplerate, quality));
107                 }
108                 
109                 catch (...) {
110                         throw; // rethrow
111                 }
112                 
113 #ifdef HAVE_COREAUDIO           
114 #ifdef USE_COREAUDIO_FOR_FILE_IO
115         }
116 #endif
117 #endif
118 }
119
120 static std::string
121 get_non_existent_filename (DataType type, const bool allow_replacing, const std::string destdir, const std::string& basename, uint channel, uint channels)
122 {
123         char buf[PATH_MAX+1];
124         bool goodfile = false;
125         string base(basename);
126         const char* ext = (type == DataType::AUDIO) ? "wav" : "mid";
127
128         do {
129
130                 if (type == DataType::AUDIO && channels == 2) {
131                         if (channel == 0) {
132                                 snprintf (buf, sizeof(buf), "%s-L.wav", base.c_str());
133                         } else {
134                                 snprintf (buf, sizeof(buf), "%s-R.wav", base.c_str());
135                         }
136                 } else if (channels > 1) {
137                         snprintf (buf, sizeof(buf), "%s-c%d.%s", base.c_str(), channel, ext);
138                 } else {
139                         snprintf (buf, sizeof(buf), "%s.%s", base.c_str(), ext);
140                 }
141                 
142
143                 string tempname = destdir + "/" + buf;
144                 if (!allow_replacing && Glib::file_test (tempname, Glib::FILE_TEST_EXISTS)) {
145
146                         /* if the file already exists, we must come up with
147                          *  a new name for it.  for now we just keep appending
148                          *  _ to basename
149                          */
150
151                         base += "_";
152
153                 } else {
154
155                         goodfile = true;
156                 }
157
158         } while ( !goodfile);
159
160         return buf;
161 }
162
163 static vector<string>
164 get_paths_for_new_sources (const bool allow_replacing, const string& import_file_path, const string& session_dir, uint channels)
165 {
166         vector<string> new_paths;
167         const string basename = basename_nosuffix (import_file_path);
168
169         SessionDirectory sdir(session_dir);
170
171         for (uint n = 0; n < channels; ++n) {
172
173                 const DataType type = (import_file_path.rfind(".mid") != string::npos)
174                                 ? DataType::MIDI : DataType::AUDIO;
175
176                 std::string filepath = (type == DataType::MIDI)
177                                 ? sdir.midi_path().to_string() : sdir.sound_path().to_string();
178
179                 filepath += '/';
180                 filepath += get_non_existent_filename (type, allow_replacing, filepath, basename, n, channels); 
181                 new_paths.push_back (filepath);
182         }
183
184         return new_paths;
185 }
186
187 static bool
188 map_existing_mono_sources (const vector<string>& new_paths, Session& sess,
189                            uint samplerate, vector<boost::shared_ptr<Source> >& newfiles, Session *session)
190 {
191         for (vector<string>::const_iterator i = new_paths.begin();
192                         i != new_paths.end(); ++i)
193         {
194                 boost::shared_ptr<Source> source = session->source_by_path_and_channel(*i, 0);
195
196                 if (source == 0) {
197                         error << string_compose(_("Could not find a source for %1 even though we are updating this file!"), (*i)) << endl;
198                         return false;
199                 }
200
201                 newfiles.push_back(boost::dynamic_pointer_cast<Source>(source));
202         }
203         return true;
204 }
205
206 static bool
207 create_mono_sources_for_writing (const vector<string>& new_paths, Session& sess,
208                 uint samplerate, vector<boost::shared_ptr<Source> >& newfiles)
209 {
210         for (vector<string>::const_iterator i = new_paths.begin();
211                         i != new_paths.end(); ++i)
212         {
213                 boost::shared_ptr<Source> source;
214
215                 try
216                 {
217                         const DataType type = ((*i).rfind(".mid") != string::npos)
218                                 ? DataType::MIDI : DataType::AUDIO;
219                                 
220                         source = SourceFactory::createWritable (type, sess,
221                                         i->c_str(), true,
222                                         false, // destructive
223                                         samplerate);
224                 }
225                 catch (const failed_constructor& err)
226                 {
227                         error << string_compose (_("Unable to create file %1 during import"), *i) << endmsg;
228                         return false;
229                 }
230
231                 newfiles.push_back(boost::dynamic_pointer_cast<Source>(source));
232         }
233         return true;
234 }
235
236 static Glib::ustring
237 compose_status_message (const string& path,
238                         uint file_samplerate,
239                         uint session_samplerate,
240                         uint current_file,
241                         uint total_files)
242 {
243         if (file_samplerate != session_samplerate) {
244                 return string_compose (_("converting %1\n(resample from %2KHz to %3KHz)\n(%4 of %5)"),
245                                        Glib::path_get_basename (path),
246                                        file_samplerate/1000.0f,
247                                        session_samplerate/1000.0f,
248                                        current_file, total_files);
249         }
250
251         return  string_compose (_("converting %1\n(%2 of %3)"), 
252                                 Glib::path_get_basename (path),
253                                 current_file, total_files);
254 }
255
256 static void
257 write_audio_data_to_new_files (ImportableSource* source, Session::ImportStatus& status,
258                                vector<boost::shared_ptr<Source> >& newfiles)
259 {
260         const nframes_t nframes = ResampledImportableSource::blocksize;
261         boost::shared_ptr<AudioFileSource> afs;
262         uint channels = source->channels();
263
264         boost::scoped_array<float> data(new float[nframes * channels]);
265         vector<boost::shared_array<Sample> > channel_data;
266
267         for (uint n = 0; n < channels; ++n) {
268                 channel_data.push_back(boost::shared_array<Sample>(new Sample[nframes]));
269         }
270         
271         uint read_count = 0;
272         status.progress = 0.0f;
273
274         while (!status.cancel) {
275
276                 nframes_t nread, nfread;
277                 uint x;
278                 uint chn;
279
280                 if ((nread = source->read (data.get(), nframes)) == 0) {
281                         break;
282                 }
283                 nfread = nread / channels;
284
285                 /* de-interleave */
286
287                 for (chn = 0; chn < channels; ++chn) {
288
289                         nframes_t n;
290                         for (x = chn, n = 0; n < nfread; x += channels, ++n) {
291                                 channel_data[chn][n] = (Sample) data[x];
292                         }
293                 }
294
295                 /* flush to disk */
296
297                 for (chn = 0; chn < channels; ++chn) {
298                         if ((afs = boost::dynamic_pointer_cast<AudioFileSource>(newfiles[chn])) != 0) {
299                                 afs->write (channel_data[chn].get(), nfread);
300                         }
301                 }
302
303                 read_count += nread;
304                 status.progress = read_count / (source->ratio () * source->length() * channels);
305         }
306 }
307
308 static void
309 write_midi_data_to_new_files (Evoral::SMF* source, Session::ImportStatus& status,
310                 vector<boost::shared_ptr<Source> >& newfiles)
311 {
312         uint32_t buf_size = 4;
313         uint8_t* buf      = (uint8_t*)malloc(buf_size);
314
315         status.progress = 0.0f;
316
317         try {
318
319         for (unsigned i = 1; i <= source->num_tracks(); ++i) {
320                 boost::shared_ptr<SMFSource> smfs = boost::dynamic_pointer_cast<SMFSource>(newfiles[i-1]);
321                 smfs->drop_model();
322                 
323                 source->seek_to_track(i);
324         
325                 uint64_t t       = 0;
326                 uint32_t delta_t = 0;
327                 uint32_t size    = 0;
328                 
329                 while (!status.cancel) {
330                         size = buf_size;
331
332                         int ret = source->read_event(&delta_t, &size, &buf);
333                         if (size > buf_size)
334                                 buf_size = size;
335
336                         if (ret < 0) { // EOT
337                                 break;
338                         }
339                         
340                         t += delta_t;
341
342                         if (ret == 0) { // Meta
343                                 continue;
344                         }
345
346                         smfs->append_event_unlocked_beats(Evoral::Event<double>(0,
347                                         (double)t / (double)source->ppqn(),
348                                         size,
349                                         buf));
350
351                         if (status.progress < 0.99)
352                                 status.progress += 0.01;
353                 }
354
355                 const nframes64_t pos = 0;
356                 const double length_beats = ceil(t / (double)source->ppqn());
357                 BeatsFramesConverter converter(smfs->session(), pos);
358                 smfs->update_length(pos, converter.to(length_beats));
359                 smfs->end_write();
360
361                 if (status.cancel) {
362                         break;
363                 }
364         }
365
366         } catch (...) {
367                 error << "Corrupt MIDI file " << source->file_path() << endl;
368         }
369 }
370
371 static void
372 remove_file_source (boost::shared_ptr<Source> source)
373 {
374         ::unlink (source->path().c_str());
375 }
376
377 // This function is still unable to cleanly update an existing source, even though
378 // it is possible to set the ImportStatus flag accordingly. The functinality
379 // is disabled at the GUI until the Source implementations are able to provide
380 // the necessary API.
381 void
382 Session::import_audiofiles (ImportStatus& status)
383 {
384         uint32_t cnt = 1;
385         typedef vector<boost::shared_ptr<Source> > Sources;
386         Sources all_new_sources;
387         boost::shared_ptr<AudioFileSource> afs;
388         boost::shared_ptr<SMFSource> smfs;
389         uint channels = 0;
390
391         status.sources.clear ();
392         
393         for (vector<Glib::ustring>::iterator p = status.paths.begin();
394                         p != status.paths.end() && !status.cancel;
395                         ++p, ++cnt)
396         {
397                 boost::shared_ptr<ImportableSource> source;
398                 std::auto_ptr<Evoral::SMF>          smf_reader;
399                 const DataType type = ((*p).rfind(".mid") != string::npos) ? 
400                         DataType::MIDI : DataType::AUDIO;
401                 
402                 if (type == DataType::AUDIO) {
403                         try {
404                                 source = open_importable_source (*p, frame_rate(), status.quality);
405                                 channels = source->channels();
406                         } catch (const failed_constructor& err) {
407                                 error << string_compose(_("Import: cannot open input sound file \"%1\""), (*p)) << endmsg;
408                                 status.done = status.cancel = true;
409                                 return;
410                         }
411
412                 } else {
413                         try {
414                                 smf_reader = std::auto_ptr<Evoral::SMF>(new Evoral::SMF());
415                                 smf_reader->open(*p);
416                                 channels = smf_reader->num_tracks();
417                         } catch (...) {
418                                 error << _("Import: error opening MIDI file") << endmsg;
419                                 status.done = status.cancel = true;
420                                 return;
421                         }
422                 }
423
424                 vector<string> new_paths = get_paths_for_new_sources (status.replace_existing_source, *p,
425                                                                       get_best_session_directory_for_new_source (),
426                                                                       channels);
427                 Sources newfiles;
428
429                 if (status.replace_existing_source) {
430                         fatal << "THIS IS NOT IMPLEMENTED YET, IT SHOULD NEVER GET CALLED!!! DYING!" << endl;
431                         status.cancel = !map_existing_mono_sources (new_paths, *this, frame_rate(), newfiles, this);
432                 } else {
433                         status.cancel = !create_mono_sources_for_writing (new_paths, *this, frame_rate(), newfiles);
434                 }
435
436                 // copy on cancel/failure so that any files that were created will be removed below
437                 std::copy (newfiles.begin(), newfiles.end(), std::back_inserter(all_new_sources));
438
439                 if (status.cancel) break;
440
441                 for (Sources::iterator i = newfiles.begin(); i != newfiles.end(); ++i) {
442                         if ((afs = boost::dynamic_pointer_cast<AudioFileSource>(*i)) != 0) {
443                                 afs->prepare_for_peakfile_writes ();
444                         }
445                 }
446
447                 if (source) { // audio
448                         status.doing_what = compose_status_message (*p, source->samplerate(),
449                                                                     frame_rate(), cnt, status.total);
450                         write_audio_data_to_new_files (source.get(), status, newfiles);
451                 } else if (smf_reader.get()) { // midi
452                         status.doing_what = string_compose(_("Loading MIDI file %1"), *p);
453                         write_midi_data_to_new_files (smf_reader.get(), status, newfiles);
454                 }
455         }
456
457         if (!status.cancel) {
458                 struct tm* now;
459                 time_t xnow;
460                 time (&xnow);
461                 now = localtime (&xnow);
462                 status.freeze = true;
463
464                 /* flush the final length(s) to the header(s) */
465
466                 for (Sources::iterator x = all_new_sources.begin(); x != all_new_sources.end(); ) {
467                         if ((afs = boost::dynamic_pointer_cast<AudioFileSource>(*x)) != 0) {
468                                 afs->update_header(0, *now, xnow);
469                                 afs->done_with_peakfile_writes ();
470                         
471                                 /* now that there is data there, requeue the file for analysis */
472                                 
473                                 if (Config->get_auto_analyse_audio()) {
474                                         Analyser::queue_source_for_analysis (boost::static_pointer_cast<Source>(*x), false);
475                                 }
476                         }
477                         
478                         /* don't create tracks for empty MIDI sources (channels) */
479
480                         if ((smfs = boost::dynamic_pointer_cast<SMFSource>(*x)) != 0 && smfs->is_empty()) {
481                                 x = all_new_sources.erase(x);
482                         } else {
483                                 ++x;
484                         }
485                 }
486
487                 /* save state so that we don't lose these new Sources */
488
489                 save_state (_name);
490
491                 std::copy (all_new_sources.begin(), all_new_sources.end(), std::back_inserter(status.sources));
492         } else {
493                 // this can throw...but it seems very unlikely
494                 std::for_each (all_new_sources.begin(), all_new_sources.end(), remove_file_source);
495         }
496
497         status.done = true;
498 }
499