Remove empty MIDI regions which result from recordings made when no MIDI data is...
[ardour.git] / libs / ardour / ardour / audioengine.h
index a9c414e5663745be1e29f9c4a5cef5b704d25baf..5e2657c56c427a53739afdc88c3fa1e6ceea22a1 100644 (file)
 #ifndef __ardour_audioengine_h__
 #define __ardour_audioengine_h__
 
+#ifdef WAF_BUILD
+#include "libardour-config.h"
+#endif
+
+#include <iostream>
 #include <list>
 #include <set>
 #include <cmath>
 #include <exception>
 #include <string>
 
-#include <sigc++/signal.h>
 
 #include <glibmm/thread.h>
 
 #include "pbd/rcu.h"
+#include "pbd/signals.h"
 
 #include "ardour/ardour.h"
 #include <jack/jack.h>
 #include <jack/transport.h>
-#include "ardour/types.h"
+
 #include "ardour/data_type.h"
+#include "ardour/session_handle.h"
+#include "ardour/types.h"
+
+#ifdef HAVE_JACK_SESSION
+#include <jack/session.h>
+#endif
 
 namespace ARDOUR {
 
@@ -44,13 +55,14 @@ class InternalPort;
 class MidiPort;
 class Port;
 class Session;
+class ProcessThread;
 
-class AudioEngine : public sigc::trackable
+class AudioEngine : public SessionHandlePtr
 {
    public:
        typedef std::set<Port*> Ports;
 
-       AudioEngine (std::string client_name);
+       AudioEngine (std::string client_name, std::string session_uuid);
        virtual ~AudioEngine ();
 
        jack_client_t* jack() const;
@@ -58,6 +70,8 @@ class AudioEngine : public sigc::trackable
 
        bool is_realtime () const;
 
+        ProcessThread* main_thread() const { return _main_thread; }
+
        std::string client_name() const { return jack_client_name; }
 
        int reconnect_to_jack ();
@@ -72,8 +86,8 @@ class AudioEngine : public sigc::trackable
 
        Glib::Mutex& process_lock() { return _process_lock; }
 
-       nframes_t frame_rate();
-       nframes_t frames_per_cycle();
+       nframes_t frame_rate() const;
+       nframes_t frames_per_cycle() const;
 
        size_t raw_buffer_size(DataType t);
 
@@ -92,6 +106,12 @@ class AudioEngine : public sigc::trackable
                return jack_frame_time (_priv_jack);
        }
 
+       nframes_t frame_time_at_cycle_start () {
+               jack_client_t* _priv_jack = _jack;
+               if (!_running || !_priv_jack) return 0;
+               return jack_last_frame_time (_priv_jack);
+       }
+
        nframes_t transport_frame () const {
                const jack_client_t* _priv_jack = _jack;
                if (!_running || !_priv_jack) return 0;
@@ -110,7 +130,7 @@ class AudioEngine : public sigc::trackable
        }
 
        void set_session (Session *);
-       void remove_session ();
+       void remove_session (); // not a replacement for SessionHandle::session_going_away()
 
        class PortRegistrationFailure : public std::exception {
        public:
@@ -185,32 +205,39 @@ class AudioEngine : public sigc::trackable
 _         the regular process() call to session->process() is not made.
        */
 
-       sigc::signal<int,nframes_t> Freewheel;
+       PBD::Signal1<int,nframes_t> Freewheel;
 
-       sigc::signal<void> Xrun;
+       PBD::Signal0<void> Xrun;
 
        /* this signal is if JACK notifies us of a graph order event */
 
-       sigc::signal<void> GraphReordered;
+       PBD::Signal0<void> GraphReordered;
+
+#ifdef HAVE_JACK_SESSION
+       PBD::Signal1<void,jack_session_event_t *> JackSessionEvent;
+#endif
+
 
        /* this signal is emitted if the sample rate changes */
 
-       sigc::signal<void,nframes_t> SampleRateChanged;
+       PBD::Signal1<void,nframes_t> SampleRateChanged;
 
        /* this signal is sent if JACK ever disconnects us */
 
-       sigc::signal<void> Halted;
+       PBD::Signal1<void,const char*> Halted;
 
        /* these two are emitted when the engine itself is
           started and stopped
        */
 
-       sigc::signal<void> Running;
-       sigc::signal<void> Stopped;
+       PBD::Signal0<void> Running;
+       PBD::Signal0<void> Stopped;
 
-       /* this signal is emitted if a JACK port is registered or unregistered */
+       /** Emitted if a JACK port is registered or unregistered */
+       PBD::Signal0<void> PortRegisteredOrUnregistered;
 
-       sigc::signal<void> PortRegisteredOrUnregistered;
+       /** Emitted if a JACK port is connected or disconnected */
+       PBD::Signal0<void> PortConnectedOrDisconnected;
 
        std::string make_port_name_relative (std::string);
        std::string make_port_name_non_relative (std::string);
@@ -221,7 +248,6 @@ _      the regular process() call to session->process() is not made.
   private:
        static AudioEngine*       _instance;
 
-       ARDOUR::Session*           session;
        jack_client_t* volatile   _jack; /* could be reset to null by SIGPIPE or another thread */
        std::string                jack_client_name;
        Glib::Mutex               _process_lock;
@@ -229,9 +255,9 @@ _      the regular process() call to session->process() is not made.
        bool                       session_remove_pending;
        bool                      _running;
        bool                      _has_run;
-       nframes_t                 _buffer_size;
+       mutable nframes_t         _buffer_size;
        std::map<DataType,size_t> _raw_buffer_sizes;
-       nframes_t                 _frame_rate;
+       mutable nframes_t         _frame_rate;
        /// number of frames between each check for changes in monitor input
        nframes_t                  monitor_check_interval;
        /// time of the last monitor check in frames
@@ -240,8 +266,7 @@ _      the regular process() call to session->process() is not made.
        nframes_t                 _processed_frames;
        bool                      _freewheeling;
        bool                      _freewheel_pending;
-       bool                      _freewheel_thread_registered;
-       sigc::slot<int,nframes_t>  freewheel_action;
+       boost::function<int(nframes_t)>  freewheel_action;
        bool                       reconnect_on_halt;
        int                       _usecs_per_cycle;
 
@@ -250,6 +275,8 @@ _      the regular process() call to session->process() is not made.
        Port *register_port (DataType type, const std::string& portname, bool input);
 
        int    process_callback (nframes_t nframes);
+       void*  process_thread ();
+        void   finish_process_cycle (int status);
        void   remove_all_ports ();
 
        std::string get_nth_physical (DataType type, uint32_t n, int flags);
@@ -257,23 +284,29 @@ _    the regular process() call to session->process() is not made.
        void port_registration_failure (const std::string& portname);
 
        static int  _xrun_callback (void *arg);
+#ifdef HAVE_JACK_SESSION
+       static void _session_callback (jack_session_event_t *event, void *arg);
+#endif
        static int  _graph_order_callback (void *arg);
        static int  _process_callback (nframes_t nframes, void *arg);
+       static void* _process_thread (void *arg);
        static int  _sample_rate_callback (nframes_t nframes, void *arg);
        static int  _bufsize_callback (nframes_t nframes, void *arg);
        static void _jack_timebase_callback (jack_transport_state_t, nframes_t, jack_position_t*, int, void*);
        static int  _jack_sync_callback (jack_transport_state_t, jack_position_t*, void *arg);
        static void _freewheel_callback (int , void *arg);
        static void _registration_callback (jack_port_id_t, int, void *);
+       static void _connect_callback (jack_port_id_t, jack_port_id_t, int, void *);
 
        void jack_timebase_callback (jack_transport_state_t, nframes_t, jack_position_t*, int);
        int  jack_sync_callback (jack_transport_state_t, jack_position_t*);
        int  jack_bufsize_callback (nframes_t);
        int  jack_sample_rate_callback (nframes_t);
 
-       int connect_to_jack (std::string client_name);
+       int connect_to_jack (std::string client_name, std::string session_uuid);
 
        static void halted (void *);
+       static void halted_info (jack_status_t,const char*,void *);
 
        void meter_thread ();
        void start_metering_thread ();
@@ -281,6 +314,8 @@ _      the regular process() call to session->process() is not made.
 
        Glib::Thread*    m_meter_thread;
        static gint      m_meter_exit;
+
+        ProcessThread* _main_thread;
 };
 
 } // namespace ARDOUR