summaryrefslogtreecommitdiff
path: root/libs/backends/jack/jack_connection.h
blob: cd45f3b9badb37b32101a373747a5e5160190d52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#ifndef __libardour_jack_connection_h__
#define __libardour_jack_connection_h__

#include <string>
#include <jack/jack.h>

#include "pbd/signals.h"

namespace ARDOUR {

class JackConnection {
  public:
    JackConnection (const std::string& client_name, const std::string& session_uuid);
    ~JackConnection ();

    const std::string& client_name() const { return _client_name; }

    int open ();
    int close ();
    bool connected () const { return _jack != 0; }

    jack_client_t* jack() const { return _jack; }

    PBD::Signal0<void> Connected;
    PBD::Signal1<void,const char*> Disconnected;

    void halted_callback ();
    void halted_info_callback (jack_status_t, const char*);

    static bool server_running();

  private:
    jack_client_t* volatile _jack;
    std::string _client_name;
    std::string session_uuid;
};

} // namespace 

#endif /* __libardour_jack_connection_h__ */