mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
- Fixed resetting the EPG data versions after changing the preferred languages (thanks to Teemu Rantanen for reporting this one and helping to debug it). - Added LinkageDescriptor handling to 'libsi' (thanks to Marcel Wiesweg). - Added Russian language texts (thanks to Vyacheslav Dikonov). Plugin authors may want to add the new entries to their I18N texts and contact the translators to have their texts translated. Note that there are now 17 different OSD languages, so please make sure you have 17 versions for each of your texts. - Some corrections and additions to the Finnish OSD texts (thanks to Rolf Ahrenberg and Niko Tarnanen). - Fixed a wrong 'delta' value in the call to the shutdown script (thanks to Stephan Epstein for reporting this one). - Activated detection of radio channels (to avoid reports about "channels not being detected that used to be detected with the 'scan' utility or the original 'autopid' patch ;-). - Channels with a zero VPID no longer write a PPID into channels.conf. - Short channel names are now only stored if they actually differ from the full name. - The EPG scan now scans newly found transponders together with already existing ones. - The "Red" button in the "Setup/EPG" menu can now be used to force an EPG scan on a single DVB card system (see MANUAL for details). - The new SVDRP command 'SCAN' can be used to force an EPG scan on a single DVB card system (see MANUAL under Setup/EPG for details). - Fixed handling PID changes in 'Transfer Mode'. - Excess blanks in channel names read from the SDT are now removed. - Fixed wrong parameter settings when scanning NITs for terrestrial transponders (thanks to Christian Tramnitz for pointing out this one). - Fixed some out of bounds parameter settings when scanning NITs for cable and satellite transponders. - Added 'libsi' include files to the 'include' directory, so that plugins can use them (thanks to Marcel Wiesweg). - Now only processing NITs that contain the transponder they are actually broadcast on. - Fixed setting the source type for newly detected terrestrial transponders (thanks to Christian Tramnitz for his support in debugging this).
188 lines
5.9 KiB
C
188 lines
5.9 KiB
C
/*
|
|
* eitscan.c: EIT scanner
|
|
*
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
* how to reach the author.
|
|
*
|
|
* $Id: eitscan.c 1.20 2004/01/17 15:38:11 kls Exp $
|
|
*/
|
|
|
|
#include "eitscan.h"
|
|
#include <stdlib.h>
|
|
#include "channels.h"
|
|
#include "dvbdevice.h"
|
|
#include "interface.h"
|
|
|
|
// --- cScanData -------------------------------------------------------------
|
|
|
|
class cScanData : public cListObject {
|
|
private:
|
|
cChannel channel;
|
|
public:
|
|
cScanData(const cChannel *Channel);
|
|
virtual bool operator< (const cListObject &ListObject);
|
|
int Source(void) { return channel.Source(); }
|
|
int Transponder(void) { return channel.Transponder(); }
|
|
const cChannel *GetChannel(void) { return &channel; }
|
|
};
|
|
|
|
cScanData::cScanData(const cChannel *Channel)
|
|
{
|
|
channel = *Channel;
|
|
}
|
|
|
|
bool cScanData::operator< (const cListObject &ListObject)
|
|
{
|
|
cScanData *sd = (cScanData *)&ListObject;
|
|
return Source() < sd->Source() || Source() == sd->Source() && Transponder() < sd->Transponder();
|
|
}
|
|
|
|
// --- cScanList -------------------------------------------------------------
|
|
|
|
class cScanList : public cList<cScanData> {
|
|
public:
|
|
void AddTransponders(cList<cChannel> *Channels);
|
|
void AddTransponder(const cChannel *Channel);
|
|
};
|
|
|
|
void cScanList::AddTransponders(cList<cChannel> *Channels)
|
|
{
|
|
for (cChannel *ch = Channels->First(); ch; ch = Channels->Next(ch))
|
|
AddTransponder(ch);
|
|
Sort();
|
|
}
|
|
|
|
void cScanList::AddTransponder(const cChannel *Channel)
|
|
{
|
|
if (Channel->Source() && Channel->Transponder()) {
|
|
for (cScanData *sd = First(); sd; sd = Next(sd)) {
|
|
if (sd->Source() == Channel->Source() && ISTRANSPONDER(sd->Transponder(), Channel->Transponder()))
|
|
return;
|
|
}
|
|
Add(new cScanData(Channel));
|
|
}
|
|
}
|
|
|
|
// --- cTransponderList ------------------------------------------------------
|
|
|
|
class cTransponderList : public cList<cChannel> {
|
|
public:
|
|
void AddTransponder(cChannel *Channel);
|
|
};
|
|
|
|
void cTransponderList::AddTransponder(cChannel *Channel)
|
|
{
|
|
for (cChannel *ch = First(); ch; ch = Next(ch)) {
|
|
if (ch->Source() == Channel->Source() && ch->Transponder() == Channel->Transponder()) {
|
|
delete Channel;
|
|
return;
|
|
}
|
|
}
|
|
Add(Channel);
|
|
}
|
|
|
|
// --- cEITScanner -----------------------------------------------------------
|
|
|
|
cEITScanner EITScanner;
|
|
|
|
cEITScanner::cEITScanner(void)
|
|
{
|
|
lastScan = lastActivity = time(NULL);
|
|
currentDevice = NULL;
|
|
currentChannel = 0;
|
|
scanList = NULL;
|
|
transponderList = NULL;
|
|
}
|
|
|
|
cEITScanner::~cEITScanner()
|
|
{
|
|
delete scanList;
|
|
delete transponderList;
|
|
}
|
|
|
|
void cEITScanner::AddTransponder(cChannel *Channel)
|
|
{
|
|
if (!transponderList)
|
|
transponderList = new cTransponderList;
|
|
transponderList->AddTransponder(Channel);
|
|
}
|
|
|
|
void cEITScanner::ForceScan(void)
|
|
{
|
|
lastActivity = 0;
|
|
}
|
|
|
|
void cEITScanner::Activity(void)
|
|
{
|
|
if (currentChannel) {
|
|
Channels.SwitchTo(currentChannel);
|
|
currentChannel = 0;
|
|
}
|
|
lastActivity = time(NULL);
|
|
}
|
|
|
|
void cEITScanner::Process(void)
|
|
{
|
|
if (Setup.EPGScanTimeout && Channels.MaxNumber() > 1) {
|
|
time_t now = time(NULL);
|
|
if (now - lastScan > ScanTimeout && now - lastActivity > ActivityTimeout) {
|
|
if (Channels.Lock(false, 10)) {
|
|
if (!scanList) {
|
|
scanList = new cScanList;
|
|
scanList->AddTransponders(&Channels);
|
|
if (transponderList) {
|
|
scanList->AddTransponders(transponderList);
|
|
delete transponderList;
|
|
transponderList = NULL;
|
|
}
|
|
}
|
|
for (bool AnyDeviceSwitched = false; !AnyDeviceSwitched; ) {
|
|
cScanData *ScanData = NULL;
|
|
for (int i = 0; i < cDevice::NumDevices(); i++) {
|
|
if (ScanData || (ScanData = scanList->First()) != NULL) {
|
|
cDevice *Device = cDevice::GetDevice(i);
|
|
if (Device) {
|
|
if (Device != cDevice::PrimaryDevice() || (cDevice::NumDevices() == 1 && Setup.EPGScanTimeout && now - lastActivity > Setup.EPGScanTimeout * 3600)) {
|
|
if (!(Device->Receiving(true) || Device->Replaying())) {
|
|
const cChannel *Channel = ScanData->GetChannel();
|
|
if (Channel) {
|
|
//XXX if (Device->ProvidesTransponder(Channel)) {
|
|
if ((!Channel->Ca() || Channel->Ca() == Device->DeviceNumber() + 1 || Channel->Ca() >= 0x0100) && Device->ProvidesTransponder(Channel)) { //XXX temporary for the 'sky' plugin
|
|
if (Device == cDevice::PrimaryDevice() && !currentChannel) {
|
|
currentChannel = Device->CurrentChannel();
|
|
Interface->Info("Starting EPG scan");
|
|
}
|
|
currentDevice = Device;//XXX see also dvbdevice.c!!!
|
|
Device->SwitchChannel(Channel, false);
|
|
currentDevice = NULL;
|
|
scanList->Del(ScanData);
|
|
ScanData = NULL;
|
|
AnyDeviceSwitched = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else
|
|
break;
|
|
}
|
|
if (ScanData && !AnyDeviceSwitched) {
|
|
scanList->Del(ScanData);
|
|
ScanData = NULL;
|
|
}
|
|
if (!scanList->Count()) {
|
|
delete scanList;
|
|
scanList = NULL;
|
|
if (lastActivity == 0) // this was a triggered scan
|
|
Activity();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
lastScan = time(NULL);
|
|
Channels.Unlock();
|
|
}
|
|
}
|
|
}
|