X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/a8310a1a7345577916560e789cdb8c1712e620a9..7b46b591444685733d1fb3af5c814e0a93cf4d5f:/lib/dvb/dvbtime.h diff --git a/lib/dvb/dvbtime.h b/lib/dvb/dvbtime.h index a1746b5e..c49e67e3 100644 --- a/lib/dvb/dvbtime.h +++ b/lib/dvb/dvbtime.h @@ -1,52 +1,88 @@ #ifndef __LIB_DVB_DVBTIME_H_ #define __LIB_DVB_DVBTIME_H_ +#ifndef SWIG + #include #include -#include +#include class eDVBChannel; -time_t parseDVBtime(__u8 t1, __u8 t2, __u8 t3, __u8 t4, __u8 t5); +inline int fromBCD(int bcd) +{ + if ((bcd&0xF0)>=0xA0) + return -1; + if ((bcd&0xF)>=0xA) + return -1; + return ((bcd&0xF0)>>4)*10+(bcd&0xF); +} + +inline int toBCD(int dec) +{ + if (dec >= 100) + return -1; + return int(dec/10)*0x10 + dec%10; +} + +time_t parseDVBtime(__u8 t1, __u8 t2, __u8 t3, __u8 t4, __u8 t5, __u16 *hash=0); class TDT: public eGTable { eDVBChannel *chan; ePtr demux; - eTimer m_interval_timer; - int createTable(int nr, const __u8 *data, unsigned int max); + ePtr m_interval_timer; + int createTable(unsigned int nr, const __u8 *data, unsigned int max); void ready(int); + int update_count; public: - TDT(eDVBChannel *chan); + TDT(eDVBChannel *chan, int update_count=0); void start(); void startTimer(int interval); + int getUpdateCount() { return update_count; } }; +#endif // SWIG + class eDVBLocalTimeHandler: public Object { + DECLARE_REF(eDVBLocalTimeHandler); + struct channel_data + { + ePtr tdt; + ePtr channel; + ePtr m_stateChangedConn; + int m_prevChannelState; + }; + bool m_use_dvb_time; + ePtr m_updateNonTunedTimer; friend class TDT; - DECLARE_REF(eDVBLocalTimeHandler) - std::map m_active_tables; + std::map m_knownChannels; std::map m_timeOffsetMap; ePtr m_chanAddedConn; - ePtr m_chanRemovedConn; - ePtr m_chanRunningConn; bool m_time_ready; int m_time_difference; int m_last_tp_time_difference; void DVBChannelAdded(eDVBChannel*); - void DVBChannelRemoved(eDVBChannel*); - void DVBChannelRunning(iDVBChannel*); + void DVBChannelStateChanged(iDVBChannel*); void readTimeOffsetData(const char*); void writeTimeOffsetData(const char*); - void updateTime(time_t tp_time, eDVBChannel*); + void updateTime(time_t tp_time, eDVBChannel*, int updateCount); + void updateNonTuned(); static eDVBLocalTimeHandler *instance; +#ifdef SWIG + eDVBLocalTimeHandler(); + ~eDVBLocalTimeHandler(); +#endif public: - PSignal0 m_timeUpdated; +#ifndef SWIG eDVBLocalTimeHandler(); ~eDVBLocalTimeHandler(); - bool ready() { return m_time_ready; } - int difference() { return m_time_difference; } +#endif + bool getUseDVBTime() { return m_use_dvb_time; } + void setUseDVBTime(bool b); + PSignal0 m_timeUpdated; + bool ready() const { return m_time_ready; } static eDVBLocalTimeHandler *getInstance() { return instance; } };