2008-04-07 09:29:30 +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. */
|
|
|
|
|
/*******************************************************************************/
|
|
|
|
|
|
2008-04-07 12:00:16 +02:00
|
|
|
|
#include "Port.H"
|
|
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
2008-04-09 02:05:15 +02:00
|
|
|
|
#include "Engine.H"
|
|
|
|
|
|
2008-04-28 18:19:25 +02:00
|
|
|
|
#include <stdio.h> // sprintf
|
|
|
|
|
|
2008-06-16 02:36:16 +02:00
|
|
|
|
|
|
|
|
|
|
2008-04-07 09:29:30 +02:00
|
|
|
|
/* nframes is the number of frames to buffer */
|
2008-04-07 10:00:33 +02:00
|
|
|
|
Port::Port ( jack_port_t *port )
|
2008-04-07 09:29:30 +02:00
|
|
|
|
{
|
|
|
|
|
_port = port;
|
|
|
|
|
_name = jack_port_name( _port );
|
|
|
|
|
}
|
|
|
|
|
|
2008-04-21 20:01:03 +02:00
|
|
|
|
Port::Port ( const char *name, type_e dir )
|
2008-04-09 02:05:15 +02:00
|
|
|
|
{
|
2008-04-28 18:19:25 +02:00
|
|
|
|
activate( name, dir );
|
|
|
|
|
}
|
2008-04-09 02:05:15 +02:00
|
|
|
|
|
2008-04-28 18:19:25 +02:00
|
|
|
|
static const char *
|
|
|
|
|
name_for_port ( Port::type_e dir, const char *base, int n, const char *type )
|
|
|
|
|
{
|
|
|
|
|
static char pname[256];
|
|
|
|
|
|
|
|
|
|
const char *dir_s = dir == Port::Output ? "out" : "in";
|
|
|
|
|
|
|
|
|
|
if ( type )
|
|
|
|
|
snprintf( pname, sizeof( pname ), "%s/%s-%s-%d", base, type, dir_s, n + 1 );
|
|
|
|
|
else
|
|
|
|
|
snprintf( pname, sizeof( pname ), "%s/%s-%d", base, dir_s, n + 1 );
|
|
|
|
|
|
|
|
|
|
return pname;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Port::Port ( type_e dir, const char *base, int n, const char *type )
|
|
|
|
|
{
|
|
|
|
|
const char *name = name_for_port( dir, base, n, type );
|
|
|
|
|
|
|
|
|
|
activate( name, dir );
|
2008-04-09 02:05:15 +02:00
|
|
|
|
}
|
|
|
|
|
|
2008-04-28 18:19:25 +02:00
|
|
|
|
/* Port::Port ( ) */
|
|
|
|
|
/* { */
|
|
|
|
|
/* _name = NULL; */
|
|
|
|
|
/* _port = NULL; */
|
|
|
|
|
/* } */
|
|
|
|
|
|
2008-04-07 09:29:30 +02:00
|
|
|
|
Port::~Port ( )
|
|
|
|
|
{
|
2008-04-21 20:01:03 +02:00
|
|
|
|
|
|
|
|
|
/* if ( _port ) */
|
|
|
|
|
/* jack_port_unregister( engine->client(), _port ); */
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2008-04-28 18:19:25 +02:00
|
|
|
|
void
|
|
|
|
|
Port::activate ( const char *name, type_e dir )
|
|
|
|
|
{
|
|
|
|
|
_name = name;
|
|
|
|
|
_port = jack_port_register( engine->client(), _name,
|
|
|
|
|
JACK_DEFAULT_AUDIO_TYPE,
|
|
|
|
|
dir == Output ? JackPortIsOutput : JackPortIsInput,
|
|
|
|
|
0 );
|
|
|
|
|
}
|
|
|
|
|
|
2008-04-21 20:01:03 +02:00
|
|
|
|
void
|
|
|
|
|
Port::shutdown ( void )
|
|
|
|
|
{
|
|
|
|
|
if ( _port )
|
|
|
|
|
jack_port_unregister( engine->client(), _port );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** rename port */
|
|
|
|
|
bool
|
|
|
|
|
Port::name ( const char *name )
|
|
|
|
|
{
|
|
|
|
|
_name = name;
|
|
|
|
|
|
|
|
|
|
return 0 == jack_port_set_name( _port, name );
|
2008-04-07 09:29:30 +02:00
|
|
|
|
}
|
|
|
|
|
|
2008-04-28 18:19:25 +02:00
|
|
|
|
bool
|
|
|
|
|
Port::name ( const char *base, int n, const char *type )
|
|
|
|
|
{
|
|
|
|
|
return name( name_for_port( this->type(), base, n, type ) );
|
|
|
|
|
}
|
|
|
|
|
|
2008-04-07 10:00:33 +02:00
|
|
|
|
void
|
2008-04-07 09:29:30 +02:00
|
|
|
|
Port::write ( sample_t *buf, nframes_t nframes )
|
|
|
|
|
{
|
2008-04-07 12:00:16 +02:00
|
|
|
|
memcpy( buffer( nframes ), buf, nframes * sizeof( sample_t ) );
|
2008-04-07 09:29:30 +02:00
|
|
|
|
}
|
|
|
|
|
|
2008-04-16 10:44:31 +02:00
|
|
|
|
void
|
|
|
|
|
Port::read ( sample_t *buf, nframes_t nframes )
|
|
|
|
|
{
|
|
|
|
|
memcpy( buf, buffer( nframes ), nframes * sizeof( sample_t ) );
|
|
|
|
|
}
|
|
|
|
|
|
2008-04-09 04:20:44 +02:00
|
|
|
|
void *
|
2008-04-07 12:00:16 +02:00
|
|
|
|
Port::buffer ( nframes_t nframes )
|
2008-04-07 09:29:30 +02:00
|
|
|
|
{
|
2008-04-09 04:20:44 +02:00
|
|
|
|
return jack_port_get_buffer( _port, nframes );
|
2008-04-07 09:29:30 +02:00
|
|
|
|
}
|
2008-04-30 04:46:07 +02:00
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
Port::silence ( nframes_t nframes )
|
|
|
|
|
{
|
|
|
|
|
memset( buffer( nframes ), 0, nframes * sizeof( sample_t ) );
|
|
|
|
|
}
|