2008-04-09 02:05:15 +02:00
|
|
|
|
|
|
|
/*******************************************************************************/
|
|
|
|
/* 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
|
|
|
|
|
2008-05-22 09:05:49 +02:00
|
|
|
#include "util/Mutex.H"
|
2008-04-09 02:05:15 +02:00
|
|
|
|
|
|
|
#include <jack/jack.h>
|
|
|
|
|
|
|
|
typedef jack_nframes_t nframes_t;
|
|
|
|
|
|
|
|
class Port;
|
|
|
|
|
2008-06-02 03:13:18 +02:00
|
|
|
#include "Thread.H"
|
|
|
|
|
2008-04-09 02:05:15 +02:00
|
|
|
class Engine : public Mutex
|
|
|
|
{
|
|
|
|
jack_client_t *_client;
|
|
|
|
|
2008-06-02 03:13:18 +02:00
|
|
|
Thread _thread; /* only used for thread checking */
|
|
|
|
|
2008-04-09 02:05:15 +02:00
|
|
|
int _buffers_dropped; /* buffers dropped because of locking */
|
2008-04-29 19:18:27 +02:00
|
|
|
nframes_t _sample_rate;
|
|
|
|
volatile int _xruns;
|
2008-05-17 23:37:41 +02:00
|
|
|
volatile bool _freewheeling;
|
2008-06-11 02:53:38 +02:00
|
|
|
volatile bool _zombified;
|
2008-04-09 02:05:15 +02:00
|
|
|
|
2008-06-11 02:53:38 +02:00
|
|
|
static void shutdown ( void *arg );
|
|
|
|
void shutdown ( void );
|
2008-04-09 02:05:15 +02:00
|
|
|
static int process ( nframes_t nframes, void *arg );
|
|
|
|
int process ( nframes_t nframes );
|
2008-04-12 21:13:30 +02:00
|
|
|
static int sync ( jack_transport_state_t state, jack_position_t *pos, void *arg );
|
|
|
|
int sync ( jack_transport_state_t state, jack_position_t *pos );
|
2008-04-29 19:18:27 +02:00
|
|
|
static int xrun ( void *arg );
|
|
|
|
int xrun ( void );
|
2008-05-14 22:00:56 +02:00
|
|
|
static void timebase ( jack_transport_state_t state, jack_nframes_t nframes, jack_position_t *pos, int new_pos, void *arg );
|
|
|
|
void timebase ( jack_transport_state_t state, jack_nframes_t nframes, jack_position_t *pos, int new_pos );
|
2008-05-17 23:37:41 +02:00
|
|
|
static void freewheel ( int yes, void *arg );
|
|
|
|
void freewheel ( bool yes );
|
2008-05-20 06:30:08 +02:00
|
|
|
static int buffer_size ( nframes_t nframes, void *arg );
|
|
|
|
int buffer_size ( nframes_t nframes );
|
2008-06-02 03:13:18 +02:00
|
|
|
static void thread_init ( void *arg );
|
|
|
|
void thread_init ( void );
|
2008-04-09 02:05:15 +02:00
|
|
|
|
2008-05-08 03:05:49 +02:00
|
|
|
Engine ( const Engine &rhs );
|
|
|
|
Engine & operator = ( const Engine &rhs );
|
|
|
|
|
2008-06-19 06:14:14 +02:00
|
|
|
void request_locate ( nframes_t frame );
|
|
|
|
|
2008-04-09 02:05:15 +02:00
|
|
|
private:
|
|
|
|
|
|
|
|
friend class Port;
|
2008-04-12 21:50:36 +02:00
|
|
|
friend class Transport;
|
2008-04-09 02:05:15 +02:00
|
|
|
jack_client_t * client ( void ) { return _client; }
|
|
|
|
|
2008-04-27 14:04:37 +02:00
|
|
|
|
2008-04-09 02:05:15 +02:00
|
|
|
public:
|
|
|
|
|
|
|
|
Engine ( );
|
|
|
|
|
2008-07-30 02:20:34 +02:00
|
|
|
const char * init ( void );
|
2008-04-09 02:05:15 +02:00
|
|
|
|
|
|
|
nframes_t nframes ( void ) const { return jack_get_buffer_size( _client ); }
|
|
|
|
float frame_rate ( void ) const { return jack_get_sample_rate( _client ); }
|
2008-04-27 14:04:37 +02:00
|
|
|
nframes_t sample_rate ( void ) const { return _sample_rate; }
|
2008-04-29 19:18:27 +02:00
|
|
|
int xruns ( void ) const { return _xruns; };
|
2008-05-01 13:35:42 +02:00
|
|
|
int dropped ( void ) const { return _buffers_dropped; }
|
2008-05-18 03:45:56 +02:00
|
|
|
bool freewheeling ( void ) const { return _freewheeling; }
|
2008-05-17 23:37:41 +02:00
|
|
|
void freewheeling ( bool yes );
|
2008-06-11 02:53:38 +02:00
|
|
|
bool zombified ( void ) const { return _zombified; }
|
2008-04-09 02:05:15 +02:00
|
|
|
|
2008-04-23 07:35:49 +02:00
|
|
|
float cpu_load ( void ) const { return jack_cpu_load( _client ); }
|
2008-04-09 02:05:15 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
extern Engine * engine;
|