implement interface for query epg
[enigma2.git] / lib / dvb / epgcache.h
index 5dea46303e47249ac3edf7c80c7e8d3fd6fe9f30..81d5abfbd09adf4c4596a6502bb8c13d64e35a12 100644 (file)
@@ -4,12 +4,8 @@
 #include <vector>
 #include <list>
 #include <ext/hash_map>
+#include <ext/hash_set>
 
-// check if gcc version >= 3.4
-#if defined(__GNUC__) && ((__GNUC__ == 3 && __GNUC_MINOR__ >= 4) || __GNUC__ == 4 )
-#else
-#include <ext/stl_hash_fun.h>
-#endif
 #include <errno.h>
 
 #include <lib/dvb/eit.h>
@@ -20,6 +16,7 @@
 #include <lib/base/ebase.h>
 #include <lib/base/thread.h>
 #include <lib/base/message.h>
+#include <lib/service/event.h>
 
 #define CLEAN_INTERVAL 60000    //  1 min
 #define UPDATE_INTERVAL 3600000  // 60 min
@@ -74,66 +71,57 @@ struct uniqueEPGKey
 #define timeMap std::map<time_t, eventData*>
 
 #define channelMapIterator std::map<iDVBChannel*, channel_data*>::iterator
-
-#define tmpMap std::map<uniqueEPGKey, std::pair<time_t, int> >
 #define updateMap std::map<eDVBChannelID, time_t>
 
-#if defined(__GNUC__) && ((__GNUC__ == 3 && __GNUC_MINOR__ >= 1) || __GNUC__ == 4 )  // check if gcc version >= 3.1
-       #define eventCache __gnu_cxx::hash_map<uniqueEPGKey, std::pair<eventMap, timeMap>, __gnu_cxx::hash<uniqueEPGKey>, uniqueEPGKey::equal>
-       namespace __gnu_cxx
-#else // for older gcc use following
-       #define eventCache std::hash_map<uniqueEPGKey, std::pair<eventMap, timeMap>, std::hash<uniqueEPGKey>, uniqueEPGKey::equal >
-       namespace std
-#endif
-{
-template<> struct hash<uniqueEPGKey>
+struct hash_uniqueEPGKey
 {
        inline size_t operator()( const uniqueEPGKey &x) const
        {
-               return (x.tsid << 16) | x.onid;
+               return (x.onid << 16) | x.tsid;
        }
 };
-}
+
+#define tidMap std::set<__u32>
+#if defined(__GNUC__) && ((__GNUC__ == 3 && __GNUC_MINOR__ >= 1) || __GNUC__ == 4 )  // check if gcc version >= 3.1
+       #define eventCache __gnu_cxx::hash_map<uniqueEPGKey, std::pair<eventMap, timeMap>, hash_uniqueEPGKey, uniqueEPGKey::equal>
+#else // for older gcc use following
+       #define eventCache std::hash_map<uniqueEPGKey, std::pair<eventMap, timeMap>, hash_uniqueEPGKey, uniqueEPGKey::equal >
+#endif
+
+#define descriptorPair std::pair<int,__u8*>
+#define descriptorMap std::map<__u32, descriptorPair >
 
 class eventData
 {
        friend class eEPGCache;
 private:
        __u8* EITdata;
-       int ByteSize;
+       __u8 ByteSize;
+       static descriptorMap descriptors;
+       static __u8 data[4108];
 public:
-       int type;
+       __u8 type;
        static int CacheSize;
-       eventData(const eit_event_struct* e, int size, int type)
-       :ByteSize(size), type(type)
-       {
-               CacheSize+=size;
-               EITdata = new __u8[size];
-               if (e)
-                       memcpy(EITdata, (__u8*) e, size);
-       }
-       ~eventData()
-       {
-               CacheSize-=ByteSize;
-               delete [] EITdata;
-       }
+       static void load(FILE *);
+       static void save(FILE *);
+       eventData(const eit_event_struct* e, int size, int type);
+       ~eventData();
+       const eit_event_struct* get() const;
        operator const eit_event_struct*() const
        {
-               return (const eit_event_struct*) EITdata;
-       }
-       const eit_event_struct* get() const
-       {
-               return (const eit_event_struct*) EITdata;
+               return get();
        }
        int getEventID()
        {
-               return HILO( ((const eit_event_struct*) EITdata)->event_id );
+               return (EITdata[0] << 8) | EITdata[1];
        }
        time_t getStartTime()
        {
-               return parseDVBtime(
-                       EITdata[2], EITdata[3],
-                       EITdata[4], EITdata[5], EITdata[6]);
+               return parseDVBtime(EITdata[2], EITdata[3], EITdata[4], EITdata[5], EITdata[6]);
+       }
+       int getDuration()
+       {
+               return fromBCD(EITdata[7])*3600+fromBCD(EITdata[8])*60+fromBCD(EITdata[9]);
        }
 };
 
