fix more cut-n-paste coding errors
[ardour.git] / libs / ardour / utils.cc
index b0088ef251444eb390b02015e8ce678b76c5c2e7..6a59d1b79b869e65aab9898cc972e952b9543bbc 100644 (file)
@@ -33,7 +33,6 @@
 #include <cerrno>
 #include <iostream>
 #include <sys/types.h>
-#include <sys/stat.h>
 #include <sys/time.h>
 #include <fcntl.h>
 #ifndef COMPILER_MSVC
 #include <errno.h>
 #include <regex.h>
 
-#include <glib.h>
-#include <glib/gstdio.h>
+#include "pbd/gstdio_compat.h"
 
 #include <glibmm/miscutils.h>
 #include <glibmm/fileutils.h>
 
 #include "pbd/cpus.h"
+#include "pbd/control_math.h"
 #include "pbd/error.h"
 #include "pbd/stacktrace.h"
 #include "pbd/xml++.h"
 #include "pbd/basename.h"
+#include "pbd/scoped_file_descriptor.h"
 #include "pbd/strsplit.h"
 #include "pbd/replace_all.h"
 
 #include "ardour/utils.h"
 #include "ardour/rc_configuration.h"
 
-#include "i18n.h"
+#include "pbd/i18n.h"
 
 using namespace ARDOUR;
 using namespace std;
@@ -135,13 +135,13 @@ ARDOUR::legalize_for_uri (const string& str)
  * version.
  */
 
-string 
+string
 ARDOUR::legalize_for_path_2X (const string& str)
 {
        string::size_type pos;
        string legal_chars = "abcdefghijklmnopqrtsuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_+=: ";
         Glib::ustring legal;
-       
+
        /* this is the one place in Ardour where we need to iterate across
         * potential multibyte characters, and thus we need Glib::ustring
         */
@@ -299,17 +299,6 @@ ARDOUR::cmp_nocase_utf8 (const string& s1, const string& s2)
        return retval;
 }
 
-int
-ARDOUR::touch_file (string path)
-{
-       int fd = g_open (path.c_str(), O_RDWR|O_CREAT, 0660);
-       if (fd >= 0) {
-               close (fd);
-               return 0;
-       }
-       return 1;
-}
-
 string
 ARDOUR::region_name_from_path (string path, bool strip_channels, bool add_channel_suffix, uint32_t total, uint32_t this_one)
 {
@@ -394,7 +383,7 @@ ARDOUR::CFStringRefToStdString(CFStringRef stringRef)
 #endif // __APPLE__
 
 void
-ARDOUR::compute_equal_power_fades (framecnt_t nframes, float* in, float* out)
+ARDOUR::compute_equal_power_fades (samplecnt_t nframes, float* in, float* out)
 {
        double step;
 
@@ -402,7 +391,7 @@ ARDOUR::compute_equal_power_fades (framecnt_t nframes, float* in, float* out)
 
        in[0] = 0.0f;
 
-       for (framecnt_t i = 1; i < nframes - 1; ++i) {
+       for (samplecnt_t i = 1; i < nframes - 1; ++i) {
                in[i] = in[i-1] + step;
        }
 
@@ -411,7 +400,7 @@ ARDOUR::compute_equal_power_fades (framecnt_t nframes, float* in, float* out)
        const float pan_law_attenuation = -3.0f;
        const float scale = 2.0f - 4.0f * powf (10.0f,pan_law_attenuation/20.0f);
 
-       for (framecnt_t n = 0; n < nframes; ++n) {
+       for (samplecnt_t n = 0; n < nframes; ++n) {
                float inVal = in[n];
                float outVal = 1 - inVal;
                out[n] = outVal * (scale * outVal + 1.0f - scale);
@@ -488,27 +477,27 @@ ARDOUR::sync_source_to_string (SyncSource src, bool sh)
                /* no other backends offer sync for now ... deal with this if we
                 * ever have to.
                 */
-               return _("JACK");
+               return S_("SyncSource|JACK");
 
        case MTC:
                if (sh) {
-                       return _("MTC");
+                       return S_("SyncSource|MTC");
                } else {
                        return _("MIDI Timecode");
                }
 
        case MIDIClock:
                if (sh) {
-                       return _("M-Clock");
+                       return S_("SyncSource|M-Clk");
                } else {
                        return _("MIDI Clock");
                }
 
        case LTC:
-               return _("LTC");
+               return S_("SyncSource|LTC");
        }
        /* GRRRR .... stupid, stupid gcc - you can't get here from there, all enum values are handled */
-       return _("JACK");
+       return S_("SyncSource|JACK");
 }
 
 float
@@ -572,6 +561,8 @@ ARDOUR::string_to_auto_state (std::string str)
                return Write;
        } else if (str == X_("Touch")) {
                return Touch;
+       } else if (str == X_("Latch")) {
+               return Latch;
        }
 
        fatal << string_compose (_("programming error: %1 %2"), "illegal AutoState string: ", str) << endmsg;
@@ -596,42 +587,13 @@ ARDOUR::auto_state_to_string (AutoState as)
                break;
        case Touch:
                return X_("Touch");
-       }
-
-       fatal << string_compose (_("programming error: %1 %2"), "illegal AutoState type: ", as) << endmsg;
-       abort(); /*NOTREACHED*/
-       return "";
-}
-
-AutoStyle
-ARDOUR::string_to_auto_style (std::string str)
-{
-       if (str == X_("Absolute")) {
-               return Absolute;
-       } else if (str == X_("Trim")) {
-               return Trim;
-       }
-
-       fatal << string_compose (_("programming error: %1 %2"), "illegal AutoStyle string: ", str) << endmsg;
-       abort(); /*NOTREACHED*/
-       return Trim;
-}
-
-string
-ARDOUR::auto_style_to_string (AutoStyle as)
-{
-       /* to be used only for XML serialization, no i18n done */
-
-       switch (as) {
-       case Absolute:
-               return X_("Absolute");
                break;
-       case Trim:
-               return X_("Trim");
+       case Latch:
+               return X_("Latch");
                break;
        }
 
-       fatal << string_compose (_("programming error: %1 %2"), "illegal AutoStyle type: ", as) << endmsg;
+       fatal << string_compose (_("programming error: %1 %2"), "illegal AutoState type: ", as) << endmsg;
        abort(); /*NOTREACHED*/
        return "";
 }
