remove Glib::ustring from libardour; allow any characters except '/' and '\' in paths...
[ardour.git] / libs / ardour / port.cc
index 4e55054a1fc8236b992706eb3089c26ef58a2cf7..efdd297f5e9bd531f5efa84e28a88f132d6048fc 100644 (file)
@@ -34,8 +34,8 @@ using namespace std;
 using namespace ARDOUR;
 
 AudioEngine* Port::_engine = 0;
-nframes_t Port::_port_offset = 0;
 nframes_t Port::_buffer_size = 0;
+bool Port::_connecting_blocked = false;
 
 /** @param n Port short name */
 Port::Port (std::string const & n, DataType t, Flags f)
@@ -99,7 +99,8 @@ Port::get_connections (std::vector<std::string> & c) const
                        c.push_back (jc[i]);
                        ++n;
                }
-               free (jc);
+
+               jack_free (jc);
        }
 
        return n;
@@ -115,6 +116,10 @@ Port::connect (std::string const & other)
 
        int r = 0;
 
+       if (_connecting_blocked) {
+               return r;
+       }
+
        if (sends_output ()) {
                r = jack_connect (_engine->jack (), this_shrt.c_str (), other_shrt.c_str ());
        } else {
@@ -148,7 +153,7 @@ Port::disconnect (std::string const & other)
                _connections.erase (other);
        }
 
-return r;
+        return r;
 }
 
 
@@ -202,21 +207,39 @@ void
 Port::recompute_total_latency () const
 {
 #ifdef HAVE_JACK_RECOMPUTE_LATENCY
-       jack_recompute_total_latency (_engine->jack (), _jack_port);
+       jack_client_t* jack = _engine->jack();
+
+       if (!jack) {
+               return;
+       }
+
+       jack_recompute_total_latency (jack, _jack_port);
 #endif
 }
 
 nframes_t
 Port::total_latency () const
 {
-       return jack_port_get_total_latency (_engine->jack (), _jack_port);
+       jack_client_t* jack = _engine->jack();
+
+       if (!jack) {
+               return 0;
+       }
+
+       return jack_port_get_total_latency (jack, _jack_port);
 }
 
 int
 Port::reestablish ()
 {
+       jack_client_t* jack = _engine->jack();
+
+       if (!jack) {
+               return -1;
+       }
+
        cerr << "RE-REGISTER: " << _name.c_str() << endl;
-       _jack_port = jack_port_register (_engine->jack(), _name.c_str(), type().to_jack_type(), _flags, 0);
+       _jack_port = jack_port_register (jack, _name.c_str(), type().to_jack_type(), _flags, 0);
 
        if (_jack_port == 0) {
                PBD::error << string_compose (_("could not reregister %1"), _name) << endmsg;
@@ -272,3 +295,25 @@ Port::set_latency (nframes_t n)
        jack_port_set_latency (_jack_port, n);
 }
 
+bool
+Port::physically_connected () const
+{
+       const char** jc = jack_port_get_connections (_jack_port);
+
+       if (jc) {
+               for (int i = 0; jc[i]; ++i) {
+
+                        jack_port_t* port = jack_port_by_name (_engine->jack(), jc[i]);
+                        
+                        if (port && (jack_port_flags (port) & JackPortIsPhysical)) {
+                                jack_free (jc);
+                                return true;
+                        }
+               }
+                
+               jack_free (jc);
+       }
+
+        return false;
+}
+