@@ -149,6 +137,7 @@ class eEPGCache: public eMainloop, private eThread, public Object
                ePtr<eDVBChannel> channel;
                ePtr<eConnection> m_stateChangedConn, m_NowNextConn, m_ScheduleConn, m_ScheduleOtherConn;
                ePtr<iDVBSectionReader> m_NowNextReader, m_ScheduleReader, m_ScheduleOtherReader;
+               tidMap seenSections[3], calcedSections[3];
                void readData(const __u8 *data);
                void startChannel();
                void startEPG();
@@ -211,7 +200,7 @@ private:
 // called from epgcache thread
        void save();
        void load();
-       int sectionRead(const __u8 *data, int source, channel_data *channel);
+       void sectionRead(const __u8 *data, int source, channel_data *channel);
        void gotMessage(const Message &message);
        void flushEPG(const uniqueEPGKey & s=uniqueEPGKey());
        void cleanLoop();
@@ -221,6 +210,8 @@ private:
        void DVBChannelAdded(eDVBChannel*);
        void DVBChannelStateChanged(iDVBChannel*);
        void DVBChannelRunning(iDVBChannel *);
+
+       timeMap::iterator m_timemap_cursor, m_timemap_end;
 public:
        static RESULT getInstance(ePtr<eEPGCache> &ptr);
        eEPGCache();
@@ -229,31 +220,36 @@ public:
        // called from main thread
        inline void Lock();
        inline void Unlock();
-       Event *lookupEvent(const eServiceReferenceDVB &service, int event_id, bool plain=false );
-       Event *lookupEvent(const eServiceReferenceDVB &service, time_t=0, bool plain=false );
-       const eventMap* getEventMap(const eServiceReferenceDVB &service);
-       const timeMap* getTimeMap(const eServiceReferenceDVB &service);
-};
 
-TEMPLATE_TYPEDEF(ePtr<eEPGCache>,eEPGCachePtr);
+       // at moment just for one service..
+       inline RESULT startTimeQuery(const eServiceReferenceDVB &service, time_t begin=-1, int minutes=-1);
 
-inline const eventMap* eEPGCache::getEventMap(const eServiceReferenceDVB &service)
-{
-       eventCache::iterator It = eventDB.find( service );
-       if ( It != eventDB.end() && It->second.first.size() )
-               return &(It->second.first);
-       else
-               return 0;
-}
+       // eventData's are plain entrys out of the cache.. it's not safe to use them after cache unlock
+       // but its faster in use... its not allowed to delete this pointers via delete or free..
+       RESULT lookupEvent(const eServiceReferenceDVB &service, int event_id, const eventData *&);
+       RESULT lookupEvent(const eServiceReferenceDVB &service, time_t , const eventData *&);
+       RESULT getNextTimeEntry(const eventData *&);
 
-inline const timeMap* eEPGCache::getTimeMap(const eServiceReferenceDVB &service)
-{
-       eventCache::iterator It = eventDB.find( service );
-       if ( It != eventDB.end() && It->second.second.size() )
-               return &(It->second.second);
-       else
-               return 0;
-}
+       // eit_event_struct's are plain dvb eit_events .. it's not safe to use them after cache unlock
+       // its not allowed to delete this pointers via delete or free..
+       RESULT lookupEvent(const eServiceReferenceDVB &service, int event_id, const eit_event_struct *&);
+       RESULT lookupEvent(const eServiceReferenceDVB &service, time_t , const eit_event_struct *&);
+       RESULT getNextTimeEntry(const eit_event_struct *&);
+
+       // Event's are parsed epg events.. it's safe to use them after cache unlock
+       // after use this Events must be deleted (memleaks)
+       RESULT lookupEvent(const eServiceReferenceDVB &service, int event_id, Event* &);
+       RESULT lookupEvent(const eServiceReferenceDVB &service, time_t, Event* &);
+       RESULT getNextTimeEntry(Event *&);
+
+       // eServiceEvent are parsed epg events.. it's safe to use them after cache unlock
+       // for use from python ( members: m_start_time, m_duration, m_short_description, m_extended_description )
+       RESULT lookupEvent(const eServiceReferenceDVB &service, int event_id, ePtr<eServiceEvent> &);
+       RESULT lookupEvent(const eServiceReferenceDVB &service, time_t , ePtr<eServiceEvent> &);
+       RESULT getNextTimeEntry(ePtr<eServiceEvent> &);
+};
+
+TEMPLATE_TYPEDEF(ePtr<eEPGCache>,eEPGCachePtr);
 
 inline void eEPGCache::Lock()
 {