summaryrefslogtreecommitdiff
path: root/libs/ardour
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-07-22 02:27:06 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-07-22 02:27:06 +0000
commita1bbbcb41b520c24b4e568eec0b0abcea6aee9ef (patch)
treed19b6059b4bbd962a2fb0344c6e55c78e2e27e57 /libs/ardour
parent448eb1acddbb4ac215f6b9ef4667b0befbe173a4 (diff)
first part of using appropriate .ext extensions for the current chosen native file header format
git-svn-id: svn://localhost/ardour2/branches/3.0@7468 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour')
-rw-r--r--libs/ardour/ardour/ardour.h2
-rw-r--r--libs/ardour/ardour/session.h2
-rw-r--r--libs/ardour/ardour/utils.h5
-rw-r--r--libs/ardour/file_source.cc2
-rw-r--r--libs/ardour/import.cc19
-rw-r--r--libs/ardour/session.cc38
-rw-r--r--libs/ardour/session_state.cc2
-rw-r--r--libs/ardour/utils.cc29
8 files changed, 68 insertions, 31 deletions
diff --git a/libs/ardour/ardour/ardour.h b/libs/ardour/ardour/ardour.h
index 11a5940c7c..4d98913d34 100644
--- a/libs/ardour/ardour/ardour.h
+++ b/libs/ardour/ardour/ardour.h
@@ -54,7 +54,7 @@ namespace ARDOUR {
int cleanup ();
bool no_auto_connect ();
void make_property_quarks ();
-
+
extern PBD::PropertyChange bounds_change;
std::string get_ardour_revision ();
diff --git a/libs/ardour/ardour/session.h b/libs/ardour/ardour/session.h
index ac528081ff..21bde800d3 100644
--- a/libs/ardour/ardour/session.h
+++ b/libs/ardour/ardour/session.h
@@ -180,7 +180,7 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi
Glib::ustring peak_path (Glib::ustring) const;
- static std::string change_source_path_by_name (std::string oldpath, std::string oldname, std::string newname, bool destructive);
+ std::string change_source_path_by_name (std::string oldpath, std::string oldname, std::string newname, bool destructive);
std::string peak_path_from_audio_path (std::string) const;
std::string new_audio_source_name (const std::string&, uint32_t nchans, uint32_t chan, bool destructive);
diff --git a/libs/ardour/ardour/utils.h b/libs/ardour/ardour/utils.h
index f4c7e585c4..b91a6500db 100644
--- a/libs/ardour/ardour/utils.h
+++ b/libs/ardour/ardour/utils.h
@@ -34,7 +34,8 @@
bool string_is_affirmative (const std::string&);
-#include "ardour.h"
+#include "ardour/ardour.h"
+#include "ardour/data_type.h"
class XMLNode;
@@ -103,6 +104,8 @@ float meter_falloff_to_float (ARDOUR::MeterFalloff);
ARDOUR::MeterFalloff meter_falloff_from_float (float);
float meter_falloff_to_db_per_sec (float);
+const char* native_header_format_extension (ARDOUR::HeaderFormat, const ARDOUR::DataType& type);
+
#if defined(HAVE_COREAUDIO) || defined(HAVE_AUDIOUNITS)
std::string CFStringRefToStdString(CFStringRef stringRef);
#endif // HAVE_COREAUDIO
diff --git a/libs/ardour/file_source.cc b/libs/ardour/file_source.cc
index d0eb64b8aa..512d37a10b 100644
--- a/libs/ardour/file_source.cc
+++ b/libs/ardour/file_source.cc
@@ -383,7 +383,7 @@ FileSource::set_source_name (const ustring& newname, bool destructive)
{
Glib::Mutex::Lock lm (_lock);
ustring oldpath = _path;
- ustring newpath = Session::change_source_path_by_name (oldpath, _name, newname, destructive);
+ ustring newpath = _session.change_source_path_by_name (oldpath, _name, newname, destructive);
if (newpath.empty()) {
error << string_compose (_("programming error: %1"), "cannot generate a changed file path") << endmsg;
diff --git a/libs/ardour/import.cc b/libs/ardour/import.cc
index 7d986539df..156186dbe4 100644
--- a/libs/ardour/import.cc
+++ b/libs/ardour/import.cc
@@ -117,25 +117,25 @@ open_importable_source (const string& path, nframes_t samplerate, ARDOUR::SrcQua
}
static std::string
-get_non_existent_filename (DataType type, const bool allow_replacing, const std::string& destdir, const std::string& basename, uint channel, uint channels)
+get_non_existent_filename (HeaderFormat hf, DataType type, const bool allow_replacing, const std::string& destdir, const std::string& basename, uint channel, uint channels)
{
char buf[PATH_MAX+1];
bool goodfile = false;
string base(basename);
- const char* ext = (type == DataType::AUDIO) ? "wav" : "mid";
+ string ext = native_header_format_extension (hf, type);
do {
if (type == DataType::AUDIO && channels == 2) {
if (channel == 0) {
- snprintf (buf, sizeof(buf), "%s-L.wav", base.c_str());
+ snprintf (buf, sizeof(buf), "%s-L%s", base.c_str(), ext.c_str());
} else {
- snprintf (buf, sizeof(buf), "%s-R.wav", base.c_str());
+ snprintf (buf, sizeof(buf), "%s-R%s", base.c_str(), ext.c_str());
}
} else if (channels > 1) {
- snprintf (buf, sizeof(buf), "%s-c%d.%s", base.c_str(), channel, ext);
+ snprintf (buf, sizeof(buf), "%s-c%d%s", base.c_str(), channel, ext.c_str());
} else {
- snprintf (buf, sizeof(buf), "%s.%s", base.c_str(), ext);
+ snprintf (buf, sizeof(buf), "%s%s", base.c_str(), ext.c_str());
}
@@ -160,7 +160,7 @@ get_non_existent_filename (DataType type, const bool allow_replacing, const std:
}
static vector<string>
-get_paths_for_new_sources (const bool allow_replacing, const string& import_file_path, const string& session_dir, uint channels)
+get_paths_for_new_sources (HeaderFormat hf, const bool allow_replacing, const string& import_file_path, const string& session_dir, uint channels)
{
vector<string> new_paths;
const string basename = basename_nosuffix (import_file_path);
@@ -175,7 +175,7 @@ get_paths_for_new_sources (const bool allow_replacing, const string& import_file
? sdir.midi_path().to_string() : sdir.sound_path().to_string();
filepath += '/';
- filepath += get_non_existent_filename (type, allow_replacing, filepath, basename, n, channels);
+ filepath += get_non_existent_filename (hf, type, allow_replacing, filepath, basename, n, channels);
new_paths.push_back (filepath);
}
@@ -478,7 +478,8 @@ Session::import_audiofiles (ImportStatus& status)
}
}
- vector<string> new_paths = get_paths_for_new_sources (status.replace_existing_source, *p,
+ vector<string> new_paths = get_paths_for_new_sources (config.get_native_file_header_format(),
+ status.replace_existing_source, *p,
get_best_session_directory_for_new_source (),
channels);
Sources newfiles;
diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc
index 344a20f860..e939ffc694 100644
--- a/libs/ardour/session.cc
+++ b/libs/ardour/session.cc
@@ -2695,7 +2695,7 @@ Session::change_source_path_by_name (string path, string oldname, string newname
path += prefix;
path += '-';
path += new_legalized;
- path += ".wav"; /* XXX gag me with a spoon */
+ path += native_header_format_extension (config.get_native_file_header_format(), DataType::AUDIO);
path = Glib::build_filename (dir, path);
@@ -2805,6 +2805,7 @@ Session::new_audio_source_name (const string& base, uint32_t nchan, uint32_t cha
char buf[PATH_MAX+1];
const uint32_t limit = 10000;
string legalized;
+ string ext = native_header_format_extension (config.get_native_file_header_format(), DataType::AUDIO);
buf[0] = '\0';
legalized = legalize_for_path (base);
@@ -2824,22 +2825,22 @@ Session::new_audio_source_name (const string& base, uint32_t nchan, uint32_t cha
if (destructive) {
if (nchan < 2) {
- snprintf (buf, sizeof(buf), "%s/T%04d-%s.wav",
- spath.c_str(), cnt, legalized.c_str());
+ snprintf (buf, sizeof(buf), "%s/T%04d-%s%s",
+ spath.c_str(), cnt, legalized.c_str(), ext.c_str());
} else if (nchan == 2) {
if (chan == 0) {
- snprintf (buf, sizeof(buf), "%s/T%04d-%s%%L.wav",
- spath.c_str(), cnt, legalized.c_str());
+ snprintf (buf, sizeof(buf), "%s/T%04d-%s%%L%s",
+ spath.c_str(), cnt, legalized.c_str(), ext.c_str());
} else {
- snprintf (buf, sizeof(buf), "%s/T%04d-%s%%R.wav",
- spath.c_str(), cnt, legalized.c_str());
+ snprintf (buf, sizeof(buf), "%s/T%04d-%s%%R%s",
+ spath.c_str(), cnt, legalized.c_str(), ext.c_str());
}
} else if (nchan < 26) {
- snprintf (buf, sizeof(buf), "%s/T%04d-%s%%%c.wav",
- spath.c_str(), cnt, legalized.c_str(), 'a' + chan);
+ snprintf (buf, sizeof(buf), "%s/T%04d-%s%%%c%s",
+ spath.c_str(), cnt, legalized.c_str(), 'a' + chan, ext.c_str());
} else {
- snprintf (buf, sizeof(buf), "%s/T%04d-%s.wav",
- spath.c_str(), cnt, legalized.c_str());
+ snprintf (buf, sizeof(buf), "%s/T%04d-%s%s",
+ spath.c_str(), cnt, legalized.c_str(), ext.c_str());
}
} else {
@@ -2848,17 +2849,17 @@ Session::new_audio_source_name (const string& base, uint32_t nchan, uint32_t cha
spath += legalized;
if (nchan < 2) {
- snprintf (buf, sizeof(buf), "%s-%u.wav", spath.c_str(), cnt);
+ snprintf (buf, sizeof(buf), "%s-%u%s", spath.c_str(), cnt, ext.c_str());
} else if (nchan == 2) {
if (chan == 0) {
- snprintf (buf, sizeof(buf), "%s-%u%%L.wav", spath.c_str(), cnt);
+ snprintf (buf, sizeof(buf), "%s-%u%%L%s", spath.c_str(), cnt, ext.c_str());
} else {
- snprintf (buf, sizeof(buf), "%s-%u%%R.wav", spath.c_str(), cnt);
+ snprintf (buf, sizeof(buf), "%s-%u%%R%s", spath.c_str(), cnt, ext.c_str());
}
} else if (nchan < 26) {
- snprintf (buf, sizeof(buf), "%s-%u%%%c.wav", spath.c_str(), cnt, 'a' + chan);
+ snprintf (buf, sizeof(buf), "%s-%u%%%c%s", spath.c_str(), cnt, 'a' + chan, ext.c_str());
} else {
- snprintf (buf, sizeof(buf), "%s-%u.wav", spath.c_str(), cnt);
+ snprintf (buf, sizeof(buf), "%s-%u%s", spath.c_str(), cnt, ext.c_str());
}
}
@@ -3468,6 +3469,7 @@ Session::write_one_track (AudioTrack& track, nframes_t start, nframes_t end,
SessionDirectory sdir(get_best_session_directory_for_new_source ());
const string sound_dir = sdir.sound_path().to_string();
nframes_t len = end - start;
+ string ext;
if (end <= start) {
error << string_compose (_("Cannot write a range where end <= start (e.g. %1 <= %2)"),
@@ -3493,10 +3495,12 @@ Session::write_one_track (AudioTrack& track, nframes_t start, nframes_t end,
goto out;
}
+ ext = native_header_format_extension (config.get_native_file_header_format(), DataType::AUDIO);
+
for (uint32_t chan_n=0; chan_n < nchans.n_audio(); ++chan_n) {
for (x = 0; x < 99999; ++x) {
- snprintf (buf, sizeof(buf), "%s/%s-%d-bounce-%" PRIu32 ".wav", sound_dir.c_str(), playlist->name().c_str(), chan_n, x+1);
+ snprintf (buf, sizeof(buf), "%s/%s-%d-bounce-%" PRIu32 "%s", sound_dir.c_str(), playlist->name().c_str(), chan_n, x+1, ext.c_str());
if (access (buf, F_OK) != 0) {
break;
}
diff --git a/libs/ardour/session_state.cc b/libs/ardour/session_state.cc
index 9e4d2f281a..6c6da8702d 100644
--- a/libs/ardour/session_state.cc
+++ b/libs/ardour/session_state.cc
@@ -1832,7 +1832,7 @@ Session::path_from_region_name (DataType type, string name, string identifier)
sys::path source_dir = ((type == DataType::AUDIO)
? sdir.sound_path() : sdir.midi_path());
- string ext = ((type == DataType::AUDIO) ? ".wav" : ".mid");
+ string ext = native_header_format_extension (config.get_native_file_header_format(), type);
for (n = 0; n < 999999; ++n) {
if (identifier.length()) {
diff --git a/libs/ardour/utils.cc b/libs/ardour/utils.cc
index 2bfe16222d..abdba63803 100644
--- a/libs/ardour/utils.cc
+++ b/libs/ardour/utils.cc
@@ -509,6 +509,35 @@ string_is_affirmative (const std::string& str)
return str == "1" || str == "y" || str == "Y" || (!g_strncasecmp(str.c_str(), "yes", str.length()));
}
+const char*
+native_header_format_extension (HeaderFormat hf, const DataType& type)
+{
+ if (type == DataType::MIDI) {
+ return ".mid";
+ }
+
+ switch (hf) {
+ case BWF:
+ return ".wav";
+ case WAVE:
+ return ".wav";
+ case WAVE64:
+ return ".w64";
+ case CAF:
+ return ".caf";
+ case AIFF:
+ return ".aif";
+ case iXML:
+ return ".ixml";
+ case RF64:
+ return ".rf64";
+ }
+
+ fatal << string_compose (_("programming error: unknown native header format: %1"), hf);
+ /*NOTREACHED*/
+ return ".wav";
+}
+
extern "C" {
void c_stacktrace() { stacktrace (cerr); }
}