- Changed IO's vector<Port*>'s to PortList
[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/audio_diskstream.h>
40 #include <ardour/sndfilesource.h>
41 #include <ardour/sndfile_helpers.h>
42 #include <ardour/audioregion.h>
43
44 #include "i18n.h"
45
46 using namespace ARDOUR;
47 using namespace PBD;
48
49 #define BLOCKSIZE 4096U
50
51 int
52 Session::import_audiofile (import_status& status)
53 {
54         SNDFILE *in;
55         AudioFileSource **newfiles = 0;
56         AudioRegion::SourceList sources;
57         SF_INFO info;
58         float *data = 0;
59         Sample **channel_data = 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 AudioFileSource *[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 SndFileSource (buf, 
141                                                          Config->get_native_file_data_format(),
142                                                          Config->get_native_file_header_format(),
143                                                          frame_rate ());
144                 }
145
146                 catch (failed_constructor& err) {
147                         error << string_compose(_("Session::import_audiofile: cannot open new file source for channel %1"), n+1) << endmsg;
148                         goto out;
149                 }
150
151                 new_paths.push_back (buf);
152                 nfiles++;
153         }
154         
155         
156         data = new float[BLOCKSIZE * info.channels];
157         channel_data = new Sample * [ info.channels ];
158         
159         for (n = 0; n < info.channels; ++n) {
160                 channel_data[n] = new Sample[BLOCKSIZE];
161         }
162
163         so_far = 0;
164
165         status.doing_what = _("converting audio");
166         status.progress = 0.0;
167
168         while (!status.cancel) {
169
170                 long nread;
171                 long x;
172                 long chn;
173
174                 if ((nread = sf_readf_float (in, data, BLOCKSIZE)) == 0) {
175                         break;
176                 }
177
178                 /* de-interleave */
179                                 
180                 for (chn = 0; chn < info.channels; ++chn) {
181                         for (x = chn, n = 0; n < nread; x += info.channels, ++n) {
182                                 channel_data[chn][n] = (Sample) data[x];
183                         }
184                 }
185
186                 /* flush to disk */
187
188                 for (chn = 0; chn < info.channels; ++chn) {
189                         newfiles[chn]->write (channel_data[chn], nread);
190                 }
191
192                 so_far += nread;
193                 status.progress = so_far / (float) (info.frames * info.channels);
194         }
195
196         if (status.multichan) {
197                 status.doing_what = _("building region");
198         } else {
199                 status.doing_what = _("building regions");
200         }
201
202         status.freeze = true;
203
204         time_t xnow;
205         time (&xnow);
206         now = localtime (&xnow);
207
208         if (status.cancel) {
209                 goto out;
210         }
211
212         if (status.multichan) {
213                 /* all sources are used in a single multichannel region */
214                 for (n = 0; n < nfiles && !status.cancel; ++n) {
215                         /* flush the final length to the header */
216                         newfiles[n]->update_header(0, *now, xnow);
217                         sources.push_back(newfiles[n]);
218                 }
219
220                 AudioRegion *r = new AudioRegion (sources, 0, newfiles[0]->length(), region_name_from_path (Glib::path_get_basename (basepath)),
221                                         0, AudioRegion::Flag (AudioRegion::DefaultFlags | AudioRegion::WholeFile));
222                 
223                 status.new_regions.push_back (r);
224
225         } else {
226                 for (n = 0; n < nfiles && !status.cancel; ++n) {
227
228                         /* flush the final length to the header */
229
230                         newfiles[n]->update_header(0, *now, xnow);
231
232                         /* The sources had zero-length when created, which means that the Session
233                            did not bother to create whole-file AudioRegions for them. Do it now.
234                         */
235                 
236                         AudioRegion *r = new AudioRegion (*newfiles[n], 0, newfiles[n]->length(), region_name_from_path (Glib::path_get_basename (newfiles[n]->name())),
237                                                 0, AudioRegion::Flag (AudioRegion::DefaultFlags | AudioRegion::WholeFile | AudioRegion::Import));
238
239                         status.new_regions.push_back (r);
240                 }
241         }
242         
243         /* save state so that we don't lose these new Sources */
244
245         if (!status.cancel) {
246                 save_state (_name);
247         }
248
249         ret = 0;
250
251   out:
252
253         if (data) {
254                 delete [] data;
255         }
256         
257         if (channel_data) {
258                 for (n = 0; n < info.channels; ++n) {
259                         delete [] channel_data[n];
260                 }
261                 delete [] channel_data;
262         }
263
264         if (status.cancel) {
265                 for (vector<AudioRegion *>::iterator i = status.new_regions.begin(); i != status.new_regions.end(); ++i) {
266                         delete *i;
267                 }
268
269                 for (vector<string>::iterator i = new_paths.begin(); i != new_paths.end(); ++i) {
270                         unlink ((*i).c_str());
271                 }
272         }
273
274         if (newfiles) {
275                 delete [] newfiles;
276         }
277
278         if (tmp_convert_file.length()) {
279                 unlink(tmp_convert_file.c_str());
280         }
281         
282         sf_close (in);
283         status.done = true;
284         return ret;
285 }
286
287 string
288 Session::build_tmp_convert_name(string infile)
289 {
290         string tmp_name(_path + "/." + Glib::path_get_basename (infile.c_str()) + "XXXXXX");
291         char* tmp = new char[tmp_name.length() + 1];
292         tmp_name.copy(tmp, string::npos);
293         tmp[tmp_name.length()] = 0;
294         mkstemp(tmp);
295         string outfile = tmp;
296         delete [] tmp;
297         
298         return outfile;
299 }
300
301 bool
302 Session::sample_rate_convert (import_status& status, string infile, string& outfile)
303 {       
304         float input [BLOCKSIZE] ;
305         float output [BLOCKSIZE] ;
306
307         SF_INFO         sf_info;
308         SRC_STATE*      src_state ;
309         SRC_DATA        src_data ;
310         int                     err ;
311         sf_count_t      output_count = 0 ;
312         sf_count_t  input_count = 0;
313
314         SNDFILE* in = sf_open(infile.c_str(), SFM_READ, &sf_info);
315         sf_count_t total_input_frames = sf_info.frames;
316         
317         outfile = build_tmp_convert_name(infile);
318         SNDFILE* out = sf_open(outfile.c_str(), SFM_RDWR, &sf_info);
319         if(!out) {
320                 error << string_compose(_("Import: could not open temp file: %1"), outfile) << endmsg;
321                 return false;
322         }
323         
324         sf_seek (in, 0, SEEK_SET) ;
325         sf_seek (out, 0, SEEK_SET) ;
326
327         /* Initialize the sample rate converter. */
328         if ((src_state = src_new (SRC_SINC_BEST_QUALITY, sf_info.channels, &err)) == 0) {       
329                 error << string_compose(_("Import: src_new() failed : %1"), src_strerror (err)) << endmsg ;
330                 return false ;
331         }
332
333         src_data.end_of_input = 0 ; /* Set this later. */
334
335         /* Start with zero to force load in while loop. */
336         src_data.input_frames = 0 ;
337         src_data.data_in = input ;
338
339         src_data.src_ratio = (1.0 * frame_rate()) / sf_info.samplerate ;
340
341         src_data.data_out = output ;
342         src_data.output_frames = BLOCKSIZE / sf_info.channels ;
343
344         while (!status.cancel) {
345                 /* If the input buffer is empty, refill it. */
346                 if (src_data.input_frames == 0) {       
347                         src_data.input_frames = sf_readf_float (in, input, BLOCKSIZE / sf_info.channels) ;
348                         src_data.data_in = input ;
349
350                         /* The last read will not be a full buffer, so snd_of_input. */
351                         if (src_data.input_frames < (int)BLOCKSIZE / sf_info.channels) {
352                                 src_data.end_of_input = SF_TRUE ;
353                         }
354                 } 
355
356                 if ((err = src_process (src_state, &src_data))) {
357                         error << string_compose(_("Import: %1"), src_strerror (err)) << endmsg ;
358                         return false ;
359                 } 
360
361                 /* Terminate if at end */
362                 if (src_data.end_of_input && src_data.output_frames_gen == 0) {
363                         break ;
364                 }
365
366                 /* Write output. */
367                 sf_writef_float (out, output, src_data.output_frames_gen) ;
368                 output_count += src_data.output_frames_gen ;
369                 input_count += src_data.input_frames_used;
370
371                 src_data.data_in += src_data.input_frames_used * sf_info.channels ;
372                 src_data.input_frames -= src_data.input_frames_used ;
373                 
374                 status.progress = (float) input_count / total_input_frames;
375         }
376
377         src_state = src_delete (src_state) ;
378         sf_close(in);
379         sf_close(out);
380
381         status.done = true;
382
383         if (status.cancel) {
384                 return false;
385         } else {
386                 return true ;
387         }
388 }