2007-09-12 19:28:59 +02:00
|
|
|
/*
|
|
|
|
* device.h: IPTV plugin for the Video Disk Recorder
|
|
|
|
*
|
|
|
|
* See the README file for copyright information and how to reach the author.
|
|
|
|
*
|
2007-09-29 18:21:04 +02:00
|
|
|
* $Id: device.h,v 1.22 2007/09/29 16:21:05 rahrenbe Exp $
|
2007-09-12 19:28:59 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __IPTV_DEVICE_H
|
|
|
|
#define __IPTV_DEVICE_H
|
|
|
|
|
|
|
|
#include <vdr/device.h>
|
2007-09-14 17:44:25 +02:00
|
|
|
#include "protocoludp.h"
|
2007-09-16 11:38:00 +02:00
|
|
|
#include "protocolhttp.h"
|
2007-09-16 14:18:15 +02:00
|
|
|
#include "protocolfile.h"
|
2007-09-12 19:28:59 +02:00
|
|
|
#include "streamer.h"
|
2007-09-24 15:03:38 +02:00
|
|
|
#include "sectionfilter.h"
|
2007-09-29 01:23:12 +02:00
|
|
|
#include "sidfinder.h"
|
2007-09-19 17:14:32 +02:00
|
|
|
|
2007-09-12 19:28:59 +02:00
|
|
|
class cIptvDevice : public cDevice {
|
|
|
|
// static ones
|
|
|
|
public:
|
|
|
|
static unsigned int deviceCount;
|
|
|
|
static bool Initialize(unsigned int DeviceCount);
|
|
|
|
static unsigned int Count(void);
|
|
|
|
static cIptvDevice *Get(unsigned int DeviceIndex);
|
|
|
|
|
|
|
|
// private parts
|
|
|
|
private:
|
2007-09-19 20:17:30 +02:00
|
|
|
enum {
|
2007-09-24 19:20:58 +02:00
|
|
|
eMaxSecFilterCount = 32
|
2007-09-19 20:17:30 +02:00
|
|
|
};
|
2007-09-12 19:28:59 +02:00
|
|
|
unsigned int deviceIndex;
|
|
|
|
bool isPacketDelivered;
|
|
|
|
bool isOpenDvr;
|
|
|
|
cRingBufferLinear *tsBuffer;
|
2007-09-15 23:27:00 +02:00
|
|
|
int tsBufferPrefill;
|
2007-09-14 17:44:25 +02:00
|
|
|
cIptvProtocolUdp *pUdpProtocol;
|
2007-09-16 11:38:00 +02:00
|
|
|
cIptvProtocolHttp *pHttpProtocol;
|
2007-09-16 14:18:15 +02:00
|
|
|
cIptvProtocolFile *pFileProtocol;
|
2007-09-12 19:28:59 +02:00
|
|
|
cIptvStreamer *pIptvStreamer;
|
2007-09-29 01:23:12 +02:00
|
|
|
cSidFinder *sidFinder;
|
2007-09-12 19:28:59 +02:00
|
|
|
cMutex mutex;
|
2007-09-24 19:20:58 +02:00
|
|
|
cIptvSectionFilter* secfilters[eMaxSecFilterCount];
|
2007-09-12 19:28:59 +02:00
|
|
|
|
|
|
|
// constructor & destructor
|
|
|
|
public:
|
|
|
|
cIptvDevice(unsigned int DeviceIndex);
|
|
|
|
virtual ~cIptvDevice();
|
|
|
|
|
2007-09-21 23:50:52 +02:00
|
|
|
// for channel parsing & buffering
|
2007-09-12 19:28:59 +02:00
|
|
|
private:
|
2007-09-14 17:44:25 +02:00
|
|
|
cString GetChannelSettings(const char *Param, int *IpPort, cIptvProtocolIf* *Protocol);
|
2007-09-12 19:28:59 +02:00
|
|
|
bool ProvidesIptv(const char *Param) const;
|
2007-09-21 23:50:52 +02:00
|
|
|
void ResetBuffering(void);
|
|
|
|
bool IsBuffering(void);
|
2007-09-22 10:17:35 +02:00
|
|
|
bool DeleteFilter(unsigned int Index);
|
2007-09-28 16:49:10 +02:00
|
|
|
bool IsBlackListed(u_short Pid, u_char Tid, u_char Mask);
|
2007-09-12 19:28:59 +02:00
|
|
|
|
|
|
|
// for channel selection
|
|
|
|
public:
|
|
|
|
virtual bool ProvidesSource(int Source) const;
|
|
|
|
virtual bool ProvidesTransponder(const cChannel *Channel) const;
|
|
|
|
virtual bool ProvidesChannel(const cChannel *Channel, int Priority = -1, bool *NeedsDetachReceivers = NULL) const;
|
|
|
|
protected:
|
|
|
|
virtual bool SetChannelDevice(const cChannel *Channel, bool LiveView);
|
|
|
|
|
|
|
|
// for recording
|
|
|
|
protected:
|
|
|
|
virtual bool SetPid(cPidHandle *Handle, int Type, bool On);
|
|
|
|
virtual bool OpenDvr(void);
|
|
|
|
virtual void CloseDvr(void);
|
|
|
|
virtual bool GetTSPacket(uchar *&Data);
|
2007-09-14 18:10:44 +02:00
|
|
|
|
|
|
|
// for section filtering
|
2007-09-21 00:01:42 +02:00
|
|
|
public:
|
2007-09-14 18:10:44 +02:00
|
|
|
virtual int OpenFilter(u_short Pid, u_char Tid, u_char Mask);
|
2007-09-22 10:17:35 +02:00
|
|
|
virtual bool CloseFilter(int Handle);
|
2007-09-21 00:01:42 +02:00
|
|
|
|
|
|
|
// for transponder lock
|
|
|
|
public:
|
|
|
|
virtual bool HasLock(int);
|
2007-09-12 19:28:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __IPTV_DEVICE_H
|