2007-09-16 14:18:15 +02:00
|
|
|
/*
|
|
|
|
* protocolfile.h: IPTV plugin for the Video Disk Recorder
|
|
|
|
*
|
|
|
|
* See the README file for copyright information and how to reach the author.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __IPTV_PROTOCOLFILE_H
|
|
|
|
#define __IPTV_PROTOCOLFILE_H
|
|
|
|
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include "protocolif.h"
|
|
|
|
|
|
|
|
class cIptvProtocolFile : public cIptvProtocolIf {
|
|
|
|
private:
|
2007-10-19 23:36:27 +02:00
|
|
|
char* fileLocation;
|
|
|
|
int fileDelay;
|
2007-09-16 16:47:01 +02:00
|
|
|
FILE* fileStream;
|
2007-09-28 18:44:59 +02:00
|
|
|
bool isActive;
|
2007-09-16 14:18:15 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
bool OpenFile(void);
|
|
|
|
void CloseFile(void);
|
|
|
|
|
|
|
|
public:
|
|
|
|
cIptvProtocolFile();
|
|
|
|
virtual ~cIptvProtocolFile();
|
2009-02-26 15:04:12 +01:00
|
|
|
int Read(unsigned char* BufferAddr, unsigned int BufferLen);
|
2008-01-05 00:36:37 +01:00
|
|
|
bool Set(const char* Location, const int Parameter, const int Index);
|
|
|
|
bool Open(void);
|
|
|
|
bool Close(void);
|
|
|
|
cString GetInformation(void);
|
2007-09-16 14:18:15 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __IPTV_PROTOCOLFILE_H
|
|
|
|
|