2000-09-03 11:40:00 +02:00
/***************************************************************************
eit . h - 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-10-28 13:53:44 +01:00
* $ Id : eit . h 1.12 2001 / 10 / 28 12 : 33 : 10 kls Exp $
2000-09-03 11:40:00 +02:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
# ifndef __EIT_H
# define __EIT_H
2000-10-29 13:17:22 +01:00
# include "thread.h"
# include "tools.h"
2000-09-03 11:40:00 +02:00
2000-10-29 13:17:22 +01:00
class cEventInfo : public cListObject {
friend class cSchedule ;
friend class cEIT ;
private :
2001-10-28 13:53:44 +01:00
unsigned char uTableID ; // Table ID this event came from
2000-10-29 13:17:22 +01:00
unsigned short uServiceID ; // Service ID of program for that event
bool bIsFollowing ; // true if this is the next event on this channel
bool bIsPresent ; // true if this is the present event running
char * pExtendedDescription ; // Extended description of this event
char * pSubtitle ; // Subtitle of event
char * pTitle ; // Title of event
unsigned short uEventID ; // Event ID of this event
long lDuration ; // duration of event in seconds
time_t tTime ; // Start time
int nChannelNumber ; // the actual channel number from VDR's channel list (used in cMenuSchedule for sorting by channel number)
protected :
2001-10-28 13:53:44 +01:00
void SetTableID ( unsigned char tableid ) ;
2000-10-29 13:17:22 +01:00
void SetFollowing ( bool foll ) ;
void SetPresent ( bool pres ) ;
2001-09-22 13:07:43 +02:00
void SetTitle ( const char * string ) ;
2000-10-29 13:17:22 +01:00
void SetServiceID ( unsigned short servid ) ;
void SetEventID ( unsigned short evid ) ;
void SetDuration ( long l ) ;
void SetTime ( time_t t ) ;
2001-09-22 13:07:43 +02:00
void SetExtendedDescription ( const char * string ) ;
void SetSubtitle ( const char * string ) ;
2000-10-29 13:17:22 +01:00
cEventInfo ( unsigned short serviceid , unsigned short eventid ) ;
2001-03-31 15:04:37 +02:00
public :
2000-10-29 13:17:22 +01:00
~ cEventInfo ( ) ;
2001-10-28 13:53:44 +01:00
const unsigned char GetTableID ( void ) const ;
2000-10-29 13:17:22 +01:00
const char * GetTimeString ( void ) const ;
const char * GetEndTimeString ( void ) const ;
const char * GetDate ( void ) const ;
bool IsFollowing ( void ) const ;
bool IsPresent ( void ) const ;
const char * GetExtendedDescription ( void ) const ;
const char * GetSubtitle ( void ) const ;
const char * GetTitle ( void ) const ;
unsigned short GetEventID ( void ) const ;
long GetDuration ( void ) const ;
time_t GetTime ( void ) const ;
unsigned short GetServiceID ( void ) const ;
int GetChannelNumber ( void ) const { return nChannelNumber ; }
void SetChannelNumber ( int ChannelNumber ) const { ( ( cEventInfo * ) this ) - > nChannelNumber = ChannelNumber ; } // doesn't modify the EIT data, so it's ok to make it 'const'
2001-04-01 15:40:43 +02:00
void Dump ( FILE * f , const char * Prefix = " " ) const ;
2001-08-17 13:19:10 +02:00
void FixEpgBugs ( void ) ;
2000-10-29 13:17:22 +01:00
} ;
class cSchedule : public cListObject {
friend class cSchedules ;
friend class cEIT ;
private :
cEventInfo * pPresent ;
cEventInfo * pFollowing ;
unsigned short uServiceID ;
cList < cEventInfo > Events ;
protected :
void SetServiceID ( unsigned short servid ) ;
bool SetFollowingEvent ( cEventInfo * pEvent ) ;
bool SetPresentEvent ( cEventInfo * pEvent ) ;
void Cleanup ( time_t tTime ) ;
void Cleanup ( void ) ;
cSchedule ( unsigned short servid = 0 ) ;
2001-03-31 15:04:37 +02:00
public :
2000-10-29 13:17:22 +01:00
~ cSchedule ( ) ;
const cEventInfo * GetPresentEvent ( void ) const ;
const cEventInfo * GetFollowingEvent ( void ) const ;
unsigned short GetServiceID ( void ) const ;
2001-10-28 13:53:44 +01:00
const cEventInfo * GetEvent ( unsigned short uEventID , time_t tTime = 0 ) const ;
const cEventInfo * GetEventAround ( time_t tTime ) const ;
2000-10-29 13:17:22 +01:00
const cEventInfo * GetEventNumber ( int n ) const { return Events . Get ( n ) ; }
int NumEvents ( void ) const { return Events . Count ( ) ; }
2001-04-01 15:40:43 +02:00
void Dump ( FILE * f , const char * Prefix = " " ) const ;
2000-10-29 13:17:22 +01:00
} ;
2000-09-03 11:40:00 +02:00
2000-10-29 13:17:22 +01:00
class cSchedules : public cList < cSchedule > {
friend class cSIProcessor ;
private :
const cSchedule * pCurrentSchedule ;
unsigned short uCurrentServiceID ;
protected :
bool SetCurrentServiceID ( unsigned short servid ) ;
void Cleanup ( ) ;
2001-03-31 15:04:37 +02:00
public :
2000-10-29 13:17:22 +01:00
cSchedules ( void ) ;
~ cSchedules ( ) ;
const cSchedule * GetSchedule ( unsigned short servid ) const ;
const cSchedule * GetSchedule ( void ) const ;
2001-04-01 15:40:43 +02:00
void Dump ( FILE * f , const char * Prefix = " " ) const ;
2000-10-29 13:17:22 +01:00
} ;
2000-09-03 11:40:00 +02:00
2000-10-29 13:17:22 +01:00
typedef struct sip_filter {
2000-09-03 11:40:00 +02:00
2000-10-29 13:17:22 +01:00
u_char pid ;
u_char tid ;
int handle ;
bool inuse ;
2000-09-03 11:40:00 +02:00
2000-10-29 13:17:22 +01:00
} SIP_FILTER ;
2000-09-03 11:40:00 +02:00
2000-10-29 13:17:22 +01:00
class cSIProcessor : public cThread {
private :
2000-11-18 13:57:32 +01:00
static int numSIProcessors ;
static cSchedules * schedules ;
static cMutex schedulesMutex ;
2001-08-11 09:38:12 +02:00
static const char * epgDataFileName ;
2000-11-18 13:57:32 +01:00
bool masterSIProcessor ;
2000-10-29 13:17:22 +01:00
bool useTStime ;
SIP_FILTER * filters ;
2001-06-02 10:47:40 +02:00
char * fileName ;
2001-03-31 15:04:37 +02:00
bool active ;
2000-10-29 13:17:22 +01:00
void Action ( void ) ;
2001-06-02 10:47:40 +02:00
bool AddFilter ( u_char pid , u_char tid ) ;
bool ShutDownFilters ( void ) ;
2001-03-31 15:04:37 +02:00
public :
2000-10-29 13:17:22 +01:00
cSIProcessor ( const char * FileName ) ;
~ cSIProcessor ( ) ;
2001-08-11 09:38:12 +02:00
static void SetEpgDataFileName ( const char * FileName ) ;
static const char * GetEpgDataFileName ( void ) ;
2001-06-02 10:47:40 +02:00
void SetStatus ( bool On ) ;
2000-10-29 13:17:22 +01:00
bool SetUseTSTime ( bool use ) ;
bool SetCurrentServiceID ( unsigned short servid ) ;
const cSchedules * Schedules ( void ) { return schedules ; }
} ;
2000-09-03 11:40:00 +02:00
# endif