@@ -663,6 +625,8 @@ ARDOUR::native_header_format_extension (HeaderFormat hf, const DataType& type)
         case iXML:
                 return ".ixml";
         case RF64:
+        case RF64_WAV:
+        case MBWF:
                 return ".rf64";
         }
 
@@ -674,11 +638,11 @@ ARDOUR::native_header_format_extension (HeaderFormat hf, const DataType& type)
 bool
 ARDOUR::matching_unsuffixed_filename_exists_in (const string& dir, const string& path)
 {
-        string bws = basename_nosuffix (path);
+       string bws = basename_nosuffix (path);
        struct dirent* dentry;
-       struct stat statbuf;
+       GStatBuf statbuf;
        DIR* dead;
-        bool ret = false;
+       bool ret = false;
 
         if ((dead = ::opendir (dir.c_str())) == 0) {
                 error << string_compose (_("cannot open directory %1 (%2)"), dir, strerror (errno)) << endl;
@@ -696,7 +660,7 @@ ARDOUR::matching_unsuffixed_filename_exists_in (const string& dir, const string&
 
                 string fullpath = Glib::build_filename (dir, dentry->d_name);
 
-                if (::stat (fullpath.c_str(), &statbuf)) {
+                if (g_stat (fullpath.c_str(), &statbuf)) {
                         continue;
                 }
 
@@ -753,15 +717,39 @@ ARDOUR::how_many_dsp_threads ()
 double
 ARDOUR::gain_to_slider_position_with_max (double g, double max_gain)
 {
-        return gain_to_slider_position (g * 2.0/max_gain);
+       return gain_to_position (g * 2.0 / max_gain);
 }
 
 double
 ARDOUR::slider_position_to_gain_with_max (double g, double max_gain)
 {
-       return slider_position_to_gain (g * max_gain/2.0);
+       return position_to_gain (g) * max_gain / 2.0;
+}
+
+#include "sha1.c"
+
+std::string
+ARDOUR::compute_sha1_of_file (std::string path)
+{
+       PBD::ScopedFileDescriptor fd (g_open (path.c_str(), O_RDONLY, 0444));
+       if (fd < 0) {
+               return std::string ();
+       }
+       char buf[4096];
+       ssize_t n_read;
+       char hash[41];
+       Sha1Digest s;
+       sha1_init (&s);
+
+       while ((n_read = ::read(fd, buf, sizeof(buf))) > 0) {
+               sha1_write (&s, (const uint8_t*) buf, n_read);
+       }
+
+       sha1_result_hash (&s, hash);
+       return std::string (hash);
 }
 
 extern "C" {
        void c_stacktrace() { stacktrace (cerr); }
 }
+