replace eServiceReferenceDVB with eServiceReference in some epgcache functions (eServ...
[enigma2.git] / lib / dvb / epgcache.h
1 #ifndef __epgcache_h_
2 #define __epgcache_h_
3
4 #ifndef SWIG
5
6 #include <vector>
7 #include <list>
8 #include <ext/hash_map>
9 #include <ext/hash_set>
10
11 #include <errno.h>
12
13 #include <lib/dvb/eit.h>
14 #include <lib/dvb/lowlevel/eit.h>
15 #include <lib/dvb/idvb.h>
16 #include <lib/dvb/demux.h>
17 #include <lib/dvb/dvbtime.h>
18 #include <lib/base/ebase.h>
19 #include <lib/base/thread.h>
20 #include <lib/base/message.h>
21 #include <lib/service/event.h>
22
23 #define CLEAN_INTERVAL 60000    //  1 min
24 #define UPDATE_INTERVAL 3600000  // 60 min
25 #define ZAP_DELAY 2000          // 2 sek
26
27 #define HILO(x) (x##_hi << 8 | x##_lo)
28
29 class eventData;
30 class eServiceReferenceDVB;
31
32 struct uniqueEPGKey
33 {
34         int sid, onid, tsid;
35         uniqueEPGKey( const eServiceReference &ref )
36                 :sid( ref.type != eServiceReference::idInvalid ? ((eServiceReferenceDVB&)ref).getServiceID().get() : -1 )
37                 ,onid( ref.type != eServiceReference::idInvalid ? ((eServiceReferenceDVB&)ref).getOriginalNetworkID().get() : -1 )
38                 ,tsid( ref.type != eServiceReference::idInvalid ? ((eServiceReferenceDVB&)ref).getTransportStreamID().get() : -1 )
39         {
40         }
41         uniqueEPGKey()
42                 :sid(-1), onid(-1), tsid(-1)
43         {
44         }
45         uniqueEPGKey( int sid, int onid, int tsid )
46                 :sid(sid), onid(onid), tsid(tsid)
47         {
48         }
49         bool operator <(const uniqueEPGKey &a) const
50         {
51                 return memcmp( &sid, &a.sid, sizeof(int)*3)<0;
52         }
53         operator bool() const
54         { 
55                 return !(sid == -1 && onid == -1 && tsid == -1); 
56         }
57         bool operator==(const uniqueEPGKey &a) const
58         {
59                 return !memcmp( &sid, &a.sid, sizeof(int)*3);
60         }
61         struct equal
62         {
63                 bool operator()(const uniqueEPGKey &a, const uniqueEPGKey &b) const
64                 {
65                         return !memcmp( &a.sid, &b.sid, sizeof(int)*3);
66                 }
67         };
68 };
69
70 //eventMap is sorted by event_id
71 #define eventMap std::map<__u16, eventData*>
72 //timeMap is sorted by beginTime
73 #define timeMap std::map<time_t, eventData*>
74
75 #define channelMapIterator std::map<iDVBChannel*, channel_data*>::iterator
76 #define updateMap std::map<eDVBChannelID, time_t>
77
78 struct hash_uniqueEPGKey
79 {
80         inline size_t operator()( const uniqueEPGKey &x) const
81         {
82                 return (x.onid << 16) | x.tsid;
83         }
84 };
85
86 #define tidMap std::set<__u32>
87 #if defined(__GNUC__) && ((__GNUC__ == 3 && __GNUC_MINOR__ >= 1) || __GNUC__ == 4 )  // check if gcc version >= 3.1
88         #define eventCache __gnu_cxx::hash_map<uniqueEPGKey, std::pair<eventMap, timeMap>, hash_uniqueEPGKey, uniqueEPGKey::equal>
89 #else // for older gcc use following
90         #define eventCache std::hash_map<uniqueEPGKey, std::pair<eventMap, timeMap>, hash_uniqueEPGKey, uniqueEPGKey::equal >
91 #endif
92
93 #define descriptorPair std::pair<int,__u8*>
94 #define descriptorMap std::map<__u32, descriptorPair >
95
96 #endif // SWIG
97
98 class eventData
99 {
100 #ifndef SWIG
101         friend class eEPGCache;
102 private:
103         __u8* EITdata;
104         __u8 ByteSize;
105         __u8 type;
106         static descriptorMap descriptors;
107         static __u8 data[4108];
108         static int CacheSize;
109         static void load(FILE *);
110         static void save(FILE *);
111 #endif // SWIG
112 public:
113         eventData(const eit_event_struct* e=NULL, int size=0, int type=0);
114         ~eventData();
115 #ifndef SWIG
116         const eit_event_struct* get() const;
117         operator const eit_event_struct*() const
118         {
119                 return get();
120         }
121 #endif
122         int getEventID()
123         {
124                 return (EITdata[0] << 8) | EITdata[1];
125         }
126         time_t getStartTime()
127         {
128                 return parseDVBtime(EITdata[2], EITdata[3], EITdata[4], EITdata[5], EITdata[6]);
129         }
130         int getDuration()
131         {
132                 return fromBCD(EITdata[7])*3600+fromBCD(EITdata[8])*60+fromBCD(EITdata[9]);
133  }
134 };
135
136 class eEPGCache: public eMainloop, private eThread, public Object
137 {
138 #ifndef SWIG
139         DECLARE_REF(eEPGCache)
140         struct channel_data: public Object
141         {
142                 channel_data(eEPGCache*);
143                 eEPGCache *cache;
144                 eTimer abortTimer, zapTimer;
145                 __u8 state, isRunning, haveData, can_delete;
146                 ePtr<eDVBChannel> channel;
147                 ePtr<eConnection> m_stateChangedConn, m_NowNextConn, m_ScheduleConn, m_ScheduleOtherConn;
148                 ePtr<iDVBSectionReader> m_NowNextReader, m_ScheduleReader, m_ScheduleOtherReader;
149                 tidMap seenSections[3], calcedSections[3];
150                 void readData(const __u8 *data);
151                 void startChannel();
152                 void startEPG();
153                 bool finishEPG();
154                 void abortEPG();
155                 void abortNonAvail();
156         };
157 public:
158         enum {NOWNEXT=1, SCHEDULE=2, SCHEDULE_OTHER=4};
159         struct Message
160         {
161                 enum
162                 {
163                         flush,
164                         startChannel,
165                         leaveChannel,
166                         pause,
167                         restart,
168                         updated,
169                         isavail,
170                         quit,
171                         timeChanged
172                 };
173                 int type;
174                 iDVBChannel *channel;
175                 uniqueEPGKey service;
176                 union {
177                         int err;
178                         time_t time;
179                         bool avail;
180                 };
181                 Message()
182                         :type(0), time(0) {}
183                 Message(int type)
184                         :type(type) {}
185                 Message(int type, bool b)
186                         :type(type), avail(b) {}
187                 Message(int type, iDVBChannel *channel, int err=0)
188                         :type(type), channel(channel), err(err) {}
189                 Message(int type, const eServiceReference& service, int err=0)
190                         :type(type), service(service), err(err) {}
191                 Message(int type, time_t time)
192                         :type(type), time(time) {}
193         };
194         eFixedMessagePump<Message> messages;
195 private:
196         friend class channel_data;
197         static eEPGCache *instance;
198
199         eTimer cleanTimer;
200         std::map<iDVBChannel*, channel_data*> m_knownChannels;
201         ePtr<eConnection> m_chanAddedConn;
202
203         eventCache eventDB;
204         updateMap channelLastUpdated;
205         static pthread_mutex_t cache_lock, channel_map_lock;
206
207         void thread();  // thread function
208
209 // called from epgcache thread
210         void save();
211         void load();
212         void sectionRead(const __u8 *data, int source, channel_data *channel);
213         void gotMessage(const Message &message);
214         void flushEPG(const uniqueEPGKey & s=uniqueEPGKey());
215         void cleanLoop();
216
217 // called from main thread
218         void timeUpdated();
219         void DVBChannelAdded(eDVBChannel*);
220         void DVBChannelStateChanged(iDVBChannel*);
221         void DVBChannelRunning(iDVBChannel *);
222
223         timeMap::iterator m_timemap_cursor, m_timemap_end;
224 #endif // SWIG
225 public:
226         static RESULT getInstance(eEPGCache *&ptr);
227         eEPGCache();
228         ~eEPGCache();
229
230         // called from main thread
231         inline void Lock();
232         inline void Unlock();
233
234         // at moment just for one service..
235         RESULT startTimeQuery(const eServiceReference &service, time_t begin=-1, int minutes=-1);
236
237         // eventData's are plain entrys out of the cache.. it's not safe to use them after cache unlock
238         // but its faster in use... its not allowed to delete this pointers via delete or free..
239         RESULT lookupEvent(const eServiceReference &service, int event_id, const eventData *&);
240         RESULT lookupEvent(const eServiceReference &service, time_t , const eventData *&);
241         RESULT getNextTimeEntry(const eventData *&);
242
243 #ifndef SWIG
244         // eit_event_struct's are plain dvb eit_events .. it's not safe to use them after cache unlock
245         // its not allowed to delete this pointers via delete or free..
246         RESULT lookupEvent(const eServiceReference &service, int event_id, const eit_event_struct *&);
247         RESULT lookupEvent(const eServiceReference &service, time_t , const eit_event_struct *&);
248         RESULT getNextTimeEntry(const eit_event_struct *&);
249
250         // Event's are parsed epg events.. it's safe to use them after cache unlock
251         // after use this Events must be deleted (memleaks)
252         RESULT lookupEvent(const eServiceReference &service, int event_id, Event* &);
253         RESULT lookupEvent(const eServiceReference &service, time_t, Event* &);
254         RESULT getNextTimeEntry(Event *&);
255 #endif
256
257         // eServiceEvent are parsed epg events.. it's safe to use them after cache unlock
258         // for use from python ( members: m_start_time, m_duration, m_short_description, m_extended_description )
259         RESULT lookupEvent(const eServiceReference &service, int event_id, ePtr<eServiceEvent> &);
260         RESULT lookupEvent(const eServiceReference &service, time_t , ePtr<eServiceEvent> &);
261         RESULT getNextTimeEntry(ePtr<eServiceEvent> &);
262 };
263
264 #ifndef SWIG
265 inline void eEPGCache::Lock()
266 {
267         pthread_mutex_lock(&cache_lock);
268 }
269
270 inline void eEPGCache::Unlock()
271 {
272         pthread_mutex_unlock(&cache_lock);
273 }
274 #endif
275
276 #endif