116 lines
4.7 KiB
C++
116 lines
4.7 KiB
C++
|
|
/*******************************************************************************/
|
|
/* Copyright (C) 2008 Jonathan Moore Liles */
|
|
/* */
|
|
/* This program is free software; you can redistribute it and/or modify it */
|
|
/* under the terms of the GNU General Public License as published by the */
|
|
/* Free Software Foundation; either version 2 of the License, or (at your */
|
|
/* option) any later version. */
|
|
/* */
|
|
/* This program is distributed in the hope that it will be useful, but WITHOUT */
|
|
/* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or */
|
|
/* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for */
|
|
/* more details. */
|
|
/* */
|
|
/* You should have received a copy of the GNU General Public License along */
|
|
/* with This program; see the file COPYING. If not,write to the Free Software */
|
|
/* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
/*******************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include <jack/jack.h>
|
|
#include <jack/midiport.h>
|
|
|
|
typedef jack_nframes_t nframes_t;
|
|
typedef jack_default_audio_sample_t sample_t;
|
|
|
|
#include <list>
|
|
|
|
namespace JACK
|
|
{
|
|
class Port;
|
|
class Client
|
|
{
|
|
std::list <JACK::Port*> _active_ports;
|
|
|
|
jack_client_t *_client;
|
|
|
|
// nframes_t _sample_rate;
|
|
volatile int _xruns;
|
|
volatile bool _freewheeling;
|
|
volatile bool _zombified;
|
|
|
|
static int sample_rate_changed ( nframes_t srate, void *arg );
|
|
virtual int sample_rate_changed ( nframes_t srate ) { return 0; }
|
|
static void port_connect ( jack_port_id_t a, jack_port_id_t b, int connect, void *arg );
|
|
virtual void port_connect ( jack_port_id_t a, jack_port_id_t b, int connect ) { }
|
|
static void shutdown ( void *arg );
|
|
virtual void shutdown ( void ) = 0;
|
|
static int process ( nframes_t nframes, void *arg );
|
|
virtual int process ( nframes_t nframes ) = 0;
|
|
static int sync ( jack_transport_state_t state, jack_position_t *pos, void *arg );
|
|
virtual int sync ( jack_transport_state_t, jack_position_t * ) { return 1; }
|
|
static int xrun ( void *arg );
|
|
virtual int xrun ( void ) = 0;
|
|
static void timebase ( jack_transport_state_t state, jack_nframes_t nframes, jack_position_t *pos, int new_pos, void *arg );
|
|
virtual void timebase ( jack_transport_state_t, jack_nframes_t, jack_position_t *, int ) { }
|
|
static void freewheel ( int yes, void *arg );
|
|
virtual void freewheel ( bool yes ) = 0;
|
|
static int buffer_size ( nframes_t nframes, void *arg );
|
|
virtual int buffer_size ( nframes_t nframes ) = 0;
|
|
static void thread_init ( void *arg );
|
|
virtual void thread_init ( void ) = 0;
|
|
|
|
Client ( const Client &rhs );
|
|
Client & operator = ( const Client &rhs );
|
|
|
|
void freeze_ports ( void );
|
|
void thaw_ports ( void );
|
|
|
|
protected:
|
|
|
|
void deactivate ( void );
|
|
|
|
private:
|
|
|
|
friend class Port;
|
|
friend class Transport;
|
|
|
|
public:
|
|
|
|
enum options { DEFAULT = 0,
|
|
SLOW_SYNC = 1 << 0,
|
|
TIMEBASE_MASTER = 1 << 1 };
|
|
|
|
jack_client_t * jack_client ( void ) { return _client; }
|
|
|
|
void port_added ( JACK::Port * p );
|
|
void port_removed ( JACK::Port *p );
|
|
|
|
Client ( );
|
|
virtual ~Client ( );
|
|
|
|
const char * init ( const char *client_name, unsigned int opts = 0 );
|
|
const char * name ( const char * );
|
|
|
|
void close ( void );
|
|
nframes_t nframes ( void ) const { return jack_get_buffer_size( _client ); }
|
|
// float frame_rate ( void ) const { return jack_get_sample_rate( _client ); }
|
|
nframes_t sample_rate ( void ) const { return jack_get_sample_rate( _client ); }
|
|
int xruns ( void ) const { return _xruns; };
|
|
bool freewheeling ( void ) const { return _freewheeling; }
|
|
void freewheeling ( bool yes );
|
|
bool zombified ( void ) const { return _zombified; }
|
|
float cpu_load ( void ) const { return jack_cpu_load( _client ); }
|
|
|
|
void transport_stop ( void );
|
|
void transport_start ( void );
|
|
void transport_locate ( nframes_t frame );
|
|
jack_transport_state_t transport_query ( jack_position_t *pos );
|
|
|
|
|
|
static int maximum_name_length ( void ) { return jack_client_name_size(); }
|
|
};
|
|
}
|