use ustring more; handle embedding of "paired" files as per mantis #1362

git-svn-id: svn://localhost/ardour2/trunk@1241 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2006-12-21 18:38:00 +00:00
parent 2202912d35
commit afa29d3190
17 changed files with 325 additions and 196 deletions

View file

@ -16,7 +16,7 @@ import SCons.Node.FS
SConsignFile() SConsignFile()
EnsureSConsVersion(0, 96) EnsureSConsVersion(0, 96)
version = '2.0beta9' version = '2.0beta10'
subst_dict = { } subst_dict = { }

View file

@ -926,8 +926,8 @@ class Editor : public PublicEditor
void bring_in_external_audio (Editing::ImportMode mode, ARDOUR::AudioTrack*, nframes_t& pos, bool prompt); void bring_in_external_audio (Editing::ImportMode mode, ARDOUR::AudioTrack*, nframes_t& pos, bool prompt);
void do_import (vector<Glib::ustring> paths, bool split, Editing::ImportMode mode, ARDOUR::AudioTrack*, nframes_t&, bool); void do_import (vector<Glib::ustring> paths, bool split, Editing::ImportMode mode, ARDOUR::AudioTrack*, nframes_t&, bool);
void do_embed (vector<Glib::ustring> paths, bool split, Editing::ImportMode mode, ARDOUR::AudioTrack*, nframes_t&, bool); void do_embed (vector<Glib::ustring> paths, bool split, Editing::ImportMode mode, ARDOUR::AudioTrack*, nframes_t&, bool);
int import_sndfile (Glib::ustring path, Editing::ImportMode mode, ARDOUR::AudioTrack* track, nframes_t& pos); int import_sndfile (vector<Glib::ustring> paths, Editing::ImportMode mode, ARDOUR::AudioTrack* track, nframes_t& pos);
int embed_sndfile (Glib::ustring path, bool split, bool multiple_files, bool& check_sample_rate, Editing::ImportMode mode, int embed_sndfile (vector<Glib::ustring> paths, bool split, bool multiple_files, bool& check_sample_rate, Editing::ImportMode mode,
ARDOUR::AudioTrack* track, nframes_t& pos, bool prompt); ARDOUR::AudioTrack* track, nframes_t& pos, bool prompt);
int finish_bringing_in_audio (boost::shared_ptr<ARDOUR::AudioRegion> region, uint32_t, uint32_t, ARDOUR::AudioTrack* track, nframes_t& pos, Editing::ImportMode mode); int finish_bringing_in_audio (boost::shared_ptr<ARDOUR::AudioRegion> region, uint32_t, uint32_t, ARDOUR::AudioTrack* track, nframes_t& pos, Editing::ImportMode mode);
@ -958,7 +958,7 @@ class Editor : public PublicEditor
/* to support this ... */ /* to support this ... */
void import_audio (bool as_tracks); void import_audio (bool as_tracks);
void do_import (vector<string> paths, bool split, bool as_tracks); void do_import (vector<Glib::ustring> paths, bool split, bool as_tracks);
void move_to_start (); void move_to_start ();
void move_to_end (); void move_to_end ();

View file

