Merged with trunk (painfully)
[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     $Id$
19 */
20
21 #include <cstdio>
22 #include <cstdlib>
23 #include <string>
24 #include <climits>
25 #include <cerrno>
26 #include <unistd.h>
27 #include <sys/stat.h>
28 #include <time.h>
29
30 #include <sndfile.h>
31 #include <samplerate.h>
32
33 #include <glibmm.h>
34
35 #include <pbd/basename.h>
36
37 #include <ardour/ardour.h>
38 #include <ardour/session.h>
39 #include <ardour/diskstream.h>
40 #include <ardour/filesource.h>
41 #include <ardour/sndfile_helpers.h>
42 #include <ardour/audioregion.h>
43
44 #include "i18n.h"
45
46 using namespace ARDOUR;
47
48 #define BLOCKSIZE 4096U
49
50 int
51 Session::import_audiofile (import_status& status)
52 {
53         SNDFILE *in;
54         FileSource **newfiles = 0;
55         ARDOUR::AudioRegion::SourceList sources;
56         SF_INFO info;
57         float *data = 0;
58         Sample **channel_data = 0;
59         char * workbuf = 0;
60         long nfiles = 0;
61         long n;
62         string basepath;
63         string sounds_dir;
64         jack_nframes_t so_far;
65         char buf[PATH_MAX+1];
66         int ret = -1;
67         vector<string> new_paths;
68         struct tm* now;
69         string tmp_convert_file;
70         
71         status.new_regions.clear ();
72
73         if ((in = sf_open (status.pathname.c_str(), SFM_READ, &info)) == 0) {
74                 error << string_compose(_("Import: cannot open input sound file \"%1\""), status.pathname) << endmsg;
75                 return -1;
76         } else {
77                 if ((uint32_t) info.samplerate != frame_rate()) {
78                         sf_close(in);
79                         status.doing_what = _("resampling audio");
80                         // resample to session frame_rate
81                         if (sample_rate_convert(status, status.pathname, tmp_convert_file)) {
82                                 if ((in = sf_open (tmp_convert_file.c_str(), SFM_READ, &info)) == 0) {
83                                         error << string_compose(_("Import: cannot open converted sound file \"%1\""), tmp_convert_file) << endmsg;
84                                         return -1;
85                                 }
86                         } else if (!status.cancel){
87                                 // error
88                                 error << string_compose(_("Import: error while resampling sound file \"%1\""), status.pathname) << endmsg;
89                                 return -1;
90                         } else {
91                                 // canceled
92                                 goto out;
93                         }
94                 }
95         }
96
97         newfiles = new FileSource *[info.channels];
98         for (n = 0; n < info.channels; ++n) {
99                 newfiles[n] = 0;
100         }
101         
102         sounds_dir = discover_best_sound_dir ();
103         basepath = PBD::basename_nosuffix (status.pathname);
104
105         for (n = 0; n < info.channels; ++n) {
106
107                 bool goodfile = false;
108
109                 do {
110                         if (info.channels == 2) {
111                                 if (n == 0) {
112                                         snprintf (buf, sizeof(buf), "%s%s-L.wav", sounds_dir.c_str(), basepath.c_str());
113                                 } else {
114                                         snprintf (buf, sizeof(buf), "%s%s-R.wav", sounds_dir.c_str(), basepath.c_str());
115                                 }
116                         } else if (info.channels > 1) {
117                                 snprintf (buf, sizeof(buf), "%s%s-c%lu.wav", sounds_dir.c_str(), basepath.c_str(), n+1);
118                         } else {
119                                 snprintf (buf, sizeof(buf), "%s%s.wav", sounds_dir.c_str(), basepath.c_str());
120                         }
121
122                         if (::access (buf, F_OK) == 0) {
123
124                                 /* if the file already exists, we must come up with
125                                  *  a new name for it.  for now we just keep appending
126                                  *  _ to basepath
127                                  */
128                                 
129                                 basepath += "_";
130
131                         } else {
132
133                                 goodfile = true;
134                         }
135
136                 } while ( !goodfile);
137
138                         
139                 try { 
140                         newfiles[n] = new FileSource (buf, frame_rate(), false, Config->get_native_file_data_format());
141                 }
142
143                 catch (failed_constructor& err) {
144                         error << string_compose(_("Session::import_audiofile: cannot open new file source for channel %1"), n+1) << endmsg;
145                         goto out;
146                 }
147
148                 new_paths.push_back (buf);
149                 nfiles++;
150         }
151         
152         
153         data = new float[BLOCKSIZE * info.channels];
154         channel_data = new Sample * [ info.channels ];
155         workbuf = new char[BLOCKSIZE * 4];
156         
157         for (n = 0; n < info.channels; ++n) {
158                 channel_data[n] = new Sample[BLOCKSIZE];
159         }
160
161         so_far = 0;
162
163         status.doing_what = _("converting audio");
164         status.progress = 0.0;
165
166         while (!status.cancel) {
167
168                 long nread;
169                 long x;
170                 long chn;
171
172                 if ((nread = sf_readf_float (in, data, BLOCKSIZE)) == 0) {
173                         break;
174                 }
175
176                 /* de-interleave */
177                                 
178                 for (chn = 0; chn < info.channels; ++chn) {
179                         for (x = chn, n = 0; n < nread; x += info.channels, ++n) {
180                                 channel_data[chn][n] = (Sample) data[x];
181                         }
182                 }
183
184                 /* flush to disk */
185
186                 for (chn = 0; chn < info.channels; ++chn) {
187                         newfiles[chn]->write (channel_data[chn], nread, workbuf);
188                 }
189
190                 so_far += nread;
191                 status.progress = so_far / (float) (info.frames * info.channels);
192         }
193
194         if (status.multichan) {
195                 status.doing_what = _("building region");
196         } else {
197                 status.doing_what = _("building regions");
198         }
199
200         status.freeze = true;
201
202         time_t xnow;
203         time (&xnow);
204         now = localtime (&xnow);
205
206         if (status.cancel) {
207                 goto out;
208         }
209
210         if (status.multichan) {
211                 /* all sources are used in a single multichannel region */
212                 for (n = 0; n < nfiles && !status.cancel; ++n) {
213                         /* flush the final length to the header */
214                         newfiles[n]->update_header(0, *now, xnow);
215                         sources.push_back(newfiles[n]);
216                 }
217
218                 AudioRegion *r = new AudioRegion (sources, 0, newfiles[0]->length(), region_name_from_path (Glib::path_get_basename (basepath)),
219                                         0, AudioRegion::Flag (AudioRegion::DefaultFlags | AudioRegion::WholeFile));
220                 
221                 status.new_regions.push_back (r);
222
223         } else {
224                 for (n = 0; n < nfiles && !status.cancel; ++n) {
225
226                         /* flush the final length to the header */
227
228                         newfiles[n]->update_header(0, *now, xnow);
229
230                         /* The sources had zero-length when created, which means that the Session
231                            did not bother to create whole-file AudioRegions for them. Do it now.
232                         */
233                 
234                         AudioRegion *r = new AudioRegion (*newfiles[n], 0, newfiles[n]->length(), region_name_from_path (Glib::path_get_basename (newfiles[n]->name())),
235                                                 0, AudioRegion::Flag (AudioRegion::DefaultFlags | AudioRegion::WholeFile | AudioRegion::Import));
236
237                         status.new_regions.push_back (r);
238                 }
239         }
240         
241         /* save state so that we don't lose these new Sources */
242
243         if (!status.cancel) {
244                 save_state (_name);
245         }
246
247         ret = 0;
248
249   out:
250
251         if (data) {
252                 delete [] data;
253         }
254         if (workbuf) {
255                 delete [] workbuf;
256         }
257         
258         if (channel_data) {
259                 for (n = 0; n < info.channels; ++n) {
260                         delete [] channel_data[n];
261                 }
262                 delete [] channel_data;
263         }
264
265         if (status.cancel) {
266                 for (vector<AudioRegion *>::iterator i = status.new_regions.begin(); i != status.new_regions.end(); ++i) {
267                         delete *i;
268                 }
269
270                 for (vector<string>::iterator i = new_paths.begin(); i != new_paths.end(); ++i) {
271                         unlink ((*i).c_str());
272                 }
273         }
274
275         if (newfiles) {
276                 delete [] newfiles;
277         }
278
279         if (tmp_convert_file.length()) {
280                 unlink(tmp_convert_file.c_str());
281         }
282         
283         sf_close (in);
284         status.done = true;
285         return ret;
286 }
287
288 string
289 Session::build_tmp_convert_name(string infile)
290 {
291         string tmp_name(_path + "/." + Glib::path_get_basename (infile.c_str()) + "XXXXXX");
292         char* tmp = new char[tmp_name.length() + 1];
293         tmp_name.copy(tmp, string::npos);
294         tmp[tmp_name.length()] = 0;
295         mkstemp(tmp);
296         string outfile = tmp;
297         delete [] tmp;
298         
299         return outfile;
300 }
301
302 bool
303 Session::sample_rate_convert (import_status& status, string infile, string& outfile)
304 {       
305         float input [BLOCKSIZE] ;
306         float output [BLOCKSIZE] ;
307
308         SF_INFO         sf_info;
309         SRC_STATE*      src_state ;
310         SRC_DATA        src_data ;
311         int                     err ;
312         sf_count_t      output_count = 0 ;
313         sf_count_t  input_count = 0;
314
315         SNDFILE* in = sf_open(infile.c_str(), SFM_READ, &sf_info);
316         sf_count_t total_input_frames = sf_info.frames;
317         
318         outfile = build_tmp_convert_name(infile);
319         SNDFILE* out = sf_open(outfile.c_str(), SFM_RDWR, &sf_info);
320         if(!out) {
321                 error << string_compose(_("Import: could not open temp file: %1"), outfile) << endmsg;
322                 return false;
323         }
324         
325         sf_seek (in, 0, SEEK_SET) ;
326         sf_seek (out, 0, SEEK_SET) ;
327
328         /* Initialize the sample rate converter. */
329         if ((src_state = src_new (SRC_SINC_BEST_QUALITY, sf_info.channels, &err)) == 0) {       
330                 error << string_compose(_("Import: src_new() failed : %1"), src_strerror (err)) << endmsg ;
331                 return false ;
332         }
333
334         src_data.end_of_input = 0 ; /* Set this later. */
335
336         /* Start with zero to force load in while loop. */
337         src_data.input_frames = 0 ;
338         src_data.data_in = input ;
339
340         src_data.src_ratio = (1.0 * frame_rate()) / sf_info.samplerate ;
341
342         src_data.data_out = output ;
343         src_data.output_frames = BLOCKSIZE / sf_info.channels ;
344
345         while (!status.cancel) {
346                 /* If the input buffer is empty, refill it. */
347                 if (src_data.input_frames == 0) {       
348                         src_data.input_frames = sf_readf_float (in, input, BLOCKSIZE / sf_info.channels) ;
349                         src_data.data_in = input ;
350
351                         /* The last read will not be a full buffer, so snd_of_input. */
352                         if (src_data.input_frames < (int)BLOCKSIZE / sf_info.channels) {
353                                 src_data.end_of_input = SF_TRUE ;
354                         }
355                 } 
356
357                 if ((err = src_process (src_state, &src_data))) {
358                         error << string_compose(_("Import: %1"), src_strerror (err)) << endmsg ;
359                         return false ;
360                 } 
361
362                 /* Terminate if at end */
363                 if (src_data.end_of_input && src_data.output_frames_gen == 0) {
364                         break ;
365                 }
366
367                 /* Write output. */
368                 sf_writef_float (out, output, src_data.output_frames_gen) ;
369                 output_count += src_data.output_frames_gen ;
370                 input_count += src_data.input_frames_used;
371
372                 src_data.data_in += src_data.input_frames_used * sf_info.channels ;
373                 src_data.input_frames -= src_data.input_frames_used ;
374                 
375                 status.progress = (float) input_count / total_input_frames;
376         }
377
378         src_state = src_delete (src_state) ;
379         sf_close(in);
380         sf_close(out);
381
382         status.done = true;
383
384         if (status.cancel) {
385                 return false;
386         } else {
387                 return true ;
388         }
389 }