non/Timeline/Disk_Stream.H

111 lines
3.4 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
#include "types.h"
2008-04-07 12:00:16 +02:00
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
#include "Mutex.H"
2008-04-07 10:12:01 +02:00
#include <vector>
using std::vector;
2008-04-19 06:16:21 +02:00
class Track;
class Audio_Sequence;
2008-04-07 10:00:33 +02:00
class Disk_Stream : public Mutex
2008-04-07 09:29:30 +02:00
{
protected:
2008-04-07 12:00:16 +02:00
pthread_t _thread; /* io thread */
2008-04-07 09:29:30 +02:00
Track *_th; /* Track we belong to */
2008-04-07 09:29:30 +02:00
nframes_t _nframes; /* buffer size */
2008-04-07 09:29:30 +02:00
nframes_t _frame; /* location of disk read */
2008-04-07 09:29:30 +02:00
vector < jack_ringbuffer_t * >_rb; /* one ringbuffer for each channel */
2008-04-07 09:29:30 +02:00
sem_t _blocks; /* semaphore to wake the IO thread with */
int _total_blocks; /* total number of blocks that we can buffer */
2008-04-30 05:50:58 +02:00
int _disk_io_blocks; /* the number of blocks to read/write to/from disk at once */
volatile nframes_t _pending_seek; /* absolute transport position to seek to */
volatile int _terminate;
volatile int _xruns;
2008-04-07 09:29:30 +02:00
int channels ( void ) const { return _rb.size(); }
2008-04-19 06:16:21 +02:00
Audio_Sequence * track ( void );
2008-04-07 12:00:16 +02:00
static void *disk_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 ); }
bool wait_for_block ( void )
{
while ( ! sem_wait( &_blocks ) && errno == EINTR );
if ( _terminate )
return false;
else
return true;
}
virtual void disk_thread ( void ) = 0;
2008-04-07 09:29:30 +02:00
void flush ( bool is_output );
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-30 05:50:58 +02:00
static size_t disk_io_kbytes;
2008-04-07 09:29:30 +02:00
int xruns ( void ) { return _xruns; }
2008-04-19 06:16:21 +02:00
Disk_Stream ( Track *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 resize ( nframes_t nframes );
/* void seek ( nframes_t frame ); */
/* bool seek_pending ( void ); */
2008-04-07 09:29:30 +02:00
void run ( void );
2008-04-16 17:35:25 +02:00
void shutdown ( void );
2008-04-07 09:29:30 +02:00
virtual nframes_t process ( nframes_t nframes ) = 0;
int buffer_percent ( void );
2008-04-07 09:29:30 +02:00
};