2000-09-03 11:40:00 +02:00
|
|
|
/***************************************************************************
|
|
|
|
eit.c - description
|
|
|
|
-------------------
|
|
|
|
begin : Fri Aug 25 2000
|
|
|
|
copyright : (C) 2000 by Robert Schneider
|
|
|
|
email : Robert.Schneider@web.de
|
2001-08-15 13:56:11 +02:00
|
|
|
|
|
|
|
2001-08-15: Adapted to 'libdtv' by Rolf Hakenes <hakenes@hippomi.de>
|
|
|
|
|
2000-09-03 11:40:00 +02:00
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* *
|
|
|
|
* 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. *
|
|
|
|
* *
|
2001-12-01 14:34:03 +01:00
|
|
|
* $Id: eit.c 1.30 2001/12/01 14:33:04 kls Exp $
|
2000-09-03 11:40:00 +02:00
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#include "eit.h"
|
2000-10-29 13:17:22 +01:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <fstream.h>
|
|
|
|
#include <iomanip.h>
|
2000-09-03 11:40:00 +02:00
|
|
|
#include <iostream.h>
|
2001-06-02 10:47:40 +02:00
|
|
|
#include <limits.h>
|
2000-09-03 11:40:00 +02:00
|
|
|
#include <stdio.h>
|
2000-10-29 13:17:22 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2000-09-03 11:40:00 +02:00
|
|
|
#include <sys/ioctl.h>
|
2000-10-29 13:17:22 +01:00
|
|
|
#include <sys/poll.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
2000-11-26 15:23:39 +01:00
|
|
|
#include "config.h"
|
2001-08-15 13:56:11 +02:00
|
|
|
#include "libdtv/libdtv.h"
|
2000-11-26 15:23:39 +01:00
|
|
|
#include "videodir.h"
|
2000-10-29 13:17:22 +01:00
|
|
|
|
|
|
|
// --- cMJD ------------------------------------------------------------------
|
|
|
|
|
|
|
|
class cMJD {
|
2001-03-31 15:04:37 +02:00
|
|
|
public:
|
|
|
|
cMJD();
|
|
|
|
cMJD(u_char date_hi, u_char date_lo);
|
|
|
|
cMJD(u_char date_hi, u_char date_lo, u_char timehr, u_char timemi, u_char timese);
|
|
|
|
~cMJD();
|
2000-10-29 13:17:22 +01:00
|
|
|
/** */
|
|
|
|
void ConvertToTime();
|
|
|
|
/** */
|
|
|
|
bool SetSystemTime();
|
|
|
|
/** */
|
|
|
|
time_t GetTime_t();
|
|
|
|
protected: // Protected attributes
|
|
|
|
/** */
|
|
|
|
time_t mjdtime;
|
|
|
|
protected: // Protected attributes
|
|
|
|
/** */
|
|
|
|
u_char time_second;
|
|
|
|
protected: // Protected attributes
|
|
|
|
/** */
|
|
|
|
u_char time_minute;
|
|
|
|
protected: // Protected attributes
|
|
|
|
/** */
|
|
|
|
u_char time_hour;
|
|
|
|
protected: // Protected attributes
|
|
|
|
/** */
|
|
|
|
u_short mjd;
|
|
|
|
};
|
|
|
|
|
|
|
|
cMJD::cMJD()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
cMJD::cMJD(u_char date_hi, u_char date_lo)
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
mjd = date_hi << 8 | date_lo;
|
|
|
|
time_hour = time_minute = time_second = 0;
|
|
|
|
ConvertToTime();
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
cMJD::cMJD(u_char date_hi, u_char date_lo, u_char timehr, u_char timemi, u_char timese)
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
mjd = date_hi << 8 | date_lo;
|
|
|
|
time_hour = timehr;
|
|
|
|
time_minute = timemi;
|
|
|
|
time_second = timese;
|
|
|
|
ConvertToTime();
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
cMJD::~cMJD()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/** */
|
|
|
|
void cMJD::ConvertToTime()
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
struct tm t;
|
|
|
|
|
|
|
|
t.tm_sec = time_second;
|
|
|
|
t.tm_min = time_minute;
|
|
|
|
t.tm_hour = time_hour;
|
|
|
|
int k;
|
|
|
|
|
|
|
|
t.tm_year = (int) ((mjd - 15078.2) / 365.25);
|
|
|
|
t.tm_mon = (int) ((mjd - 14956.1 - (int)(t.tm_year * 365.25)) / 30.6001);
|
|
|
|
t.tm_mday = (int) (mjd - 14956 - (int)(t.tm_year * 365.25) - (int)(t.tm_mon * 30.6001));
|
|
|
|
k = (t.tm_mon == 14 || t.tm_mon == 15) ? 1 : 0;
|
|
|
|
t.tm_year = t.tm_year + k;
|
|
|
|
t.tm_mon = t.tm_mon - 1 - k * 12;
|
|
|
|
t.tm_mon--;
|
|
|
|
|
|
|
|
t.tm_isdst = -1;
|
|
|
|
t.tm_gmtoff = 0;
|
|
|
|
|
|
|
|
mjdtime = timegm(&t);
|
|
|
|
|
|
|
|
//isyslog(LOG_INFO, "Time parsed = %s\n", ctime(&mjdtime));
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/** */
|
|
|
|
bool cMJD::SetSystemTime()
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
struct tm *ptm;
|
|
|
|
time_t loctim;
|
|
|
|
|
2001-10-19 13:22:24 +02:00
|
|
|
struct tm tm_r;
|
|
|
|
ptm = localtime_r(&mjdtime, &tm_r);
|
2001-03-31 15:04:37 +02:00
|
|
|
loctim = time(NULL);
|
|
|
|
|
|
|
|
if (abs(mjdtime - loctim) > 2)
|
|
|
|
{
|
|
|
|
isyslog(LOG_INFO, "System Time = %s (%ld)\n", ctime(&loctim), loctim);
|
|
|
|
isyslog(LOG_INFO, "Local Time = %s (%ld)\n", ctime(&mjdtime), mjdtime);
|
|
|
|
if (stime(&mjdtime) < 0)
|
2000-12-08 16:23:32 +01:00
|
|
|
esyslog(LOG_ERR, "ERROR while setting system time: %m");
|
2001-03-31 15:04:37 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
/** */
|
|
|
|
time_t cMJD::GetTime_t()
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
return mjdtime;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// --- cTDT ------------------------------------------------------------------
|
2000-09-03 11:40:00 +02:00
|
|
|
|
2000-10-29 13:17:22 +01:00
|
|
|
class cTDT {
|
2001-03-31 15:04:37 +02:00
|
|
|
public:
|
|
|
|
cTDT(tdt_t *ptdt);
|
|
|
|
~cTDT();
|
2000-10-29 13:17:22 +01:00
|
|
|
/** */
|
|
|
|
bool SetSystemTime();
|
|
|
|
protected: // Protected attributes
|
|
|
|
/** */
|
|
|
|
tdt_t tdt;
|
|
|
|
/** */
|
2001-03-03 13:23:39 +01:00
|
|
|
cMJD mjd; // kls 2001-03-02: made this a member instead of a pointer (it wasn't deleted in the destructor!)
|
2000-10-29 13:17:22 +01:00
|
|
|
};
|
|
|
|
|
2001-08-15 13:56:11 +02:00
|
|
|
#define BCD2DEC(b) (((b >> 4) & 0x0F) * 10 + (b & 0x0F))
|
|
|
|
|
2000-10-29 13:17:22 +01:00
|
|
|
cTDT::cTDT(tdt_t *ptdt)
|
2001-03-03 13:23:39 +01:00
|
|
|
:tdt(*ptdt)
|
2001-08-15 13:56:11 +02:00
|
|
|
,mjd(tdt.utc_mjd_hi, tdt.utc_mjd_lo, BCD2DEC(tdt.utc_time_h), BCD2DEC(tdt.utc_time_m), BCD2DEC(tdt.utc_time_s))
|
2000-10-29 13:17:22 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
cTDT::~cTDT()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
/** */
|
|
|
|
bool cTDT::SetSystemTime()
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
return mjd.SetSystemTime();
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// --- cEventInfo ------------------------------------------------------------
|
|
|
|
|
|
|
|
cEventInfo::cEventInfo(unsigned short serviceid, unsigned short eventid)
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
pTitle = NULL;
|
|
|
|
pSubtitle = NULL;
|
|
|
|
pExtendedDescription = NULL;
|
|
|
|
bIsPresent = bIsFollowing = false;
|
|
|
|
lDuration = 0;
|
|
|
|
tTime = 0;
|
2001-10-28 13:53:44 +01:00
|
|
|
uTableID = 0;
|
2001-03-31 15:04:37 +02:00
|
|
|
uEventID = eventid;
|
|
|
|
uServiceID = serviceid;
|
2000-10-29 13:17:22 +01:00
|
|
|
nChannelNumber = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
cEventInfo::~cEventInfo()
|
|
|
|
{
|
2000-11-01 15:51:00 +01:00
|
|
|
delete pTitle;
|
|
|
|
delete pSubtitle;
|
|
|
|
delete pExtendedDescription;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/** */
|
|
|
|
const char * cEventInfo::GetTitle() const
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
return pTitle;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
/** */
|
|
|
|
const char * cEventInfo::GetSubtitle() const
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
return pSubtitle;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
/** */
|
|
|
|
const char * cEventInfo::GetExtendedDescription() const
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
return pExtendedDescription;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
/** */
|
|
|
|
bool cEventInfo::IsPresent() const
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
return bIsPresent;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
/** */
|
|
|
|
void cEventInfo::SetPresent(bool pres)
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
bIsPresent = pres;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
/** */
|
|
|
|
bool cEventInfo::IsFollowing() const
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
return bIsFollowing;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
2001-10-28 13:53:44 +01:00
|
|
|
|
|
|
|
void cEventInfo::SetTableID(unsigned char tableid)
|
|
|
|
{
|
|
|
|
uTableID = tableid;
|
|
|
|
}
|
|
|
|
|
2000-10-29 13:17:22 +01:00
|
|
|
/** */
|
|
|
|
void cEventInfo::SetFollowing(bool foll)
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
bIsFollowing = foll;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
/** */
|
|
|
|
const char * cEventInfo::GetDate() const
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
static char szDate[25];
|
2000-10-29 13:17:22 +01:00
|
|
|
|
2001-10-19 13:22:24 +02:00
|
|
|
struct tm tm_r;
|
|
|
|
strftime(szDate, sizeof(szDate), "%d.%m.%Y", localtime_r(&tTime, &tm_r));
|
2000-10-29 13:17:22 +01:00
|
|
|
|
2001-03-31 15:04:37 +02:00
|
|
|
return szDate;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
2001-10-28 13:53:44 +01:00
|
|
|
|
|
|
|
const unsigned char cEventInfo::GetTableID(void) const
|
|
|
|
{
|
|
|
|
return uTableID;
|
|
|
|
}
|
|
|
|
|
2000-10-29 13:17:22 +01:00
|
|
|
/** */
|
|
|
|
const char * cEventInfo::GetTimeString() const
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
static char szTime[25];
|
|
|
|
|
2001-10-19 13:22:24 +02:00
|
|
|
struct tm tm_r;
|
|
|
|
strftime(szTime, sizeof(szTime), "%R", localtime_r(&tTime, &tm_r));
|
2001-03-31 15:04:37 +02:00
|
|
|
|
|
|
|
return szTime;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
/** */
|
|
|
|
const char * cEventInfo::GetEndTimeString() const
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
static char szEndTime[25];
|
2000-10-29 13:17:22 +01:00
|
|
|
time_t tEndTime = tTime + lDuration;
|
2001-03-31 15:04:37 +02:00
|
|
|
|
2001-10-19 13:22:24 +02:00
|
|
|
struct tm tm_r;
|
|
|
|
strftime(szEndTime, sizeof(szEndTime), "%R", localtime_r(&tEndTime, &tm_r));
|
2001-03-31 15:04:37 +02:00
|
|
|
|
|
|
|
return szEndTime;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
/** */
|
|
|
|
time_t cEventInfo::GetTime() const
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
return tTime;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
/** */
|
|
|
|
long cEventInfo::GetDuration() const
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
return lDuration;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
/** */
|
|
|
|
unsigned short cEventInfo::GetEventID() const
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
return uEventID;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
/** */
|
2001-09-22 13:07:43 +02:00
|
|
|
void cEventInfo::SetTitle(const char *string)
|
2000-10-29 13:17:22 +01:00
|
|
|
{
|
2001-09-22 13:07:43 +02:00
|
|
|
pTitle = strcpyrealloc(pTitle, string);
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
/** */
|
2001-09-22 13:07:43 +02:00
|
|
|
void cEventInfo::SetSubtitle(const char *string)
|
2000-10-29 13:17:22 +01:00
|
|
|
{
|
2001-09-22 13:07:43 +02:00
|
|
|
pSubtitle = strcpyrealloc(pSubtitle, string);
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
/** */
|
2001-09-22 13:07:43 +02:00
|
|
|
void cEventInfo::SetExtendedDescription(const char *string)
|
2000-10-29 13:17:22 +01:00
|
|
|
{
|
2001-09-22 13:07:43 +02:00
|
|
|
pExtendedDescription = strcpyrealloc(pExtendedDescription, string);
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
/** */
|
|
|
|
void cEventInfo::SetTime(time_t t)
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
tTime = t;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
/** */
|
|
|
|
void cEventInfo::SetDuration(long l)
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
lDuration = l;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
/** */
|
|
|
|
void cEventInfo::SetEventID(unsigned short evid)
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
uEventID = evid;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
/** */
|
|
|
|
void cEventInfo::SetServiceID(unsigned short servid)
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
uServiceID = servid;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/** */
|
|
|
|
unsigned short cEventInfo::GetServiceID() const
|
|
|
|
{
|
|
|
|
return uServiceID;
|
|
|
|
}
|
|
|
|
|
2000-11-26 15:23:39 +01:00
|
|
|
/** */
|
2001-04-01 15:40:43 +02:00
|
|
|
void cEventInfo::Dump(FILE *f, const char *Prefix) const
|
2000-11-26 15:23:39 +01:00
|
|
|
{
|
|
|
|
if (tTime + lDuration >= time(NULL)) {
|
2001-04-01 15:40:43 +02:00
|
|
|
fprintf(f, "%sE %u %ld %ld\n", Prefix, uEventID, tTime, lDuration);
|
2000-11-26 15:23:39 +01:00
|
|
|
if (!isempty(pTitle))
|
2001-04-01 15:40:43 +02:00
|
|
|
fprintf(f, "%sT %s\n", Prefix, pTitle);
|
2000-11-26 15:23:39 +01:00
|
|
|
if (!isempty(pSubtitle))
|
2001-04-01 15:40:43 +02:00
|
|
|
fprintf(f, "%sS %s\n", Prefix, pSubtitle);
|
2000-11-26 15:23:39 +01:00
|
|
|
if (!isempty(pExtendedDescription))
|
2001-04-01 15:40:43 +02:00
|
|
|
fprintf(f, "%sD %s\n", Prefix, pExtendedDescription);
|
|
|
|
fprintf(f, "%se\n", Prefix);
|
2000-11-26 15:23:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-08-17 13:19:10 +02:00
|
|
|
void cEventInfo::FixEpgBugs(void)
|
|
|
|
{
|
2001-10-07 14:02:19 +02:00
|
|
|
// VDR can't usefully handle newline characters in the EPG data, so let's
|
|
|
|
// always convert them to blanks (independent of the setting of EPGBugfixLevel):
|
|
|
|
strreplace(pTitle, '\n', ' ');
|
|
|
|
strreplace(pSubtitle, '\n', ' ');
|
|
|
|
strreplace(pExtendedDescription, '\n', ' ');
|
|
|
|
|
2001-08-17 13:19:10 +02:00
|
|
|
if (Setup.EPGBugfixLevel == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Some TV stations apparently have their own idea about how to fill in the
|
|
|
|
// EPG data. Let's fix their bugs as good as we can:
|
|
|
|
if (pTitle) {
|
|
|
|
|
|
|
|
// Pro7 preceeds the Subtitle with the Title:
|
|
|
|
//
|
|
|
|
// Title
|
|
|
|
// Title / Subtitle
|
|
|
|
//
|
|
|
|
if (pSubtitle && strstr(pSubtitle, pTitle) == pSubtitle) {
|
|
|
|
char *p = pSubtitle + strlen(pTitle);
|
|
|
|
const char *delim = " / ";
|
|
|
|
if (strstr(p, delim) == p) {
|
|
|
|
p += strlen(delim);
|
|
|
|
memmove(pSubtitle, p, strlen(p) + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// VOX and VIVA put the Subtitle in quotes and use either the Subtitle
|
|
|
|
// or the Extended Description field, depending on how long the string is:
|
|
|
|
//
|
|
|
|
// Title
|
|
|
|
// "Subtitle". Extended Description
|
|
|
|
//
|
|
|
|
if ((pSubtitle == NULL) != (pExtendedDescription == NULL)) {
|
|
|
|
char *p = pSubtitle ? pSubtitle : pExtendedDescription;
|
|
|
|
if (*p == '"') {
|
|
|
|
const char *delim = "\".";
|
|
|
|
char *e = strstr(p + 1, delim);
|
|
|
|
if (e) {
|
|
|
|
*e = 0;
|
|
|
|
char *s = strdup(p + 1);
|
|
|
|
char *d = strdup(e + strlen(delim));
|
|
|
|
delete pSubtitle;
|
|
|
|
delete pExtendedDescription;
|
|
|
|
pSubtitle = s;
|
|
|
|
pExtendedDescription = d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// VOX and VIVA put the Extended Description into the Subtitle (preceeded
|
|
|
|
// by a blank) if there is no actual Subtitle and the Extended Description
|
|
|
|
// is short enough:
|
|
|
|
//
|
|
|
|
// Title
|
|
|
|
// Extended Description
|
|
|
|
//
|
|
|
|
if (pSubtitle && !pExtendedDescription) {
|
|
|
|
if (*pSubtitle == ' ') {
|
|
|
|
memmove(pSubtitle, pSubtitle + 1, strlen(pSubtitle));
|
|
|
|
pExtendedDescription = pSubtitle;
|
|
|
|
pSubtitle = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pro7 sometimes repeats the Title in the Subtitle:
|
|
|
|
//
|
|
|
|
// Title
|
|
|
|
// Title
|
|
|
|
//
|
|
|
|
if (pSubtitle && strcmp(pTitle, pSubtitle) == 0) {
|
|
|
|
delete pSubtitle;
|
|
|
|
pSubtitle = NULL;
|
|
|
|
}
|
|
|
|
|
2001-09-22 10:28:33 +02:00
|
|
|
// ZDF.info puts the Subtitle between double quotes, which is nothing
|
|
|
|
// but annoying (some even put a '.' after the closing '"'):
|
|
|
|
//
|
|
|
|
// Title
|
|
|
|
// "Subtitle"[.]
|
|
|
|
//
|
|
|
|
if (pSubtitle && *pSubtitle == '"') {
|
|
|
|
int l = strlen(pSubtitle);
|
|
|
|
if (l > 2 && (pSubtitle[l - 1] == '"' || (pSubtitle[l - 1] == '.' && pSubtitle[l - 2] == '"'))) {
|
|
|
|
memmove(pSubtitle, pSubtitle + 1, l);
|
|
|
|
char *p = strrchr(pSubtitle, '"');
|
|
|
|
if (p)
|
|
|
|
*p = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-08-17 13:19:10 +02:00
|
|
|
if (Setup.EPGBugfixLevel <= 1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Some channels apparently try to do some formatting in the texts,
|
|
|
|
// which is a bad idea because they have no way of knowing the width
|
|
|
|
// of the window that will actually display the text.
|
|
|
|
// Remove excess whitespace:
|
|
|
|
pTitle = compactspace(pTitle);
|
|
|
|
pSubtitle = compactspace(pSubtitle);
|
|
|
|
pExtendedDescription = compactspace(pExtendedDescription);
|
|
|
|
// Remove superfluous hyphens:
|
|
|
|
if (pExtendedDescription) {
|
|
|
|
char *p = pExtendedDescription + 1;
|
|
|
|
while (*p) {
|
|
|
|
if (*p == '-' && *(p + 1) == ' ' && *(p + 2) && islower(*(p - 1)) && islower(*(p + 2))) {
|
|
|
|
if (!startswith(p + 2, "und ")) // special case in German, as in "Lach- und Sachgeschichten"
|
|
|
|
memmove(p, p + 2, strlen(p + 2) + 1);
|
|
|
|
}
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-10-07 14:13:29 +02:00
|
|
|
// Some channels use the ` ("backtick") character, where a ' (single quote)
|
|
|
|
// would be normally used. Actually, "backticks" in normal text don't make
|
|
|
|
// much sense, so let's replace them:
|
|
|
|
strreplace(pTitle, '`', '\'');
|
|
|
|
strreplace(pSubtitle, '`', '\'');
|
|
|
|
strreplace(pExtendedDescription, '`', '\'');
|
|
|
|
|
2001-08-17 13:19:10 +02:00
|
|
|
if (Setup.EPGBugfixLevel <= 2)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Pro7 and Kabel1 apparently are unable to use a calendar/clock,
|
|
|
|
// because all events between 00:00 and 06:00 have the date of the
|
|
|
|
// day before (sometimes even this correction doesn't help).
|
|
|
|
// Channels are recognized by their ServiceID, which may only work
|
|
|
|
// correctly on the ASTRA satellite system.
|
|
|
|
if (uServiceID == 898 // Pro-7
|
|
|
|
|| uServiceID == 899) { // Kabel 1
|
2001-10-19 13:22:24 +02:00
|
|
|
struct tm tm_r;
|
|
|
|
tm *t = localtime_r(&tTime, &tm_r);
|
2001-08-17 13:19:10 +02:00
|
|
|
if (t->tm_hour * 3600 + t->tm_min * 60 + t->tm_sec <= 6 * 3600)
|
|
|
|
tTime += 24 * 3600;
|
|
|
|
}
|
2001-10-07 14:35:25 +02:00
|
|
|
}
|
2001-08-17 13:19:10 +02:00
|
|
|
}
|
|
|
|
|
2000-10-29 13:17:22 +01:00
|
|
|
// --- cSchedule -------------------------------------------------------------
|
|
|
|
|
|
|
|
cSchedule::cSchedule(unsigned short servid)
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
pPresent = pFollowing = NULL;
|
|
|
|
uServiceID = servid;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
cSchedule::~cSchedule()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
/** */
|
|
|
|
const cEventInfo * cSchedule::GetPresentEvent() const
|
|
|
|
{
|
2000-11-01 15:53:00 +01:00
|
|
|
// checking temporal sanity of present event (kls 2000-11-01)
|
|
|
|
time_t now = time(NULL);
|
2001-08-15 13:56:11 +02:00
|
|
|
//XXX if (pPresent && !(pPresent->GetTime() <= now && now <= pPresent->GetTime() + pPresent->GetDuration()))
|
2000-11-01 15:53:00 +01:00
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
cEventInfo *pe = Events.First();
|
|
|
|
while (pe != NULL)
|
|
|
|
{
|
|
|
|
if (pe->GetTime() <= now && now <= pe->GetTime() + pe->GetDuration())
|
2000-11-01 15:53:00 +01:00
|
|
|
return pe;
|
|
|
|
pe = Events.Next(pe);
|
2001-03-31 15:04:37 +02:00
|
|
|
}
|
2000-11-01 15:53:00 +01:00
|
|
|
}
|
2001-08-15 13:56:11 +02:00
|
|
|
return NULL;//XXX
|
2001-03-31 15:04:37 +02:00
|
|
|
return pPresent;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
/** */
|
|
|
|
const cEventInfo * cSchedule::GetFollowingEvent() const
|
|
|
|
{
|
2000-11-01 15:53:00 +01:00
|
|
|
// checking temporal sanity of following event (kls 2000-11-01)
|
|
|
|
time_t now = time(NULL);
|
|
|
|
const cEventInfo *pr = GetPresentEvent(); // must have it verified!
|
2001-08-15 13:56:11 +02:00
|
|
|
if (pr)//XXX if (pFollowing && !(pr && pr->GetTime() + pr->GetDuration() <= pFollowing->GetTime()))
|
2000-11-01 15:53:00 +01:00
|
|
|
{
|
|
|
|
int minDt = INT_MAX;
|
|
|
|
cEventInfo *pe = Events.First(), *pf = NULL;
|
|
|
|
while (pe != NULL)
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
int dt = pe->GetTime() - now;
|
|
|
|
if (dt > 0 && dt < minDt)
|
2000-11-01 15:53:00 +01:00
|
|
|
{
|
|
|
|
minDt = dt;
|
|
|
|
pf = pe;
|
|
|
|
}
|
2001-03-31 15:04:37 +02:00
|
|
|
pe = Events.Next(pe);
|
2000-11-01 15:53:00 +01:00
|
|
|
}
|
|
|
|
return pf;
|
|
|
|
}
|
2001-08-15 13:56:11 +02:00
|
|
|
return NULL;//XXX
|
2001-03-31 15:04:37 +02:00
|
|
|
return pFollowing;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
/** */
|
|
|
|
void cSchedule::SetServiceID(unsigned short servid)
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
uServiceID = servid;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
/** */
|
|
|
|
unsigned short cSchedule::GetServiceID() const
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
return uServiceID;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
/** */
|
2001-10-28 13:53:44 +01:00
|
|
|
const cEventInfo * cSchedule::GetEvent(unsigned short uEventID, time_t tTime) const
|
2000-10-29 13:17:22 +01:00
|
|
|
{
|
2001-10-28 13:53:44 +01:00
|
|
|
// Returns either the event info with the given uEventID or, if that one can't
|
|
|
|
// be found, the one with the given tTime (or NULL if neither can be found)
|
2001-03-31 15:04:37 +02:00
|
|
|
cEventInfo *pe = Events.First();
|
2001-10-28 13:53:44 +01:00
|
|
|
cEventInfo *pt = NULL;
|
2001-03-31 15:04:37 +02:00
|
|
|
while (pe != NULL)
|
|
|
|
{
|
|
|
|
if (pe->GetEventID() == uEventID)
|
|
|
|
return pe;
|
2001-10-28 13:53:44 +01:00
|
|
|
if (tTime > 0 && pe->GetTime() == tTime) // 'tTime < 0' is apparently used with NVOD channels
|
|
|
|
pt = pe;
|
2001-03-31 15:04:37 +02:00
|
|
|
|
|
|
|
pe = Events.Next(pe);
|
|
|
|
}
|
|
|
|
|
2001-10-28 13:53:44 +01:00
|
|
|
return pt;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
/** */
|
2001-10-28 13:53:44 +01:00
|
|
|
const cEventInfo * cSchedule::GetEventAround(time_t tTime) const
|
2000-10-29 13:17:22 +01:00
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
cEventInfo *pe = Events.First();
|
|
|
|
while (pe != NULL)
|
|
|
|
{
|
2001-08-19 14:45:31 +02:00
|
|
|
if (pe->GetTime() <= tTime && tTime <= pe->GetTime() + pe->GetDuration())
|
2001-03-31 15:04:37 +02:00
|
|
|
return pe;
|
|
|
|
|
|
|
|
pe = Events.Next(pe);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
/** */
|
|
|
|
bool cSchedule::SetPresentEvent(cEventInfo *pEvent)
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
if (pPresent != NULL)
|
|
|
|
pPresent->SetPresent(false);
|
|
|
|
pPresent = pEvent;
|
|
|
|
pPresent->SetPresent(true);
|
|
|
|
|
|
|
|
return true;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/** */
|
|
|
|
bool cSchedule::SetFollowingEvent(cEventInfo *pEvent)
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
if (pFollowing != NULL)
|
|
|
|
pFollowing->SetFollowing(false);
|
|
|
|
pFollowing = pEvent;
|
|
|
|
pFollowing->SetFollowing(true);
|
|
|
|
|
|
|
|
return true;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/** */
|
|
|
|
void cSchedule::Cleanup()
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
Cleanup(time(NULL));
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/** */
|
|
|
|
void cSchedule::Cleanup(time_t tTime)
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
cEventInfo *pEvent;
|
|
|
|
for (int a = 0; true ; a++)
|
|
|
|
{
|
|
|
|
pEvent = Events.Get(a);
|
|
|
|
if (pEvent == NULL)
|
|
|
|
break;
|
2001-08-19 14:45:31 +02:00
|
|
|
if (pEvent->GetTime() + pEvent->GetDuration() + 3600 < tTime) // adding one hour for safety
|
2001-03-31 15:04:37 +02:00
|
|
|
{
|
|
|
|
Events.Del(pEvent);
|
|
|
|
a--;
|
|
|
|
}
|
|
|
|
}
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
|
2000-11-26 15:23:39 +01:00
|
|
|
/** */
|
2001-04-01 15:40:43 +02:00
|
|
|
void cSchedule::Dump(FILE *f, const char *Prefix) const
|
2000-11-26 15:23:39 +01:00
|
|
|
{
|
|
|
|
cChannel *channel = Channels.GetByServiceID(uServiceID);
|
|
|
|
if (channel)
|
|
|
|
{
|
2001-04-01 15:40:43 +02:00
|
|
|
fprintf(f, "%sC %u %s\n", Prefix, uServiceID, channel->name);
|
2000-11-26 15:23:39 +01:00
|
|
|
for (cEventInfo *p = Events.First(); p; p = Events.Next(p))
|
2001-04-01 15:40:43 +02:00
|
|
|
p->Dump(f, Prefix);
|
|
|
|
fprintf(f, "%sc\n", Prefix);
|
2000-11-26 15:23:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-10-29 13:17:22 +01:00
|
|
|
// --- cSchedules ------------------------------------------------------------
|
|
|
|
|
|
|
|
cSchedules::cSchedules()
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
pCurrentSchedule = NULL;
|
|
|
|
uCurrentServiceID = 0;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
cSchedules::~cSchedules()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
/** */
|
|
|
|
bool cSchedules::SetCurrentServiceID(unsigned short servid)
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
pCurrentSchedule = GetSchedule(servid);
|
|
|
|
if (pCurrentSchedule == NULL)
|
|
|
|
{
|
|
|
|
Add(new cSchedule(servid));
|
|
|
|
pCurrentSchedule = GetSchedule(servid);
|
|
|
|
if (pCurrentSchedule == NULL)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
uCurrentServiceID = servid;
|
|
|
|
|
|
|
|
return true;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
/** */
|
|
|
|
const cSchedule * cSchedules::GetSchedule() const
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
return pCurrentSchedule;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
/** */
|
|
|
|
const cSchedule * cSchedules::GetSchedule(unsigned short servid) const
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
cSchedule *p;
|
|
|
|
|
|
|
|
p = First();
|
|
|
|
while (p != NULL)
|
|
|
|
{
|
|
|
|
if (p->GetServiceID() == servid)
|
|
|
|
return p;
|
|
|
|
p = Next(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/** */
|
|
|
|
void cSchedules::Cleanup()
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
cSchedule *p;
|
|
|
|
|
|
|
|
p = First();
|
|
|
|
while (p != NULL)
|
|
|
|
{
|
|
|
|
p->Cleanup(time(NULL));
|
|
|
|
p = Next(p);
|
|
|
|
}
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
|
2000-11-26 15:23:39 +01:00
|
|
|
/** */
|
2001-04-01 15:40:43 +02:00
|
|
|
void cSchedules::Dump(FILE *f, const char *Prefix) const
|
2000-11-26 15:23:39 +01:00
|
|
|
{
|
|
|
|
for (cSchedule *p = First(); p; p = Next(p))
|
2001-04-01 15:40:43 +02:00
|
|
|
p->Dump(f, Prefix);
|
2000-11-26 15:23:39 +01:00
|
|
|
}
|
|
|
|
|
2000-10-29 13:17:22 +01:00
|
|
|
// --- cEIT ------------------------------------------------------------------
|
|
|
|
|
|
|
|
class cEIT {
|
|
|
|
private:
|
|
|
|
cSchedules *schedules;
|
2001-03-31 15:04:37 +02:00
|
|
|
public:
|
2001-08-15 13:56:11 +02:00
|
|
|
cEIT(unsigned char *buf, int length, cSchedules *Schedules);
|
2001-03-31 15:04:37 +02:00
|
|
|
~cEIT();
|
2000-10-29 13:17:22 +01:00
|
|
|
/** */
|
2001-08-15 13:56:11 +02:00
|
|
|
int ProcessEIT(unsigned char *buffer);
|
2000-09-03 11:40:00 +02:00
|
|
|
|
2000-10-29 13:17:22 +01:00
|
|
|
protected: // Protected methods
|
|
|
|
/** returns true if this EIT covers a
|
|
|
|
present/following information, false if it's
|
|
|
|
schedule information */
|
|
|
|
bool IsPresentFollowing();
|
|
|
|
protected: // Protected attributes
|
|
|
|
/** Table ID of this EIT struct */
|
|
|
|
u_char tid;
|
|
|
|
};
|
2000-09-03 11:40:00 +02:00
|
|
|
|
2001-08-15 13:56:11 +02:00
|
|
|
cEIT::cEIT(unsigned char * buf, int length, cSchedules *Schedules)
|
2000-09-03 11:40:00 +02:00
|
|
|
{
|
2001-08-15 13:56:11 +02:00
|
|
|
tid = buf[0];
|
2000-10-29 13:17:22 +01:00
|
|
|
schedules = Schedules;
|
2000-09-03 11:40:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cEIT::~cEIT()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/** */
|
2001-08-15 13:56:11 +02:00
|
|
|
int cEIT::ProcessEIT(unsigned char *buffer)
|
|
|
|
{
|
|
|
|
cEventInfo *pEvent, *rEvent = NULL;
|
|
|
|
cSchedule *pSchedule, *rSchedule = NULL;
|
|
|
|
struct LIST *VdrProgramInfos;
|
|
|
|
struct VdrProgramInfo *VdrProgramInfo;
|
|
|
|
|
|
|
|
if (!buffer)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
VdrProgramInfos = createVdrProgramInfos(buffer);
|
|
|
|
|
|
|
|
if (VdrProgramInfos) {
|
|
|
|
for (VdrProgramInfo = (struct VdrProgramInfo *) VdrProgramInfos->Head; VdrProgramInfo; VdrProgramInfo = (struct VdrProgramInfo *) xSucc (VdrProgramInfo)) {
|
|
|
|
pSchedule = (cSchedule *)schedules->GetSchedule(VdrProgramInfo->ServiceID);
|
|
|
|
if (!pSchedule) {
|
|
|
|
schedules->Add(new cSchedule(VdrProgramInfo->ServiceID));
|
|
|
|
pSchedule = (cSchedule *)schedules->GetSchedule(VdrProgramInfo->ServiceID);
|
|
|
|
if (!pSchedule)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (VdrProgramInfo->ReferenceServiceID) {
|
|
|
|
rSchedule = (cSchedule *)schedules->GetSchedule(VdrProgramInfo->ReferenceServiceID);
|
|
|
|
if (!rSchedule)
|
|
|
|
break;
|
|
|
|
rEvent = (cEventInfo *)rSchedule->GetEvent((unsigned short)VdrProgramInfo->ReferenceEventID);
|
|
|
|
if (!rEvent)
|
|
|
|
break;
|
|
|
|
}
|
2001-10-28 13:53:44 +01:00
|
|
|
pEvent = (cEventInfo *)pSchedule->GetEvent((unsigned short)VdrProgramInfo->EventID, VdrProgramInfo->StartTime);
|
2001-08-15 13:56:11 +02:00
|
|
|
if (!pEvent) {
|
2001-09-22 13:07:43 +02:00
|
|
|
// If we don't have that event ID yet, we create a new one.
|
|
|
|
// Otherwise we copy the information into the existing event anyway, because the data might have changed.
|
2001-08-15 13:56:11 +02:00
|
|
|
pSchedule->Events.Add(new cEventInfo(VdrProgramInfo->ServiceID, VdrProgramInfo->EventID));
|
|
|
|
pEvent = (cEventInfo *)pSchedule->GetEvent((unsigned short)VdrProgramInfo->EventID);
|
|
|
|
if (!pEvent)
|
|
|
|
break;
|
2001-10-28 13:53:44 +01:00
|
|
|
pEvent->SetTableID(tid);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// We have found an existing event, either through its event ID or its start time.
|
|
|
|
// If the new event comes from a table that belongs to an "other TS" and the existing
|
|
|
|
// one comes from a "actual TS" table, lets skip it.
|
|
|
|
if ((tid == 0x4F || tid == 0x60) && (pEvent->GetTableID() == 0x4E || pEvent->GetTableID() == 0x50))
|
|
|
|
continue;
|
2001-08-15 13:56:11 +02:00
|
|
|
}
|
2001-09-22 13:07:43 +02:00
|
|
|
if (rEvent) {
|
|
|
|
pEvent->SetTitle(rEvent->GetTitle());
|
|
|
|
pEvent->SetSubtitle(rEvent->GetSubtitle());
|
|
|
|
pEvent->SetExtendedDescription(rEvent->GetExtendedDescription());
|
|
|
|
}
|
|
|
|
else {
|
2001-10-28 13:53:44 +01:00
|
|
|
pEvent->SetTableID(tid);
|
2001-09-22 13:07:43 +02:00
|
|
|
pEvent->SetTitle(VdrProgramInfo->ShortName);
|
|
|
|
pEvent->SetSubtitle(VdrProgramInfo->ShortText);
|
|
|
|
pEvent->SetExtendedDescription(VdrProgramInfo->ExtendedName);
|
|
|
|
//XXX kls 2001-09-22:
|
|
|
|
//XXX apparently this never occurred, so I have simpified ExtendedDescription handling
|
|
|
|
//XXX pEvent->AddExtendedDescription(VdrProgramInfo->ExtendedText);
|
|
|
|
}
|
|
|
|
pEvent->SetTime(VdrProgramInfo->StartTime);
|
|
|
|
pEvent->SetDuration(VdrProgramInfo->Duration);
|
|
|
|
pEvent->FixEpgBugs();
|
2001-08-15 13:56:11 +02:00
|
|
|
if (IsPresentFollowing()) {
|
|
|
|
if ((GetRunningStatus(VdrProgramInfo->Status) == RUNNING_STATUS_PAUSING) || (GetRunningStatus(VdrProgramInfo->Status) == RUNNING_STATUS_RUNNING))
|
|
|
|
pSchedule->SetPresentEvent(pEvent);
|
|
|
|
else if (GetRunningStatus(VdrProgramInfo->Status) == RUNNING_STATUS_AWAITING)
|
|
|
|
pSchedule->SetFollowingEvent(pEvent);
|
|
|
|
}
|
|
|
|
}
|
2001-03-31 15:04:37 +02:00
|
|
|
}
|
|
|
|
|
2001-08-15 13:56:11 +02:00
|
|
|
xMemFreeAll(NULL);
|
2001-03-31 15:04:37 +02:00
|
|
|
return 0;
|
2000-09-03 11:40:00 +02:00
|
|
|
}
|
|
|
|
|
2000-10-29 13:17:22 +01:00
|
|
|
/** returns true if this EIT covers a
|
|
|
|
present/following information, false if it's
|
|
|
|
schedule information */
|
|
|
|
bool cEIT::IsPresentFollowing()
|
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
if (tid == 0x4e || tid == 0x4f)
|
|
|
|
return true;
|
2000-09-03 11:40:00 +02:00
|
|
|
|
2001-03-31 15:04:37 +02:00
|
|
|
return false;
|
2000-09-03 11:40:00 +02:00
|
|
|
}
|
|
|
|
|
2000-10-29 13:17:22 +01:00
|
|
|
// --- cSIProcessor ----------------------------------------------------------
|
|
|
|
|
|
|
|
#define MAX_FILTERS 20
|
2001-08-11 09:38:12 +02:00
|
|
|
#define EPGDATAFILENAME "epg.data"
|
2000-10-29 13:17:22 +01:00
|
|
|
|
2000-11-18 13:57:32 +01:00
|
|
|
int cSIProcessor::numSIProcessors = 0;
|
|
|
|
cSchedules *cSIProcessor::schedules = NULL;
|
|
|
|
cMutex cSIProcessor::schedulesMutex;
|
2001-08-11 09:38:12 +02:00
|
|
|
const char *cSIProcessor::epgDataFileName = EPGDATAFILENAME;
|
2000-11-18 13:57:32 +01:00
|
|
|
|
2000-10-29 13:17:22 +01:00
|
|
|
/** */
|
|
|
|
cSIProcessor::cSIProcessor(const char *FileName)
|
|
|
|
{
|
2001-06-02 10:47:40 +02:00
|
|
|
fileName = strdup(FileName);
|
2000-11-18 13:57:32 +01:00
|
|
|
masterSIProcessor = numSIProcessors == 0; // the first one becomes the 'master'
|
2001-03-31 15:04:37 +02:00
|
|
|
useTStime = false;
|
2000-10-29 13:17:22 +01:00
|
|
|
filters = NULL;
|
2001-06-02 10:47:40 +02:00
|
|
|
if (!numSIProcessors++) // the first one creates it
|
|
|
|
schedules = new cSchedules;
|
|
|
|
filters = (SIP_FILTER *)calloc(MAX_FILTERS, sizeof(SIP_FILTER));
|
|
|
|
SetStatus(true);
|
|
|
|
Start();
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
cSIProcessor::~cSIProcessor()
|
|
|
|
{
|
2001-06-02 10:47:40 +02:00
|
|
|
active = false;
|
|
|
|
Cancel(3);
|
|
|
|
ShutDownFilters();
|
|
|
|
delete filters;
|
|
|
|
if (!--numSIProcessors) // the last one deletes it
|
|
|
|
delete schedules;
|
|
|
|
delete fileName;
|
|
|
|
}
|
|
|
|
|
2001-08-11 09:38:12 +02:00
|
|
|
void cSIProcessor::SetEpgDataFileName(const char *FileName)
|
|
|
|
{
|
|
|
|
epgDataFileName = NULL;
|
|
|
|
if (FileName)
|
|
|
|
epgDataFileName = strdup(DirectoryOk(FileName) ? AddDirectory(FileName, EPGDATAFILENAME) : FileName);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *cSIProcessor::GetEpgDataFileName(void)
|
|
|
|
{
|
2001-08-11 14:51:28 +02:00
|
|
|
if (epgDataFileName)
|
|
|
|
return *epgDataFileName == '/' ? epgDataFileName : AddDirectory(VideoDirectory, epgDataFileName);
|
|
|
|
return NULL;
|
2001-08-11 09:38:12 +02:00
|
|
|
}
|
|
|
|
|
2001-06-02 10:47:40 +02:00
|
|
|
void cSIProcessor::SetStatus(bool On)
|
|
|
|
{
|
|
|
|
LOCK_THREAD;
|
|
|
|
schedulesMutex.Lock();
|
|
|
|
ShutDownFilters();
|
|
|
|
if (On)
|
2000-10-29 13:17:22 +01:00
|
|
|
{
|
2001-06-02 10:47:40 +02:00
|
|
|
AddFilter(0x14, 0x70); // TDT
|
|
|
|
AddFilter(0x14, 0x73); // TOT
|
|
|
|
AddFilter(0x12, 0x4e); // event info, actual TS, present/following
|
|
|
|
AddFilter(0x12, 0x4f); // event info, other TS, present/following
|
|
|
|
AddFilter(0x12, 0x50); // event info, actual TS, schedule
|
|
|
|
AddFilter(0x12, 0x60); // event info, other TS, schedule
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
2001-06-02 10:47:40 +02:00
|
|
|
schedulesMutex.Unlock();
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/** use the vbi device to parse all relevant SI
|
|
|
|
information and let the classes corresponding
|
|
|
|
to the tables write their information to the disk */
|
|
|
|
void cSIProcessor::Action()
|
|
|
|
{
|
2000-11-18 13:57:32 +01:00
|
|
|
dsyslog(LOG_INFO, "EIT processing thread started (pid=%d)%s", getpid(), masterSIProcessor ? " - master" : "");
|
2001-03-31 15:04:37 +02:00
|
|
|
|
2000-11-01 15:53:00 +01:00
|
|
|
time_t lastCleanup = time(NULL);
|
2000-11-26 15:23:39 +01:00
|
|
|
time_t lastDump = time(NULL);
|
2001-03-31 15:04:37 +02:00
|
|
|
|
|
|
|
active = true;
|
|
|
|
|
|
|
|
while(active)
|
|
|
|
{
|
2000-11-18 13:57:32 +01:00
|
|
|
if (masterSIProcessor)
|
2000-10-29 13:17:22 +01:00
|
|
|
{
|
2000-11-18 13:57:32 +01:00
|
|
|
time_t now = time(NULL);
|
2001-10-19 13:22:24 +02:00
|
|
|
struct tm tm_r;
|
|
|
|
struct tm *ptm = localtime_r(&now, &tm_r);
|
2000-11-18 13:57:32 +01:00
|
|
|
if (now - lastCleanup > 3600 && ptm->tm_hour == 5)
|
|
|
|
{
|
|
|
|
LOCK_THREAD;
|
2000-10-29 13:17:22 +01:00
|
|
|
|
2000-11-18 13:57:32 +01:00
|
|
|
schedulesMutex.Lock();
|
|
|
|
isyslog(LOG_INFO, "cleaning up schedules data");
|
|
|
|
schedules->Cleanup();
|
|
|
|
schedulesMutex.Unlock();
|
|
|
|
lastCleanup = now;
|
|
|
|
}
|
2001-08-11 09:38:12 +02:00
|
|
|
if (epgDataFileName && now - lastDump > 600)
|
2000-11-26 15:23:39 +01:00
|
|
|
{
|
|
|
|
LOCK_THREAD;
|
|
|
|
|
|
|
|
schedulesMutex.Lock();
|
2001-08-11 09:38:12 +02:00
|
|
|
FILE *f = fopen(GetEpgDataFileName(), "w");
|
2000-11-26 15:23:39 +01:00
|
|
|
if (f) {
|
|
|
|
schedules->Dump(f);
|
|
|
|
fclose(f);
|
|
|
|
}
|
2001-08-11 09:38:12 +02:00
|
|
|
else
|
|
|
|
LOG_ERROR;
|
2000-11-26 15:23:39 +01:00
|
|
|
lastDump = now;
|
|
|
|
schedulesMutex.Unlock();
|
|
|
|
}
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
|
2001-06-02 10:47:40 +02:00
|
|
|
// set up pfd structures for all active filter
|
|
|
|
pollfd pfd[MAX_FILTERS];
|
|
|
|
int NumUsedFilters = 0;
|
|
|
|
for (int a = 0; a < MAX_FILTERS ; a++)
|
2001-03-31 15:04:37 +02:00
|
|
|
{
|
2001-06-02 10:47:40 +02:00
|
|
|
if (filters[a].inuse)
|
|
|
|
{
|
|
|
|
pfd[NumUsedFilters].fd = filters[a].handle;
|
|
|
|
pfd[NumUsedFilters].events = POLLIN;
|
|
|
|
NumUsedFilters++;
|
|
|
|
}
|
|
|
|
}
|
2001-03-31 15:04:37 +02:00
|
|
|
|
2001-06-02 10:47:40 +02:00
|
|
|
// wait until data becomes ready from the bitfilter
|
|
|
|
if (poll(pfd, NumUsedFilters, 1000) != 0)
|
|
|
|
{
|
|
|
|
for (int a = 0; a < NumUsedFilters ; a++)
|
2001-03-31 15:04:37 +02:00
|
|
|
{
|
2001-06-02 10:47:40 +02:00
|
|
|
if (pfd[a].revents & POLLIN)
|
|
|
|
{
|
|
|
|
/* read section */
|
|
|
|
unsigned char buf[4096+1]; // max. allowed size for any EIT section (+1 for safety ;-)
|
2001-08-12 15:22:48 +02:00
|
|
|
if (safe_read(filters[a].handle, buf, 3) == 3)
|
2001-03-31 15:04:37 +02:00
|
|
|
{
|
2001-06-02 10:47:40 +02:00
|
|
|
int seclen = ((buf[1] & 0x0F) << 8) | (buf[2] & 0xFF);
|
|
|
|
int pid = filters[a].pid;
|
2001-08-12 15:22:48 +02:00
|
|
|
int n = safe_read(filters[a].handle, buf + 3, seclen);
|
2001-06-02 10:47:40 +02:00
|
|
|
if (n == seclen)
|
2000-10-29 13:17:22 +01:00
|
|
|
{
|
2001-06-02 10:47:40 +02:00
|
|
|
seclen += 3;
|
|
|
|
//dsyslog(LOG_INFO, "Received pid 0x%02x with table ID 0x%02x and length of %04d\n", pid, buf[0], seclen);
|
|
|
|
switch (pid)
|
|
|
|
{
|
|
|
|
case 0x14:
|
|
|
|
if (buf[0] == 0x70)
|
|
|
|
{
|
|
|
|
if (useTStime)
|
|
|
|
{
|
|
|
|
cTDT ctdt((tdt_t *)buf);
|
|
|
|
ctdt.SetSystemTime();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*XXX this comes pretty often:
|
|
|
|
else
|
|
|
|
dsyslog(LOG_INFO, "Time packet was not 0x70 but 0x%02x\n", (int)buf[0]);
|
|
|
|
XXX*/
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x12:
|
|
|
|
if (buf[0] != 0x72)
|
|
|
|
{
|
|
|
|
LOCK_THREAD;
|
|
|
|
|
|
|
|
schedulesMutex.Lock();
|
|
|
|
cEIT ceit(buf, seclen, schedules);
|
2001-08-15 13:56:11 +02:00
|
|
|
ceit.ProcessEIT(buf);
|
2001-06-02 10:47:40 +02:00
|
|
|
schedulesMutex.Unlock();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
dsyslog(LOG_INFO, "Received stuffing section in EIT\n");
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
2001-12-01 14:34:03 +01:00
|
|
|
/*XXX this just fills up the log file - shouldn't we rather try to re-sync?
|
2001-06-02 10:47:40 +02:00
|
|
|
else
|
|
|
|
dsyslog(LOG_INFO, "read incomplete section - seclen = %d, n = %d", seclen, n);
|
2001-12-01 14:34:03 +01:00
|
|
|
XXX*/
|
2001-03-31 15:04:37 +02:00
|
|
|
}
|
2001-06-02 10:47:40 +02:00
|
|
|
}
|
2001-03-31 15:04:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-06-02 10:47:40 +02:00
|
|
|
|
|
|
|
dsyslog(LOG_INFO, "EIT processing thread ended (pid=%d)%s", getpid(), masterSIProcessor ? " - master" : "");
|
2000-09-03 11:40:00 +02:00
|
|
|
}
|
|
|
|
|
2000-10-29 13:17:22 +01:00
|
|
|
/** Add a filter with packet identifier pid and
|
|
|
|
table identifer tid */
|
|
|
|
bool cSIProcessor::AddFilter(u_char pid, u_char tid)
|
2000-09-03 11:40:00 +02:00
|
|
|
{
|
2001-06-02 10:47:40 +02:00
|
|
|
dmxSctFilterParams sctFilterParams;
|
|
|
|
sctFilterParams.pid = pid;
|
|
|
|
memset(&sctFilterParams.filter.filter, 0, DMX_FILTER_SIZE);
|
|
|
|
memset(&sctFilterParams.filter.mask, 0, DMX_FILTER_SIZE);
|
|
|
|
sctFilterParams.timeout = 0;
|
|
|
|
sctFilterParams.flags = DMX_IMMEDIATE_START;
|
|
|
|
sctFilterParams.filter.filter[0] = tid;
|
|
|
|
sctFilterParams.filter.mask[0] = 0xFF;
|
2001-03-31 15:04:37 +02:00
|
|
|
|
|
|
|
for (int a = 0; a < MAX_FILTERS; a++)
|
|
|
|
{
|
2001-06-02 10:47:40 +02:00
|
|
|
if (!filters[a].inuse)
|
2001-03-31 15:04:37 +02:00
|
|
|
{
|
|
|
|
filters[a].pid = pid;
|
|
|
|
filters[a].tid = tid;
|
2001-06-02 10:47:40 +02:00
|
|
|
if ((filters[a].handle = open(fileName, O_RDWR | O_NONBLOCK)) >= 0)
|
|
|
|
{
|
|
|
|
if (ioctl(filters[a].handle, DMX_SET_FILTER, &sctFilterParams) >= 0)
|
|
|
|
filters[a].inuse = true;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
esyslog(LOG_ERR, "ERROR: can't set filter");
|
|
|
|
close(filters[a].handle);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// dsyslog(LOG_INFO, " Registered filter handle %04x, pid = %02d, tid = %02d", filters[a].handle, filters[a].pid, filters[a].tid);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
esyslog(LOG_ERR, "ERROR: can't open filter handle");
|
|
|
|
return false;
|
|
|
|
}
|
2001-03-31 15:04:37 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2001-06-02 10:47:40 +02:00
|
|
|
esyslog(LOG_ERR, "ERROR: too many filters");
|
2001-03-31 15:04:37 +02:00
|
|
|
|
|
|
|
return false;
|
2000-09-03 11:40:00 +02:00
|
|
|
}
|
|
|
|
|
2000-10-29 13:17:22 +01:00
|
|
|
/** set whether local systems time should be
|
|
|
|
set by the received TDT or TOT packets */
|
|
|
|
bool cSIProcessor::SetUseTSTime(bool use)
|
2000-09-03 11:40:00 +02:00
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
useTStime = use;
|
|
|
|
return useTStime;
|
2000-09-03 11:40:00 +02:00
|
|
|
}
|
2000-10-29 13:17:22 +01:00
|
|
|
|
|
|
|
/** */
|
2001-06-02 10:47:40 +02:00
|
|
|
bool cSIProcessor::ShutDownFilters(void)
|
2000-09-03 11:40:00 +02:00
|
|
|
{
|
2001-03-31 15:04:37 +02:00
|
|
|
for (int a = 0; a < MAX_FILTERS; a++)
|
|
|
|
{
|
2001-06-02 10:47:40 +02:00
|
|
|
if (filters[a].inuse)
|
2001-03-31 15:04:37 +02:00
|
|
|
{
|
2001-06-02 10:47:40 +02:00
|
|
|
close(filters[a].handle);
|
2001-03-31 15:04:37 +02:00
|
|
|
// dsyslog(LOG_INFO, "Deregistered filter handle %04x, pid = %02d, tid = %02d", filters[a].handle, filters[a].pid, filters[a].tid);
|
|
|
|
filters[a].inuse = false;
|
|
|
|
}
|
|
|
|
}
|
2000-10-29 13:17:22 +01:00
|
|
|
|
2001-06-02 10:47:40 +02:00
|
|
|
return true; // there's no real 'boolean' to return here...
|
2000-09-03 11:40:00 +02:00
|
|
|
}
|
|
|
|
|
2000-10-29 13:17:22 +01:00
|
|
|
/** */
|
|
|
|
bool cSIProcessor::SetCurrentServiceID(unsigned short servid)
|
2000-09-03 11:40:00 +02:00
|
|
|
{
|
2000-10-29 13:17:22 +01:00
|
|
|
LOCK_THREAD;
|
|
|
|
return schedules ? schedules->SetCurrentServiceID(servid) : false;
|
2000-09-03 11:40:00 +02:00
|
|
|
}
|