add tim's jack_utils code to rationalize setup of JACK config
[ardour.git] / libs / ardour / globals.cc
index c23cb614feaeaeb583a4a775a9988ffea0bf07b6..d744368fe7c9238992f0b28ce614c1d9a09bf881 100644 (file)
@@ -21,6 +21,7 @@
 #endif
 
 #include <cstdio> // Needed so that libraptor (included in lrdf) won't complain
+#include <cstdlib>
 #include <sys/stat.h>
 #include <sys/types.h>
 #include <sys/time.h>
@@ -71,6 +72,7 @@
 
 #include "ardour/analyser.h"
 #include "ardour/audio_library.h"
+#include "ardour/audio_backend.h"
 #include "ardour/audioengine.h"
 #include "ardour/audioplaylist.h"
 #include "ardour/audioregion.h"
@@ -330,6 +332,8 @@ ARDOUR::init (bool use_windows_vst, bool try_optimization, const char* localedir
        EventTypeMap::instance().new_parameter(EnvelopeAutomation);
        EventTypeMap::instance().new_parameter(MidiCCAutomation);
 
+       ARDOUR::AudioEngine::create ();
+
        return 0;
 }
 
@@ -337,7 +341,7 @@ void
 ARDOUR::init_post_engine ()
 {
        /* the MIDI Manager is needed by the ControlProtocolManager */
-       MIDI::Manager::create (AudioEngine::instance()->jack());
+       MIDI::Manager::create (AudioEngine::instance()->port_engine());
 
        ControlProtocolManager::instance().discover_control_protocols ();
 
@@ -465,19 +469,63 @@ ARDOUR::setup_fpu ()
 #endif
 }
 
+/* this can be changed to modify the translation behaviour for
+   cases where the user has never expressed a preference.
+*/
+static const bool translate_by_default = true;
+
 string
-ARDOUR::translation_kill_path ()
+ARDOUR::translation_enable_path ()
 {
-        return Glib::build_filename (user_config_directory(), ".love_is_the_language_of_audio");
+        return Glib::build_filename (user_config_directory(), ".translate");
 }
 
 bool
-ARDOUR::translations_are_disabled ()
+ARDOUR::translations_are_enabled ()
 {
-        /* if file does not exist, we don't translate (bundled ardour only) */
-        return Glib::file_test (translation_kill_path(), Glib::FILE_TEST_EXISTS) == false;
+       int fd = ::open (ARDOUR::translation_enable_path().c_str(), O_RDONLY);
+
+       if (fd < 0) {
+               return translate_by_default;
+       }
+
+       char c;
+       bool ret = false;
+
+       if (::read (fd, &c, 1) == 1 && c == '1') {
+               ret = true;
+       }
+
+       ::close (fd);
+
+       return ret;
 }
 
+bool
+ARDOUR::set_translations_enabled (bool yn)
+{
+       string i18n_enabler = ARDOUR::translation_enable_path();
+       int fd = ::open (i18n_enabler.c_str(), O_WRONLY|O_CREAT|O_TRUNC, 0644);
+
+       if (fd < 0) {
+               return false;
+       }
+       
+       char c;
+       
+       if (yn) {
+               c = '1';
+       } else {
+               c = '0';
+       }
+       
+       ::write (fd, &c, 1);
+       ::close (fd);
+
+       return true;
+}
+
+
 vector<SyncSource>
 ARDOUR::get_available_sync_options ()
 {