2002-05-20 11:18:09 +02:00
/*
* eitscan . c : EIT scanner
*
* See the main source file ' vdr . c ' for copyright information and
* how to reach the author .
*
2004-01-05 09:56:54 +01:00
* $ Id : eitscan . c 1.16 2004 / 01 / 05 09 : 51 : 25 kls Exp $
2002-05-20 11:18:09 +02:00
*/
# include "eitscan.h"
2002-08-04 14:57:29 +02:00
# include <stdlib.h>
2002-10-06 10:25:42 +02:00
# include "channels.h"
2002-09-04 17:26:02 +02:00
# include "dvbdevice.h"
2002-05-20 11:18:09 +02:00
2004-01-04 12:30:00 +01:00
// --- cScanData -------------------------------------------------------------
class cScanData : public cListObject {
private :
int source ;
int transponder ;
public :
cScanData ( int Source , int Transponder ) ;
virtual bool operator < ( const cListObject & ListObject ) ;
int Source ( void ) { return source ; }
int Transponder ( void ) { return transponder ; }
cChannel * GetChannel ( void ) ;
} ;
cScanData : : cScanData ( int Source , int Transponder )
{
source = Source ;
transponder = Transponder ;
}
bool cScanData : : operator < ( const cListObject & ListObject )
{
cScanData * sd = ( cScanData * ) & ListObject ;
return source < sd - > source | | source = = sd - > source & & transponder < sd - > transponder ;
}
//XXX this might be done differently later...
cChannel * cScanData : : GetChannel ( void )
{
for ( cChannel * Channel = Channels . First ( ) ; Channel ; Channel = Channels . Next ( Channel ) ) {
if ( ! Channel - > GroupSep ( ) & & Channel - > Source ( ) = = source & & ISTRANSPONDER ( Channel - > Transponder ( ) , transponder ) )
return Channel ;
}
return NULL ;
}
// --- cScanList -------------------------------------------------------------
class cScanList : public cList < cScanData > {
public :
cScanList ( void ) ;
void AddTransponder ( const cChannel * Channel ) ;
} ;
cScanList : : cScanList ( void )
{
for ( cChannel * ch = Channels . First ( ) ; ch ; ch = Channels . Next ( ch ) )
AddTransponder ( ch ) ;
Sort ( ) ;
}
void cScanList : : AddTransponder ( const cChannel * Channel )
{
for ( cScanData * sd = First ( ) ; sd ; sd = Next ( sd ) ) {
if ( sd - > Source ( ) = = Channel - > Source ( ) & & sd - > Transponder ( ) = = Channel - > Transponder ( ) )
return ;
}
Add ( new cScanData ( Channel - > Source ( ) , Channel - > Transponder ( ) ) ) ;
}
// --- cEITScanner -----------------------------------------------------------
2003-05-24 13:38:28 +02:00
cEITScanner EITScanner ;
2002-05-20 11:18:09 +02:00
cEITScanner : : cEITScanner ( void )
{
lastScan = lastActivity = time ( NULL ) ;
2003-09-06 13:22:24 +02:00
currentDevice = NULL ;
2002-05-20 11:18:09 +02:00
currentChannel = 0 ;
2003-03-16 13:29:55 +01:00
memset ( lastChannel , 0 , sizeof ( lastChannel ) ) ;
2004-01-04 12:30:00 +01:00
scanList = NULL ;
2002-05-20 11:18:09 +02:00
}
cEITScanner : : ~ cEITScanner ( )
{
2004-01-04 12:30:00 +01:00
delete scanList ;
2002-05-20 11:18:09 +02:00
}
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 ) {
2004-01-04 12:30:00 +01:00
if ( Channels . Lock ( false , 10 ) ) {
if ( ! scanList )
scanList = new cScanList ( ) ;
for ( bool AnyDeviceSwitched = false ; ! AnyDeviceSwitched ; ) {
cScanData * ScanData = NULL ;
for ( int i = 0 ; i < cDevice : : NumDevices ( ) ; i + + ) {
2004-01-05 09:56:54 +01:00
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 ( ) ) ) {
2004-01-04 12:30:00 +01:00
cChannel * Channel = ScanData - > GetChannel ( ) ;
//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 ( ) ;
currentDevice = Device ; //XXX see also dvbdevice.c!!!
Device - > SwitchChannel ( Channel , false ) ;
currentDevice = NULL ;
scanList - > Del ( ScanData ) ;
ScanData = NULL ;
AnyDeviceSwitched = true ;
2003-05-24 13:38:28 +02:00
}
2003-03-16 13:29:55 +01:00
}
}
}
2004-01-04 12:30:00 +01:00
}
2004-01-05 09:56:54 +01:00
else
break ;
2004-01-04 12:30:00 +01:00
}
if ( ScanData & & ! AnyDeviceSwitched ) {
scanList - > Del ( ScanData ) ;
ScanData = NULL ;
}
if ( ! scanList - > Count ( ) ) {
delete scanList ;
scanList = NULL ;
break ;
2002-05-20 11:18:09 +02:00
}
}
2004-01-04 12:30:00 +01:00
}
2004-01-05 09:56:54 +01:00
lastScan = time ( NULL ) ;
Channels . Unlock ( ) ;
2002-05-20 11:18:09 +02:00
}
}
}