2003-12-22 13:29:24 +01:00
|
|
|
/*
|
|
|
|
* eit.c: EIT section filter
|
|
|
|
*
|
|
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
|
|
* how to reach the author.
|
|
|
|
*
|
|
|
|
* Original version (as used in VDR before 1.3.0) written by
|
|
|
|
* Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>.
|
|
|
|
* Adapted to 'libsi' for VDR 1.3.0 by Marcel Wiesweg <marcel.wiesweg@gmx.de>.
|
|
|
|
*
|
2004-01-04 12:30:00 +01:00
|
|
|
* $Id: eit.c 1.84 2004/01/02 22:27:29 kls Exp $
|
2003-12-22 13:29:24 +01:00
|
|
|
*/
|
2000-09-03 11:40:00 +02:00
|
|
|
|
|
|
|
#include "eit.h"
|
2003-12-22 13:29:24 +01:00
|
|
|
#include "epg.h"
|
|
|
|
#include "libsi/section.h"
|
|
|
|
#include "libsi/descriptor.h"
|
2001-03-31 15:04:37 +02:00
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
// --- cEIT ------------------------------------------------------------------
|
2000-09-03 11:40:00 +02:00
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
class cEIT : public SI::EIT {
|
2001-03-31 15:04:37 +02:00
|
|
|
public:
|
2003-12-22 13:29:24 +01:00
|
|
|
cEIT(cSchedules *Schedules, int Source, u_char Tid, const u_char *Data);
|
|
|
|
};
|
2001-03-31 15:04:37 +02:00
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
cEIT::cEIT(cSchedules *Schedules, int Source, u_char Tid, const u_char *Data)
|
|
|
|
:SI::EIT(Data, false)
|
2000-10-29 13:17:22 +01:00
|
|
|
{
|
2003-12-22 13:29:24 +01:00
|
|
|
if (!CheckCRCAndParse())
|
|
|
|
return;
|
2000-10-29 13:17:22 +01:00
|
|
|
|
2004-01-04 12:30:00 +01:00
|
|
|
tChannelID channelID(Source, getOriginalNetworkId(), getTransportStreamId(), getServiceId());
|
|
|
|
cChannel *channel = Channels.GetByChannelID(channelID, true);
|
2003-12-22 13:29:24 +01:00
|
|
|
if (!channel)
|
|
|
|
return; // only collect data for known channels
|
2000-10-29 13:17:22 +01:00
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
cEvent *rEvent = NULL;
|
2000-11-26 15:23:39 +01:00
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
cSchedule *pSchedule = (cSchedule *)Schedules->GetSchedule(channelID);
|
|
|
|
if (!pSchedule) {
|
|
|
|
pSchedule = new cSchedule(channelID);
|
|
|
|
Schedules->Add(pSchedule);
|
2002-02-23 17:11:19 +01:00
|
|
|
}
|
2002-02-02 12:13:35 +01:00
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
SI::EIT::Event SiEitEvent;
|
|
|
|
for (SI::Loop::Iterator it; eventLoop.hasNext(it); ) {
|
|
|
|
SiEitEvent = eventLoop.getNext(it);
|
|
|
|
|
|
|
|
cEvent *pEvent = (cEvent *)pSchedule->GetEvent(SiEitEvent.getEventId(), SiEitEvent.getStartTime());
|
|
|
|
if (!pEvent) {
|
|
|
|
// 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.
|
|
|
|
pEvent = pSchedule->AddEvent(new cEvent(channelID, SiEitEvent.getEventId()));
|
|
|
|
if (!pEvent)
|
|
|
|
continue;
|
|
|
|
pEvent->SetTableID(Tid);
|
2002-02-02 12:13:35 +01:00
|
|
|
}
|
2003-12-22 13:29:24 +01:00
|
|
|
else {
|
|
|
|
// We have found an existing event, either through its event ID or its start time.
|
|
|
|
// If the existing event has a zero table ID it was defined externally and shall
|
|
|
|
// not be overwritten.
|
|
|
|
if (pEvent->TableID() == 0x00)
|
|
|
|
continue;
|
|
|
|
// If the new event comes from a table that belongs to an "other TS" and the existing
|
2003-12-25 12:50:22 +01:00
|
|
|
// one comes from an "actual TS" table, let's skip it.
|
|
|
|
#define ISACTUALTS(tid) (tid == 0x4E || (tid & 0x50) == 0x50)
|
|
|
|
if (!ISACTUALTS(Tid) && ISACTUALTS(pEvent->TableID()))
|
|
|
|
continue;
|
|
|
|
// If the new event comes from a "schedule" table and the existing one comes from
|
|
|
|
// a "present/following" table, let's skip it (the p/f table usually contains more
|
|
|
|
// information, like e.g. a description).
|
|
|
|
if ((Tid & 0x50) == 0x50 && pEvent->TableID() == 0x4E || (Tid & 0x60) == 0x60 && pEvent->TableID() == 0x4F)
|
|
|
|
continue;
|
|
|
|
// If both events come from the same "schedule" table and the new event's table id is larger than the
|
|
|
|
// existing one's, let's skip it (higher tids mean "farther in the future" and usually have less information).
|
|
|
|
if (((Tid & 0x50) == 0x50 || (Tid & 0x60) == 0x60) && (pEvent->TableID() & 0xF0) == (Tid & 0xF0) && (Tid > pEvent->TableID()))
|
|
|
|
continue;
|
|
|
|
// If the new event comes from the same table and has the same version number
|
|
|
|
// as the existing one, let's skip it to avoid unnecessary work.
|
|
|
|
// Unfortunately some stations (like, e.g. "Premiere") broadcast their EPG data on several transponders (like
|
|
|
|
// the actual Premiere transponder and the Sat.1/Pro7 transponder), but use different version numbers on
|
|
|
|
// each of them :-( So if one DVB card is tuned to the Premiere transponder, while an other one is tuned
|
2004-01-04 12:30:00 +01:00
|
|
|
// to the Sat.1/Pro7 transponder, events will keep toggling because of the bogus version numbers.
|
2003-12-25 12:50:22 +01:00
|
|
|
if (Tid == pEvent->TableID() && pEvent->Version() == getVersionNumber())
|
2003-12-22 13:29:24 +01:00
|
|
|
continue;
|
2002-02-02 12:13:35 +01:00
|
|
|
}
|
2003-12-25 12:50:22 +01:00
|
|
|
pEvent->SetVersion(getVersionNumber());
|
|
|
|
pEvent->SetTableID(Tid);
|
|
|
|
pEvent->SetEventID(SiEitEvent.getEventId()); // unfortunately some stations use different event ids for the same event in different tables :-(
|
2001-08-17 13:19:10 +02:00
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
SI::Descriptor *d;
|
|
|
|
SI::ExtendedEventDescriptors exGroup;
|
|
|
|
char text[256];
|
|
|
|
for (SI::Loop::Iterator it2; (d = SiEitEvent.eventDescriptors.getNext(it2)); ) {
|
|
|
|
switch (d->getDescriptorTag()) {
|
|
|
|
case SI::ExtendedEventDescriptorTag:
|
|
|
|
exGroup.Add((SI::ExtendedEventDescriptor *)d);
|
|
|
|
d = NULL; //so that it is not deleted
|
|
|
|
break;
|
|
|
|
case SI::ShortEventDescriptorTag: {
|
|
|
|
SI::ShortEventDescriptor *sed = (SI::ShortEventDescriptor *)d;
|
|
|
|
pEvent->SetTitle(sed->name.getText(text));
|
|
|
|
pEvent->SetShortText(sed->text.getText(text));
|
2002-09-15 14:35:32 +02:00
|
|
|
}
|
2003-12-22 13:29:24 +01:00
|
|
|
break;
|
|
|
|
case SI::ContentDescriptorTag:
|
|
|
|
break;
|
|
|
|
case SI::ParentalRatingDescriptorTag:
|
|
|
|
break;
|
|
|
|
case SI::TimeShiftedEventDescriptorTag: {
|
|
|
|
SI::TimeShiftedEventDescriptor *tsed = (SI::TimeShiftedEventDescriptor *)d;
|
|
|
|
cSchedule *rSchedule = (cSchedule *)Schedules->GetSchedule(tChannelID(Source, 0, 0, tsed->getReferenceServiceId()));
|
|
|
|
if (!rSchedule)
|
|
|
|
break;
|
|
|
|
rEvent = (cEvent *)rSchedule->GetEvent(tsed->getReferenceEventId());
|
|
|
|
if (!rEvent)
|
|
|
|
break;
|
|
|
|
pEvent->SetTitle(rEvent->Title());
|
|
|
|
pEvent->SetShortText(rEvent->ShortText());
|
|
|
|
pEvent->SetDescription(rEvent->Description());
|
2001-08-17 13:19:10 +02:00
|
|
|
}
|
2003-12-22 13:29:24 +01:00
|
|
|
break;
|
|
|
|
default: ;
|
|
|
|
}
|
|
|
|
delete d;
|
|
|
|
}
|
2002-10-07 16:24:04 +02:00
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
if (!rEvent) {
|
|
|
|
char buffer[exGroup.getMaximumTextLength()];
|
|
|
|
pEvent->SetDescription(exGroup.getText(buffer));
|
2000-11-01 15:53:00 +01:00
|
|
|
}
|
2002-10-07 16:24:04 +02:00
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
pEvent->SetStartTime(SiEitEvent.getStartTime());
|
|
|
|
pEvent->SetDuration(SiEitEvent.getDuration());
|
|
|
|
pEvent->FixEpgBugs();
|
2001-03-31 15:04:37 +02:00
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
if (isPresentFollowing()) {
|
|
|
|
if (SiEitEvent.getRunningStatus() == SI::RunningStatusPausing || SiEitEvent.getRunningStatus() == SI::RunningStatusRunning)
|
|
|
|
pSchedule->SetPresentEvent(pEvent);
|
|
|
|
else if (SiEitEvent.getRunningStatus() == SI::RunningStatusStartsInAFewSeconds)
|
|
|
|
pSchedule->SetFollowingEvent(pEvent);
|
2002-10-07 16:24:04 +02:00
|
|
|
}
|
|
|
|
}
|
2000-09-03 11:40:00 +02:00
|
|
|
}
|
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
// --- cTDT ------------------------------------------------------------------
|
2003-01-06 14:44:27 +01:00
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
class cTDT : public SI::TDT {
|
2003-01-06 14:44:27 +01:00
|
|
|
private:
|
2003-12-22 13:29:24 +01:00
|
|
|
static cMutex mutex;
|
2003-01-06 14:44:27 +01:00
|
|
|
public:
|
2003-12-22 13:29:24 +01:00
|
|
|
cTDT(const u_char *Data);
|
2003-01-06 14:44:27 +01:00
|
|
|
};
|
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
cMutex cTDT::mutex;
|
2003-01-06 14:44:27 +01:00
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
cTDT::cTDT(const u_char *Data)
|
|
|
|
:SI::TDT(Data, false)
|
2003-01-06 14:44:27 +01:00
|
|
|
{
|
2003-12-22 13:29:24 +01:00
|
|
|
CheckParse();
|
2000-10-29 13:17:22 +01:00
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
time_t sattim = getTime();
|
|
|
|
time_t loctim = time(NULL);
|
2000-10-29 13:17:22 +01:00
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
if (abs(sattim - loctim) > 2) {
|
|
|
|
mutex.Lock();
|
|
|
|
isyslog("System Time = %s (%ld)\n", ctime(&loctim), loctim);
|
|
|
|
isyslog("Local Time = %s (%ld)\n", ctime(&sattim), sattim);
|
|
|
|
if (stime(&sattim) < 0)
|
|
|
|
esyslog("ERROR while setting system time: %m");
|
|
|
|
mutex.Unlock();
|
2002-02-23 17:11:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
// --- cEitFilter ------------------------------------------------------------
|
2002-08-25 10:49:02 +02:00
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
cEitFilter::cEitFilter(void)
|
2001-08-11 09:38:12 +02:00
|
|
|
{
|
2003-12-22 13:29:24 +01:00
|
|
|
Set(0x12, 0x4E, 0xFE); // event info, actual(0x4E)/other(0x4F) TS, present/following
|
2003-12-25 12:50:22 +01:00
|
|
|
Set(0x12, 0x50, 0xF0); // event info, actual TS, schedule(0x50)/schedule for future days(0x5X)
|
|
|
|
Set(0x12, 0x60, 0xF0); // event info, other TS, schedule(0x60)/schedule for future days(0x6X)
|
2003-12-22 13:29:24 +01:00
|
|
|
Set(0x14, 0x70); // TDT
|
2001-08-11 09:38:12 +02:00
|
|
|
}
|
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
void cEitFilter::Process(u_short Pid, u_char Tid, const u_char *Data, int Length)
|
2001-08-11 09:38:12 +02:00
|
|
|
{
|
2003-12-22 13:29:24 +01:00
|
|
|
switch (Pid) {
|
|
|
|
case 0x12: {
|
|
|
|
cSchedulesLock SchedulesLock(true, 10);
|
|
|
|
cSchedules *Schedules = (cSchedules *)cSchedules::Schedules(SchedulesLock);
|
|
|
|
if (Schedules)
|
|
|
|
cEIT EIT(Schedules, Source(), Tid, Data);
|
2000-11-26 15:23:39 +01:00
|
|
|
}
|
2003-12-22 13:29:24 +01:00
|
|
|
break;
|
|
|
|
case 0x14: {
|
|
|
|
if (Setup.SetSystemTime && Setup.TimeTransponder && ISTRANSPONDER(Transponder(), Setup.TimeTransponder))
|
|
|
|
cTDT TDT(Data);
|
2003-04-25 14:46:22 +02:00
|
|
|
}
|
2003-12-22 13:29:24 +01:00
|
|
|
break;
|
|
|
|
}
|
2003-01-06 14:44:27 +01:00
|
|
|
}
|