2007-09-16 14:18:15 +02:00
|
|
|
/*
|
|
|
|
* protocolfile.c: IPTV plugin for the Video Disk Recorder
|
|
|
|
*
|
|
|
|
* See the README file for copyright information and how to reach the author.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <vdr/device.h>
|
|
|
|
|
|
|
|
#include "common.h"
|
2007-09-16 15:38:20 +02:00
|
|
|
#include "config.h"
|
2007-09-16 14:18:15 +02:00
|
|
|
#include "protocolfile.h"
|
|
|
|
|
|
|
|
cIptvProtocolFile::cIptvProtocolFile()
|
2013-02-23 14:31:11 +01:00
|
|
|
: fileLocationM(strdup("")),
|
|
|
|
fileDelayM(0),
|
|
|
|
fileStreamM(NULL),
|
|
|
|
isActiveM(false)
|
2007-09-16 14:18:15 +02:00
|
|
|
{
|
2013-02-23 16:12:46 +01:00
|
|
|
debug("cIptvProtocolFile::%s()", __FUNCTION__);
|
2007-09-16 14:18:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cIptvProtocolFile::~cIptvProtocolFile()
|
|
|
|
{
|
2013-02-23 16:12:46 +01:00
|
|
|
debug("cIptvProtocolFile::%s()", __FUNCTION__);
|
2007-09-16 14:18:15 +02:00
|
|
|
// Drop open handles
|
2008-01-05 00:36:37 +01:00
|
|
|
cIptvProtocolFile::Close();
|
2007-09-16 14:18:15 +02:00
|
|
|
// Free allocated memory
|
2013-02-23 14:31:11 +01:00
|
|
|
free(fileLocationM);
|
2007-09-16 14:18:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool cIptvProtocolFile::OpenFile(void)
|
|
|
|
{
|
2013-02-23 16:12:46 +01:00
|
|
|
debug("cIptvProtocolFile::%s()", __FUNCTION__);
|
2007-09-16 14:18:15 +02:00
|
|
|
// Check that stream address is valid
|
2013-02-23 14:31:11 +01:00
|
|
|
if (!isActiveM && !isempty(fileLocationM)) {
|
|
|
|
fileStreamM = fopen(fileLocationM, "rb");
|
|
|
|
ERROR_IF_RET(!fileStreamM || ferror(fileStreamM), "fopen()", return false);
|
2007-09-16 14:18:15 +02:00
|
|
|
// Update active flag
|
2013-02-23 14:31:11 +01:00
|
|
|
isActiveM = true;
|
2007-09-16 14:18:15 +02:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cIptvProtocolFile::CloseFile(void)
|
|
|
|
{
|
2013-02-23 16:12:46 +01:00
|
|
|
debug("cIptvProtocolFile::%s()", __FUNCTION__);
|
2007-09-16 19:31:38 +02:00
|
|
|
// Check that file stream is valid
|
2013-02-23 14:31:11 +01:00
|
|
|
if (isActiveM && !isempty(fileLocationM)) {
|
|
|
|
fclose(fileStreamM);
|
2007-09-16 19:31:38 +02:00
|
|
|
// Update active flag
|
2013-02-23 14:31:11 +01:00
|
|
|
isActiveM = false;
|
2007-09-16 14:18:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-23 14:31:11 +01:00
|
|
|
int cIptvProtocolFile::Read(unsigned char* bufferAddrP, unsigned int bufferLenP)
|
2007-09-16 14:18:15 +02:00
|
|
|
{
|
2013-02-23 16:12:46 +01:00
|
|
|
//debug("cIptvProtocolFile::%s()", __FUNCTION__);
|
2007-09-16 19:31:38 +02:00
|
|
|
// Check errors
|
2013-03-27 21:13:15 +01:00
|
|
|
if (!fileStreamM || ferror(fileStreamM)) {
|
2013-02-23 16:12:46 +01:00
|
|
|
debug("cIptvProtocolFile::%s(): stream error", __FUNCTION__);
|
2007-09-16 19:31:38 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
// Rewind if EOF
|
2013-02-23 14:31:11 +01:00
|
|
|
if (feof(fileStreamM))
|
|
|
|
rewind(fileStreamM);
|
2007-09-16 20:04:15 +02:00
|
|
|
// Sleep before reading the file stream to prevent aggressive busy looping
|
2007-09-28 18:44:59 +02:00
|
|
|
// and prevent transfer ringbuffer overflows
|
2013-02-23 14:31:11 +01:00
|
|
|
if (fileDelayM)
|
|
|
|
cCondWait::SleepMs(fileDelayM);
|
2007-09-16 20:04:15 +02:00
|
|
|
// This check is to prevent a race condition where file may be switched off
|
|
|
|
// during the sleep and buffers are disposed. Check here that the plugin is
|
|
|
|
// still active before accessing the buffers
|
2013-02-23 14:31:11 +01:00
|
|
|
if (isActiveM)
|
|
|
|
return (int)fread(bufferAddrP, sizeof(unsigned char), bufferLenP, fileStreamM);
|
2007-09-20 23:15:08 +02:00
|
|
|
return -1;
|
2007-09-16 14:18:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool cIptvProtocolFile::Open(void)
|
|
|
|
{
|
2013-02-23 16:12:46 +01:00
|
|
|
debug("cIptvProtocolFile::%s()", __FUNCTION__);
|
2007-09-16 19:31:38 +02:00
|
|
|
// Open the file stream
|
2007-09-16 14:18:15 +02:00
|
|
|
OpenFile();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cIptvProtocolFile::Close(void)
|
|
|
|
{
|
2013-02-23 16:12:46 +01:00
|
|
|
debug("cIptvProtocolFile::%s()", __FUNCTION__);
|
2007-09-16 19:31:38 +02:00
|
|
|
// Close the file stream
|
2007-09-16 14:18:15 +02:00
|
|
|
CloseFile();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-02-23 14:31:11 +01:00
|
|
|
bool cIptvProtocolFile::Set(const char* locationP, const int parameterP, const int indexP)
|
2007-09-16 14:18:15 +02:00
|
|
|
{
|
2013-02-23 16:12:46 +01:00
|
|
|
debug("cIptvProtocolFile::%s(%s, %d, %d)", __FUNCTION__, locationP, parameterP, indexP);
|
2013-02-23 14:31:11 +01:00
|
|
|
if (!isempty(locationP)) {
|
2007-09-16 19:31:38 +02:00
|
|
|
// Close the file stream
|
|
|
|
CloseFile();
|
|
|
|
// Update stream address and port
|
2013-02-23 14:31:11 +01:00
|
|
|
fileLocationM = strcpyrealloc(fileLocationM, locationP);
|
|
|
|
fileDelayM = parameterP;
|
2007-09-16 19:31:38 +02:00
|
|
|
// Open the file for input
|
|
|
|
OpenFile();
|
|
|
|
}
|
2007-09-16 14:18:15 +02:00
|
|
|
return true;
|
|
|
|
}
|
2007-10-08 00:54:09 +02:00
|
|
|
|
|
|
|
cString cIptvProtocolFile::GetInformation(void)
|
|
|
|
{
|
2013-02-23 16:12:46 +01:00
|
|
|
//debug("cIptvProtocolFile::%s()", __FUNCTION__);
|
2013-02-23 14:31:11 +01:00
|
|
|
return cString::sprintf("file://%s:%d", fileLocationM, fileDelayM);
|
2007-10-08 00:54:09 +02:00
|
|
|
}
|