non/Timeline/Disk_Stream.H

94 lines
3.0 KiB
C++
Raw Normal View History

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. */
/*******************************************************************************/
#pragma once
2008-04-07 12:00:16 +02:00
#include "Port.H" // for nframes_t
2008-04-07 09:29:30 +02:00
#include <jack/ringbuffer.h>
#include <semaphore.h>
2008-04-07 12:00:16 +02:00
#include <errno.h>
#include <pthread.h>
2008-04-07 09:29:30 +02:00
2008-04-07 10:12:01 +02:00
#include <vector>
using std::vector;
class Track_Header;
2008-04-07 12:00:16 +02:00
class Audio_Track;
2008-04-07 10:00:33 +02:00
2008-04-07 09:29:30 +02:00
class Disk_Stream
{
2008-04-07 12:00:16 +02:00
pthread_t _thread;
Track_Header *_th; /* Track_Header we whould be playing */
2008-04-07 09:29:30 +02:00
nframes_t _nframes;
2008-04-07 12:00:16 +02:00
nframes_t _frame;
2008-04-07 09:29:30 +02:00
vector <jack_ringbuffer_t *> _rb;
// jack_ringbuffer_t *_rb; /* One interleaved ringbuffer for all channels */
sem_t _blocks; /* semaphore to wake the IO thread with */
// volatile nframes_t _seek_request;
2008-04-07 09:29:30 +02:00
int channels ( void ) const { return _rb.size(); }
2008-04-07 12:00:16 +02:00
Audio_Track * track ( void );
static void *io_thread ( void *arg );
2008-04-07 10:00:33 +02:00
2008-04-07 09:29:30 +02:00
protected:
void block_processed ( void ) { sem_post( &_blocks ); }
2008-04-07 12:00:16 +02:00
bool wait_for_block ( void ) { while ( sem_wait( &_blocks ) == EINTR ); return true; }
2008-04-07 09:29:30 +02:00
public:
2008-04-07 10:00:33 +02:00
/* must be set before any Disk_Streams are created */
2008-04-07 09:29:30 +02:00
static float seconds_to_buffer;
2008-04-07 12:00:16 +02:00
Disk_Stream ( Track_Header *th, float frame_rate, nframes_t nframes, int channels );
2008-04-07 09:29:30 +02:00
2008-04-07 10:00:33 +02:00
virtual ~Disk_Stream ( );
2008-04-07 09:29:30 +02:00
void
2008-04-07 10:00:33 +02:00
resize ( nframes_t nframes )
2008-04-07 09:29:30 +02:00
{
2008-04-07 10:00:33 +02:00
if ( nframes != _nframes )
/* FIXME: to something here! */;
2008-04-07 09:29:30 +02:00
}
void
seek ( nframes_t frame )
{
_frame = frame;
2008-04-07 10:00:33 +02:00
/* FIXME: need to signal the IO thread somehow? */
2008-04-07 09:29:30 +02:00
}
void run ( void );
2008-04-07 10:00:33 +02:00
void read_block ( sample_t *buf );
void io_thread ( void );
nframes_t process ( nframes_t nframes );
2008-04-07 09:29:30 +02:00
};