@ -49,6 +49,7 @@ using namespace PBD;
using namespace sigc; using namespace sigc;
using namespace Gtk; using namespace Gtk;
using namespace Editing; using namespace Editing;
using Glib::ustring;
/* Functions supporting the incorporation of external (non-captured) audio material into ardour */ /* Functions supporting the incorporation of external (non-captured) audio material into ardour */
@ -95,7 +96,7 @@ Editor::bring_in_external_audio (ImportMode mode, AudioTrack* track, nframes_t&
} }
void void
Editor::do_import (vector<Glib::ustring> paths, bool split, ImportMode mode, AudioTrack* track, nframes_t& pos, bool prompt) Editor::do_import (vector<ustring> paths, bool split, ImportMode mode, AudioTrack* track, nframes_t& pos, bool prompt)
{ {
/* SFDB sets "multichan" to true to indicate "split channels" /* SFDB sets "multichan" to true to indicate "split channels"
so reverse the setting to match the way libardour so reverse the setting to match the way libardour
@ -107,49 +108,119 @@ Editor::do_import (vector<Glib::ustring> paths, bool split, ImportMode mode, Aud
if (interthread_progress_window == 0) { if (interthread_progress_window == 0) {
build_interthread_progress_window (); build_interthread_progress_window ();
} }
/* for each path that was selected, import it and then potentially create a new track
containing the new region as the sole contents.
*/
for (vector<Glib::ustring>::iterator i = paths.begin(); i != paths.end(); ++i ) { vector<ustring> to_import;
import_sndfile (*i, mode, track, pos);
for (vector<ustring>::iterator a = paths.begin(); a != paths.end(); ++a) {
to_import.clear ();
to_import.push_back (*a);
import_sndfile (to_import, mode, track, pos);
} }
interthread_progress_window->hide_all (); interthread_progress_window->hide_all ();
} }
void void
Editor::do_embed (vector<Glib::ustring> paths, bool split, ImportMode mode, AudioTrack* track, nframes_t& pos, bool prompt) Editor::do_embed (vector<ustring> paths, bool split, ImportMode mode, AudioTrack* track, nframes_t& pos, bool prompt)
{ {
bool multiple_files = paths.size() > 1; bool multiple_files = paths.size() > 1;
bool check_sample_rate = true; bool check_sample_rate = true;
vector<Glib::ustring>::iterator i; vector<ustring>::iterator a;
for (i = paths.begin(); i != paths.end(); ++i) {
int ret = embed_sndfile (*i, split, multiple_files, check_sample_rate, mode, track, pos, prompt);
if (ret < -1) { for (a = paths.begin(); a != paths.end(); ) {
break;
Glib::ustring path = *a;
Glib::ustring pair_base;
vector<ustring> to_embed;
to_embed.push_back (path);
a = paths.erase (a);
if (path_is_paired (path, pair_base)) {
ustring::size_type len = pair_base.length();
for (vector<Glib::ustring>::iterator b = paths.begin(); b != paths.end(); ) {
if (((*b).substr (0, len) == pair_base) && ((*b).length() == path.length())) {
to_embed.push_back (*b);
/* don't process this one again */
b = paths.erase (b);
break;
} else {
++b;
}
}
}
if (to_embed.size() > 1) {
vector<string> choices;
choices.push_back (string_compose (_("Import as a %1 region"),
to_embed.size() > 2 ? _("multichannel") : _("stereo")));
choices.push_back (_("Import as multiple regions"));
Gtkmm2ext::Choice chooser (string_compose (_("Paired files detected (%1, %2 ...).\nDo you want to:"),
to_embed[0],
to_embed[1]),
choices);
if (chooser.run () == 0) {
/* keep them paired */
if (embed_sndfile (to_embed, split, multiple_files, check_sample_rate, mode, track, pos, prompt) < -1) {
break;
}
} else {
/* one thing per file */
vector<ustring> foo;
for (vector<ustring>::iterator x = to_embed.begin(); x != to_embed.end(); ++x) {
foo.clear ();
foo.push_back (*x);
if (embed_sndfile (foo, split, multiple_files, check_sample_rate, mode, track, pos, prompt) < -1) {
break;
}
}
}
} else {
if (embed_sndfile (to_embed, split, multiple_files, check_sample_rate, mode, track, pos, prompt) < -1) {
break;
}
} }
} }
if (i == paths.end()) { if (a == paths.end()) {
session->save_state (""); session->save_state ("");
} }
} }
int int
Editor::import_sndfile (Glib::ustring path, ImportMode mode, AudioTrack* track, nframes_t& pos) Editor::import_sndfile (vector<ustring> paths, ImportMode mode, AudioTrack* track, nframes_t& pos)
{ {
interthread_progress_window->set_title (string_compose (_("ardour: importing %1"), path)); interthread_progress_window->set_title (string_compose (_("ardour: importing %1"), paths.front()));
interthread_progress_window->set_position (Gtk::WIN_POS_MOUSE); interthread_progress_window->set_position (Gtk::WIN_POS_MOUSE);
interthread_progress_window->show_all (); interthread_progress_window->show_all ();
interthread_progress_bar.set_fraction (0.0f); interthread_progress_bar.set_fraction (0.0f);
interthread_cancel_label.set_text (_("Cancel Import")); interthread_cancel_label.set_text (_("Cancel Import"));
current_interthread_info = &import_status; current_interthread_info = &import_status;
import_status.pathname = path; import_status.paths = paths;
import_status.done = false; import_status.done = false;
import_status.cancel = false; import_status.cancel = false;
import_status.freeze = false; import_status.freeze = false;
@ -161,8 +232,8 @@ Editor::import_sndfile (Glib::ustring path, ImportMode mode, AudioTrack* track,
track_canvas.get_window()->set_cursor (Gdk::Cursor (Gdk::WATCH)); track_canvas.get_window()->set_cursor (Gdk::Cursor (Gdk::WATCH));
ARDOUR_UI::instance()->flush_pending (); ARDOUR_UI::instance()->flush_pending ();
/* start import thread for this path. this will ultimately call Session::import_audiofile() /* start import thread for this spec. this will ultimately call Session::import_audiofile()
and if successful will add the file as a region to the session region list. and if successful will add the file(s) as a region to the session region list.
*/ */
pthread_create_and_store ("import", &import_status.thread, 0, _import_thread, this); pthread_create_and_store ("import", &import_status.thread, 0, _import_thread, this);
@ -187,7 +258,7 @@ Editor::import_sndfile (Glib::ustring path, ImportMode mode, AudioTrack* track,
} }
int int
Editor::embed_sndfile (Glib::ustring path, bool split, bool multiple_files, bool& check_sample_rate, ImportMode mode, Editor::embed_sndfile (vector<Glib::ustring> paths, bool split, bool multiple_files, bool& check_sample_rate, ImportMode mode,
AudioTrack* track, nframes_t& pos, bool prompt) AudioTrack* track, nframes_t& pos, bool prompt)
{ {
boost::shared_ptr<AudioFileSource> source; boost::shared_ptr<AudioFileSource> source;
@ -196,96 +267,104 @@ Editor::embed_sndfile (Glib::ustring path, bool split, bool multiple_files, bool
string idspec; string idspec;
string linked_path; string linked_path;
SoundFileInfo finfo; SoundFileInfo finfo;
string region_name; ustring region_name;
uint32_t input_chan; uint32_t input_chan = 0;
uint32_t output_chan; uint32_t output_chan = 0;
track_canvas.get_window()->set_cursor (Gdk::Cursor (Gdk::WATCH)); track_canvas.get_window()->set_cursor (Gdk::Cursor (Gdk::WATCH));
ARDOUR_UI::instance()->flush_pending (); ARDOUR_UI::instance()->flush_pending ();
/* lets see if we can link it into the session */ for (vector<Glib::ustring>::iterator p = paths.begin(); p != paths.end(); ++p) {
linked_path = session->sound_dir();
linked_path += Glib::path_get_basename (path);
if (link (path.c_str(), linked_path.c_str()) == 0) { ustring path = *p;
/* there are many reasons why link(2) might have failed. /* lets see if we can link it into the session */
but if it succeeds, we now have a link in the
session sound dir that will protect against
unlinking of the original path. nice.
*/
path = linked_path;
}
/* note that we temporarily truncated _id at the colon */
string error_msg;
if (!AudioFileSource::get_soundfile_info (path, finfo, error_msg)) {
error << string_compose(_("Editor: cannot open file \"%1\", (%2)"), selection, error_msg ) << endmsg;
return 0;
}
if (check_sample_rate && (finfo.samplerate != (int) session->frame_rate())) {
vector<string> choices;
if (multiple_files) { linked_path = session->sound_dir();
choices.push_back (_("Cancel entire import")); linked_path += '/';
choices.push_back (_("Don't embed it")); linked_path += Glib::path_get_basename (path);
choices.push_back (_("Embed all without questions"));
} else {
choices.push_back (_("Cancel"));
}
choices.push_back (_("Embed it anyway"));
Gtkmm2ext::Choice rate_choice ( if (link (path.c_str(), linked_path.c_str()) == 0) {
string_compose (_("%1\nThis audiofile's sample rate doesn't match the session sample rate!"), path),
choices, false); /* there are many reasons why link(2) might have failed.
but if it succeeds, we now have a link in the
switch (rate_choice.run()) { session sound dir that will protect against
case 0: /* stop a multi-file import */ unlinking of the original path. nice.
case 1: /* don't import this one */ */
return -1;
case 2: /* do it, and the rest without asking */ path = linked_path;
check_sample_rate = false;
break;
case 3: /* do it */
break;
default:
return -2;
}
}
track_canvas.get_window()->set_cursor (Gdk::Cursor (Gdk::WATCH));
ARDOUR_UI::instance()->flush_pending ();
/* make the proper number of channels in the region */
for (int n = 0; n < finfo.channels; ++n)
{
idspec = path;
idspec += string_compose(":%1", n);
try {
source = boost::dynamic_pointer_cast<AudioFileSource> (SourceFactory::createReadable
(*session, idspec,
(mode == ImportAsTapeTrack ?
AudioFileSource::Destructive :
AudioFileSource::Flag (0))));
sources.push_back(source);
}
catch (failed_constructor& err) {
error << string_compose(_("could not open %1"), path) << endmsg;
goto out;
} }
/* note that we temporarily truncated _id at the colon */
string error_msg;
if (!AudioFileSource::get_soundfile_info (path, finfo, error_msg)) {
error << string_compose(_("Editor: cannot open file \"%1\", (%2)"), selection, error_msg ) << endmsg;
return 0;
}
if (check_sample_rate && (finfo.samplerate != (int) session->frame_rate())) {
vector<string> choices;
if (multiple_files) {
choices.push_back (_("Cancel entire import"));
choices.push_back (_("Don't embed it"));
choices.push_back (_("Embed all without questions"));
} else {
choices.push_back (_("Cancel"));
}
choices.push_back (_("Embed it anyway"));
Gtkmm2ext::Choice rate_choice (
string_compose (_("%1\nThis audiofile's sample rate doesn't match the session sample rate!"), path),
choices, false);
switch (rate_choice.run()) {
case 0: /* stop a multi-file import */
case 1: /* don't import this one */
return -1;
case 2: /* do it, and the rest without asking */
check_sample_rate = false;
break;
case 3: /* do it */
break;
default:
return -2;
}
}
track_canvas.get_window()->set_cursor (Gdk::Cursor (Gdk::WATCH));
ARDOUR_UI::instance()->flush_pending (); ARDOUR_UI::instance()->flush_pending ();
}
/* make the proper number of channels in the region */
input_chan += finfo.channels;
for (int n = 0; n < finfo.channels; ++n)
{
idspec = path;
idspec += string_compose(":%1", n);
try {
source = boost::dynamic_pointer_cast<AudioFileSource> (SourceFactory::createReadable
(*session, idspec,
(mode == ImportAsTapeTrack ?
AudioFileSource::Destructive :
AudioFileSource::Flag (0))));
sources.push_back(source);
}
catch (failed_constructor& err) {
error << string_compose(_("could not open %1"), path) << endmsg;
goto out;
}
ARDOUR_UI::instance()->flush_pending ();
}
}
if (sources.empty()) { if (sources.empty()) {
goto out; goto out;
} }
@ -294,20 +373,17 @@ Editor::embed_sndfile (Glib::ustring path, bool split, bool multiple_files, bool
pos = sources[0]->natural_position(); pos = sources[0]->natural_position();
} }
region_name = PBD::basename_nosuffix (path); region_name = region_name_from_path (paths.front(), (sources.size() > 1));
region_name += "-0";
region = boost::dynamic_pointer_cast<AudioRegion> (RegionFactory::create (sources, 0, sources[0]->length(), region_name, 0, region = boost::dynamic_pointer_cast<AudioRegion> (RegionFactory::create (sources, 0, sources[0]->length(), region_name, 0,
Region::Flag (Region::DefaultFlags|Region::WholeFile|Region::External))); Region::Flag (Region::DefaultFlags|Region::WholeFile|Region::External)));
input_chan = finfo.channels;
if (Config->get_output_auto_connect() & AutoConnectMaster) { if (Config->get_output_auto_connect() & AutoConnectMaster) {
output_chan = (session->master_out() ? session->master_out()->n_inputs() : input_chan); output_chan = (session->master_out() ? session->master_out()->n_inputs() : input_chan);
} else { } else {
output_chan = input_chan; output_chan = input_chan;
} }
finish_bringing_in_audio (region, input_chan, output_chan, track, pos, mode); finish_bringing_in_audio (region, input_chan, output_chan, track, pos, mode);
out: out:

View file

@ -454,8 +454,6 @@ Editor::track_canvas_drag_data_received (const RefPtr<Gdk::DragContext>& context
const SelectionData& data, const SelectionData& data,
guint info, guint time) guint info, guint time)
{ {
cerr << "dropping, target = " << data.get_target() << endl;
if (data.get_target() == "regions") { if (data.get_target() == "regions") {
drop_regions (context, x, y, data, info, time); drop_regions (context, x, y, data, info, time);
} else { } else {

View file

@ -26,7 +26,7 @@
#include <pbd/basename.h> #include <pbd/basename.h>
#include <ardour/audioregion.h> #include <ardour/audioregion.h>
#include <ardour/audiosource.h> #include <ardour/audiofilesource.h>
#include <ardour/session_region.h> #include <ardour/session_region.h>
#include <gtkmm2ext/stop_signal.h> #include <gtkmm2ext/stop_signal.h>
@ -131,8 +131,15 @@ Editor::add_audio_region_to_region_display (boost::shared_ptr<AudioRegion> regio
if (region->whole_file()) { if (region->whole_file()) {
str = ".../"; str = ".../";
str += PBD::basename_nosuffix (region->source()->name());
boost::shared_ptr<AudioFileSource> afs = boost::dynamic_pointer_cast<AudioFileSource>(region->source());
if (afs) {
str += region_name_from_path (afs->path(), region->n_channels() > 1);
} else {
str += region->source()->name();
}
} else { } else {
str = region->name(); str = region->name();
} }

View file

@ -124,4 +124,4 @@ CONFIG_VARIABLE (string, bwf_organization_code, "bwf-organization-code", "US")
/* these variables have custom set() methods (e.g. path globbing) */ /* these variables have custom set() methods (e.g. path globbing) */
CONFIG_VARIABLE_SPECIAL(std::string, raid_path, "raid-path", "", path_expand) CONFIG_VARIABLE_SPECIAL(Glib::ustring, raid_path, "raid-path", "", path_expand)

View file

@ -566,7 +566,7 @@ class Session : public PBD::StatefulDestructible
bool multichan; bool multichan;
bool sample_convert; bool sample_convert;
volatile bool freeze; volatile bool freeze;
string pathname; std::vector<Glib::ustring> paths;
/* result */ /* result */
std::vector<boost::shared_ptr<AudioRegion> > new_regions; std::vector<boost::shared_ptr<AudioRegion> > new_regions;

View file

@ -34,7 +34,7 @@
class XMLNode; class XMLNode;
void elapsed_time_to_str (char *buf, uint32_t seconds); void elapsed_time_to_str (char *buf, uint32_t seconds);
std::string legalize_for_path (std::string str); Glib::ustring legalize_for_path (Glib::ustring str);
std::ostream& operator<< (std::ostream& o, const ARDOUR::BBT_Time& bbt); std::ostream& operator<< (std::ostream& o, const ARDOUR::BBT_Time& bbt);
XMLNode* find_named_node (const XMLNode& node, std::string name); XMLNode* find_named_node (const XMLNode& node, std::string name);
std::string placement_as_string (ARDOUR::Placement); std::string placement_as_string (ARDOUR::Placement);
@ -52,10 +52,11 @@ int cmp_nocase (const std::string& s, const std::string& s2);
int tokenize_fullpath (std::string fullpath, std::string& path, std::string& name); int tokenize_fullpath (std::string fullpath, std::string& path, std::string& name);
int touch_file(std::string path); int touch_file(Glib::ustring path);
std::string region_name_from_path (std::string path); Glib::ustring path_expand (Glib::ustring);
std::string path_expand (std::string); Glib::ustring region_name_from_path (Glib::ustring path, bool strip_channels);
bool path_is_paired (Glib::ustring path, Glib::ustring& pair_base);
void compute_equal_power_fades (nframes_t nframes, float* in, float* out); void compute_equal_power_fades (nframes_t nframes, float* in, float* out);

View file

@ -1551,7 +1551,7 @@ AudioDiskstream::transport_stopped (struct tm& when, time_t twhen, bool abort_ca
} else { } else {
string whole_file_region_name; string whole_file_region_name;
whole_file_region_name = region_name_from_path (channels[0].write_source->name()); whole_file_region_name = region_name_from_path (channels[0].write_source->name(), true);
/* Register a new region with the Session that /* Register a new region with the Session that
describes the entire source. Do this first describes the entire source. Do this first
@ -2214,7 +2214,7 @@ AudioDiskstream::use_pending_capture_data (XMLNode& node)
try { try {
region = boost::dynamic_pointer_cast<AudioRegion> (RegionFactory::create (pending_sources, 0, first_fs->length(), region = boost::dynamic_pointer_cast<AudioRegion> (RegionFactory::create (pending_sources, 0, first_fs->length(),
region_name_from_path (first_fs->name()), region_name_from_path (first_fs->name(), true),
0, AudioRegion::Flag (AudioRegion::DefaultFlags|AudioRegion::Automatic|AudioRegion::WholeFile))); 0, AudioRegion::Flag (AudioRegion::DefaultFlags|AudioRegion::Automatic|AudioRegion::WholeFile)));
region->special_set_position (0); region->special_set_position (0);
} }
@ -2228,7 +2228,7 @@ AudioDiskstream::use_pending_capture_data (XMLNode& node)
} }
try { try {
region = boost::dynamic_pointer_cast<AudioRegion> (RegionFactory::create (pending_sources, 0, first_fs->length(), region_name_from_path (first_fs->name()))); region = boost::dynamic_pointer_cast<AudioRegion> (RegionFactory::create (pending_sources, 0, first_fs->length(), region_name_from_path (first_fs->name(), true)));
} }
catch (failed_constructor& err) { catch (failed_constructor& err) {

View file

@ -191,42 +191,11 @@ setup_midi ()
return 0; return 0;
} }
int void
ARDOUR::init (bool use_vst, bool try_optimization) setup_hardware_optimization (bool try_optimization)
{ {
bool generic_mix_functions = true; bool generic_mix_functions = true;
(void) bindtextdomain(PACKAGE, LOCALEDIR);
PBD::ID::init ();
lrdf_init();
Library = new AudioLibrary;
Config = new Configuration;
if (Config->load_state ()) {
return -1;
}
Config->set_use_vst (use_vst);
if (setup_midi ()) {
return -1;
}
#ifdef HAVE_LIBLO
if (setup_osc ()) {
return -1;
}
#endif
#ifdef VST_SUPPORT
if (Config->get_use_vst() && fst_init ()) {
return -1;
}
#endif
if (try_optimization) { if (try_optimization) {
#if defined (ARCH_X86) && defined (BUILD_SSE_OPTIMIZATIONS) #if defined (ARCH_X86) && defined (BUILD_SSE_OPTIMIZATIONS)
@ -260,7 +229,7 @@ ARDOUR::init (bool use_vst, bool try_optimization)
#endif /* USE_X86_64_ASM */ #endif /* USE_X86_64_ASM */
if (use_sse) { if (use_sse) {
cerr << "Enabling SSE optimized routines" << endl; info << "Using SSE optimized routines" << endmsg;
// SSE SET // SSE SET
Session::compute_peak = x86_sse_compute_peak; Session::compute_peak = x86_sse_compute_peak;
@ -300,6 +269,43 @@ ARDOUR::init (bool use_vst, bool try_optimization)
info << "No H/W specific optimizations in use" << endmsg; info << "No H/W specific optimizations in use" << endmsg;
} }
}
int
ARDOUR::init (bool use_vst, bool try_optimization)
{
(void) bindtextdomain(PACKAGE, LOCALEDIR);
PBD::ID::init ();
lrdf_init();
Library = new AudioLibrary;
Config = new Configuration;
if (Config->load_state ()) {
return -1;
}
Config->set_use_vst (use_vst);
if (setup_midi ()) {
return -1;
}
#ifdef HAVE_LIBLO
if (setup_osc ()) {
return -1;
}
#endif
#ifdef VST_SUPPORT
if (Config->get_use_vst() && fst_init ()) {
return -1;
}
#endif
setup_hardware_optimization (try_optimization);
/* singleton - first object is "it" */ /* singleton - first object is "it" */
new PluginManager (); new PluginManager ();

View file

@ -73,22 +73,22 @@ Session::import_audiofile (import_status& status)
status.new_regions.clear (); status.new_regions.clear ();
if ((in = sf_open (status.pathname.c_str(), SFM_READ, &info)) == 0) { if ((in = sf_open (status.paths.front().c_str(), SFM_READ, &info)) == 0) {
error << string_compose(_("Import: cannot open input sound file \"%1\""), status.pathname) << endmsg; error << string_compose(_("Import: cannot open input sound file \"%1\""), status.paths.front()) << endmsg;
return -1; return -1;
} else { } else {
if ((uint32_t) info.samplerate != frame_rate()) { if ((uint32_t) info.samplerate != frame_rate()) {
sf_close(in); sf_close(in);
status.doing_what = _("resampling audio"); status.doing_what = _("resampling audio");
// resample to session frame_rate // resample to session frame_rate
if (sample_rate_convert(status, status.pathname, tmp_convert_file)) { if (sample_rate_convert(status, status.paths.front(), tmp_convert_file)) {
if ((in = sf_open (tmp_convert_file.c_str(), SFM_READ, &info)) == 0) { if ((in = sf_open (tmp_convert_file.c_str(), SFM_READ, &info)) == 0) {
error << string_compose(_("Import: cannot open converted sound file \"%1\""), tmp_convert_file) << endmsg; error << string_compose(_("Import: cannot open converted sound file \"%1\""), tmp_convert_file) << endmsg;
return -1; return -1;
} }
} else if (!status.cancel){ } else if (!status.cancel){
// error // error
error << string_compose(_("Import: error while resampling sound file \"%1\""), status.pathname) << endmsg; error << string_compose(_("Import: error while resampling sound file \"%1\""), status.paths.front()) << endmsg;
return -1; return -1;
} else { } else {
// canceled // canceled
@ -102,7 +102,7 @@ Session::import_audiofile (import_status& status)
} }
sounds_dir = discover_best_sound_dir (); sounds_dir = discover_best_sound_dir ();
basepath = PBD::basename_nosuffix (status.pathname); basepath = PBD::basename_nosuffix (status.paths.front());
for (n = 0; n < info.channels; ++n) { for (n = 0; n < info.channels; ++n) {
@ -215,7 +215,7 @@ Session::import_audiofile (import_status& status)
sources.push_back(newfiles[n]); sources.push_back(newfiles[n]);
} }
boost::shared_ptr<AudioRegion> r (boost::dynamic_pointer_cast<AudioRegion> (RegionFactory::create (sources, 0, newfiles[0]->length(), region_name_from_path (Glib::path_get_basename (basepath)), boost::shared_ptr<AudioRegion> r (boost::dynamic_pointer_cast<AudioRegion> (RegionFactory::create (sources, 0, newfiles[0]->length(), region_name_from_path (basepath, true),
0, AudioRegion::Flag (AudioRegion::DefaultFlags | AudioRegion::WholeFile)))); 0, AudioRegion::Flag (AudioRegion::DefaultFlags | AudioRegion::WholeFile))));
status.new_regions.push_back (r); status.new_regions.push_back (r);
@ -233,7 +233,7 @@ Session::import_audiofile (import_status& status)
status.new_regions.push_back (boost::dynamic_pointer_cast<AudioRegion> status.new_regions.push_back (boost::dynamic_pointer_cast<AudioRegion>
(RegionFactory::create (boost::static_pointer_cast<Source> (newfiles[n]), 0, newfiles[n]->length(), (RegionFactory::create (boost::static_pointer_cast<Source> (newfiles[n]), 0, newfiles[n]->length(),
region_name_from_path (Glib::path_get_basename (newfiles[n]->name())), region_name_from_path (newfiles[n]->name(), true),
0, AudioRegion::Flag (AudioRegion::DefaultFlags | AudioRegion::WholeFile | AudioRegion::Import)))); 0, AudioRegion::Flag (AudioRegion::DefaultFlags | AudioRegion::WholeFile | AudioRegion::Import))));
} }
} }

View file

@ -3768,7 +3768,7 @@ Session::write_one_audio_track (AudioTrack& track, nframes_t start, nframes_t le
/* construct a region to represent the bounced material */ /* construct a region to represent the bounced material */
boost::shared_ptr<Region> aregion = RegionFactory::create (srcs, 0, srcs.front()->length(), boost::shared_ptr<Region> aregion = RegionFactory::create (srcs, 0, srcs.front()->length(),
region_name_from_path (srcs.front()->name())); region_name_from_path (srcs.front()->name(), true));
ret = 0; ret = 0;
} }

View file

@ -37,6 +37,7 @@
#include <pbd/error.h> #include <pbd/error.h>
#include <pbd/stacktrace.h> #include <pbd/stacktrace.h>
#include <pbd/xml++.h> #include <pbd/xml++.h>
#include <pbd/basename.h>
#include <ardour/utils.h> #include <ardour/utils.h>
#include "i18n.h" #include "i18n.h"
@ -44,6 +45,7 @@
using namespace ARDOUR; using namespace ARDOUR;
using namespace std; using namespace std;
using namespace PBD; using namespace PBD;
using Glib::ustring;
void void
elapsed_time_to_str (char *buf, uint32_t seconds) elapsed_time_to_str (char *buf, uint32_t seconds)
@ -87,6 +89,24 @@ elapsed_time_to_str (char *buf, uint32_t seconds)
} }
} }
ustring
legalize_for_path (ustring str)
{
ustring::size_type pos;
ustring legal_chars = "abcdefghijklmnopqrtsuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_+=: ";
ustring legal;
legal = str;
pos = 0;
while ((pos = legal.find_first_not_of (legal_chars, pos)) != string::npos) {
legal.replace (pos, 1, "_");
pos += 1;
}
return legal;
}
#if 0
string string
legalize_for_path (string str) legalize_for_path (string str)
{ {
@ -104,6 +124,7 @@ legalize_for_path (string str)
return legal; return legal;
} }
#endif
ostream& ostream&
operator<< (ostream& o, const BBT_Time& bbt) operator<< (ostream& o, const BBT_Time& bbt)
@ -177,7 +198,7 @@ tokenize_fullpath (string fullpath, string& path, string& name)
} }
int int
touch_file (string path) touch_file (ustring path)
{ {
int fd = open (path.c_str(), O_RDWR|O_CREAT, 0660); int fd = open (path.c_str(), O_RDWR|O_CREAT, 0660);
if (fd >= 0) { if (fd >= 0) {
@ -199,10 +220,31 @@ placement_as_string (Placement p)
} }
} }
string ustring
region_name_from_path (string path) region_name_from_path (ustring path, bool strip_channels)
{ {
string::size_type pos; path = PBD::basename_nosuffix (path);
if (strip_channels) {
/* remove any "?R", "?L" or "?[a-z]" channel identifier */
ustring::size_type len = path.length();
if (len > 3 && (path[len-2] == '%' || path[len-2] == '?' || path[len-2] == '.') &&
(path[len-1] == 'R' || path[len-1] == 'L' || (islower (path[len-1])))) {
path = path.substr (0, path.length() - 2);
}
}
return path;
}
bool
path_is_paired (ustring path, ustring& pair_base)
{
ustring::size_type pos;
/* remove filename suffixes etc. */ /* remove filename suffixes etc. */
@ -210,21 +252,23 @@ region_name_from_path (string path)
path = path.substr (0, pos); path = path.substr (0, pos);
} }
/* remove any "?R", "?L" or "?[a-z]" channel identifier */ ustring::size_type len = path.length();
string::size_type len = path.length();
if (len > 3 && (path[len-2] == '%' || path[len-2] == '?') && /* look for possible channel identifier: "?R", "%R", ".L" etc. */
if (len > 3 && (path[len-2] == '%' || path[len-2] == '?' || path[len-2] == '.') &&
(path[len-1] == 'R' || path[len-1] == 'L' || (islower (path[len-1])))) { (path[len-1] == 'R' || path[len-1] == 'L' || (islower (path[len-1])))) {
path = path.substr (0, path.length() - 2); pair_base = path.substr (0, len-2);
} return true;
return path; }
}
string return false;
path_expand (string path) }
ustring
path_expand (ustring path)
{ {
#ifdef HAVE_WORDEXP #ifdef HAVE_WORDEXP
/* Handle tilde and environment variable expansion in session path */ /* Handle tilde and environment variable expansion in session path */

View file

@ -1,20 +1,13 @@
#include <iostream>
#include <string.h>
#include <pbd/basename.h> #include <pbd/basename.h>
#include <glibmm/miscutils.h>
using Glib::ustring;
// implement this using Glib::path_get_basename ustring
std::string PBD::basename_nosuffix (ustring str)
PBD::basename_nosuffix (const std::string& str)
{ {
std::string::size_type slash = str.find_last_of ('/'); ustring base = Glib::path_get_basename (str);
std::string noslash;
if (slash == std::string::npos) { return base.substr (0, base.find_last_of ('.'));
noslash = str;
} else {
noslash = str.substr (slash+1);
}
return noslash.substr (0, noslash.find_last_of ('.'));
} }

View file

@ -1,13 +1,13 @@
#ifndef __stupid_basename_h__ #ifndef __stupid_basename_h__
#define __stupid_basename_h__ #define __stupid_basename_h__
#include <string> #include <glibmm/ustring.h>
namespace PBD namespace PBD
{ {
extern std::string basename_nosuffix (const std::string&); Glib::ustring basename_nosuffix (Glib::ustring);
} // namespace PBD }
#endif // __stupid_basename_h__ #endif // __stupid_basename_h__

View file

@ -47,8 +47,12 @@ typedef unsigned long ulong;
typedef unsigned int BOOL; typedef unsigned int BOOL;
#ifndef FALSE
#define FALSE 0 #define FALSE 0
#endif
#ifndef TRUE
#define TRUE 1 #define TRUE 1
#endif
#endif // _WINDEF_ #endif // _WINDEF_

View file

@ -1,4 +1,4 @@
#ifndef __ardour_svn_revision_h__ #ifndef __ardour_svn_revision_h__
#define __ardour_svn_revision_h__ #define __ardour_svn_revision_h__
static const char* ardour_svn_revision = "1232"; static const char* ardour_svn_revision = "1239";
#endif #endif