python object refcount debugging code second try
[enigma2.git] / lib / dvb / epgcache.cpp
1 #include <lib/dvb/epgcache.h>
2 #include <lib/dvb/dvb.h>
3
4 #undef EPG_DEBUG  
5
6 #ifdef EPG_DEBUG
7 #include <lib/service/event.h>
8 #endif
9
10 #include <time.h>
11 #include <unistd.h>  // for usleep
12 #include <sys/vfs.h> // for statfs
13 // #include <libmd5sum.h>
14 #include <lib/base/eerror.h>
15 #include <lib/dvb/pmt.h>
16 #include <lib/dvb/db.h>
17 #include <lib/python/python.h>
18
19 int eventData::CacheSize=0;
20 descriptorMap eventData::descriptors;
21 __u8 eventData::data[4108];
22 extern const uint32_t crc32_table[256];
23
24 eventData::eventData(const eit_event_struct* e, int size, int type)
25         :ByteSize(size&0xFF), type(type&0xFF)
26 {
27         if (!e)
28                 return;
29
30         __u32 descr[65];
31         __u32 *pdescr=descr;
32
33         __u8 *data = (__u8*)e;
34         int ptr=10;
35         int descriptors_length = (data[ptr++]&0x0F) << 8;
36         descriptors_length |= data[ptr++];
37         while ( descriptors_length > 0 )
38         {
39                 __u8 *descr = data+ptr;
40                 int descr_len = descr[1]+2;
41
42                 __u32 crc = 0;
43                 int cnt=0;
44                 while(cnt++ < descr_len)
45                         crc = (crc << 8) ^ crc32_table[((crc >> 24) ^ data[ptr++]) & 0xFF];
46
47                 descriptorMap::iterator it =
48                         descriptors.find(crc);
49                 if ( it == descriptors.end() )
50                 {
51                         CacheSize+=descr_len;
52                         __u8 *d = new __u8[descr_len];
53                         memcpy(d, descr, descr_len);
54                         descriptors[crc] = descriptorPair(1, d);
55                 }
56                 else
57                         ++it->second.first;
58
59                 *pdescr++=crc;
60                 descriptors_length -= descr_len;
61         }
62         ByteSize = 12+((pdescr-descr)*4);
63         EITdata = new __u8[ByteSize];
64         CacheSize+=ByteSize;
65         memcpy(EITdata, (__u8*) e, 12);
66         memcpy(EITdata+12, descr, ByteSize-12);
67 }
68
69 const eit_event_struct* eventData::get() const
70 {
71         int pos = 12;
72         int tmp = ByteSize-12;
73         memcpy(data, EITdata, 12);
74         __u32 *p = (__u32*)(EITdata+12);
75         while(tmp>0)
76         {
77                 descriptorMap::iterator it =
78                         descriptors.find(*p++);
79                 if ( it != descriptors.end() )
80                 {
81                         int b = it->second.second[1]+2;
82                         memcpy(data+pos, it->second.second, b );
83                         pos += b;
84                 }
85                 tmp-=4;
86         }
87
88         return (const eit_event_struct*)data;
89 }
90
91 eventData::~eventData()
92 {
93         if ( ByteSize )
94         {
95                 CacheSize-=ByteSize;
96                 ByteSize-=12;
97                 __u32 *d = (__u32*)(EITdata+12);
98                 while(ByteSize)
99                 {
100                         descriptorMap::iterator it =
101                                 descriptors.find(*d++);
102                         if ( it != descriptors.end() )
103                         {
104                                 descriptorPair &p = it->second;
105                                 if (!--p.first) // no more used descriptor
106                                 {
107                                         CacheSize -= it->second.second[1];
108                                         delete [] it->second.second;    // free descriptor memory
109                                         descriptors.erase(it);  // remove entry from descriptor map
110                                 }
111                         }
112                         ByteSize-=4;
113                 }
114                 delete [] EITdata;
115         }
116 }
117
118 void eventData::load(FILE *f)
119 {
120         int size=0;
121         int id=0;
122         __u8 header[2];
123         descriptorPair p;
124         fread(&size, sizeof(int), 1, f);
125         while(size)
126         {
127                 fread(&id, sizeof(__u32), 1, f);
128                 fread(&p.first, sizeof(int), 1, f);
129                 fread(header, 2, 1, f);
130                 int bytes = header[1]+2;
131                 p.second = new __u8[bytes];
132                 p.second[0] = header[0];
133                 p.second[1] = header[1];
134                 fread(p.second+2, bytes-2, 1, f);
135                 descriptors[id]=p;
136                 --size;
137                 CacheSize+=bytes;
138         }
139 }
140
141 void eventData::save(FILE *f)
142 {
143         int size=descriptors.size();
144         descriptorMap::iterator it(descriptors.begin());
145         fwrite(&size, sizeof(int), 1, f);
146         while(size)
147         {
148                 fwrite(&it->first, sizeof(__u32), 1, f);
149                 fwrite(&it->second.first, sizeof(int), 1, f);
150                 fwrite(it->second.second, it->second.second[1]+2, 1, f);
151                 ++it;
152                 --size;
153         }
154 }
155
156 eEPGCache* eEPGCache::instance;
157 pthread_mutex_t eEPGCache::cache_lock=
158         PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
159 pthread_mutex_t eEPGCache::channel_map_lock=
160         PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
161
162 DEFINE_REF(eEPGCache)
163
164 eEPGCache::eEPGCache()
165         :messages(this,1), cleanTimer(this)//, paused(0)
166 {
167         eDebug("[EPGC] Initialized EPGCache");
168
169         CONNECT(messages.recv_msg, eEPGCache::gotMessage);
170         CONNECT(eDVBLocalTimeHandler::getInstance()->m_timeUpdated, eEPGCache::timeUpdated);
171         CONNECT(cleanTimer.timeout, eEPGCache::cleanLoop);
172
173         ePtr<eDVBResourceManager> res_mgr;
174         eDVBResourceManager::getInstance(res_mgr);
175         if (!res_mgr)
176                 eDebug("[eEPGCache] no resource manager !!!!!!!");
177         else
178                 res_mgr->connectChannelAdded(slot(*this,&eEPGCache::DVBChannelAdded), m_chanAddedConn);
179         instance=this;
180 }
181
182 void eEPGCache::timeUpdated()
183 {
184         if (!sync())
185         {
186                 eDebug("[EPGC] time updated.. start EPG Mainloop");
187                 run();
188         } else
189                 messages.send(Message(Message::timeChanged));
190 }
191
192 void eEPGCache::DVBChannelAdded(eDVBChannel *chan)
193 {
194         if ( chan )
195         {
196 //              eDebug("[eEPGCache] add channel %p", chan);
197                 channel_data *data = new channel_data(this);
198                 data->channel = chan;
199                 data->prevChannelState = -1;
200 #ifdef ENABLE_PRIVATE_EPG
201                 data->m_PrivatePid = -1;
202 #endif
203                 singleLock s(channel_map_lock);
204                 m_knownChannels.insert( std::pair<iDVBChannel*, channel_data* >(chan, data) );
205                 chan->connectStateChange(slot(*this, &eEPGCache::DVBChannelStateChanged), data->m_stateChangedConn);
206         }
207 }
208
209 void eEPGCache::DVBChannelRunning(iDVBChannel *chan)
210 {
211         channelMapIterator it =
212                 m_knownChannels.find(chan);
213         if ( it == m_knownChannels.end() )
214                 eDebug("[eEPGCache] will start non existing channel %p !!!", chan);
215         else
216         {
217                 channel_data &data = *it->second;
218                 ePtr<eDVBResourceManager> res_mgr;
219                 if ( eDVBResourceManager::getInstance( res_mgr ) )
220                         eDebug("[eEPGCache] no res manager!!");
221                 else
222                 {
223                         ePtr<iDVBDemux> demux;
224                         if ( data.channel->getDemux(demux, 0) )
225                         {
226                                 eDebug("[eEPGCache] no demux!!");
227                                 return;
228                         }
229                         else
230                         {
231                                 RESULT res = demux->createSectionReader( this, data.m_NowNextReader );
232                                 if ( res )
233                                 {
234                                         eDebug("[eEPGCache] couldnt initialize nownext reader!!");
235                                         return;
236                                 }
237
238                                 res = demux->createSectionReader( this, data.m_ScheduleReader );
239                                 if ( res )
240                                 {
241                                         eDebug("[eEPGCache] couldnt initialize schedule reader!!");
242                                         return;
243                                 }
244
245                                 res = demux->createSectionReader( this, data.m_ScheduleOtherReader );
246                                 if ( res )
247                                 {
248                                         eDebug("[eEPGCache] couldnt initialize schedule other reader!!");
249                                         return;
250                                 }
251 #ifdef ENABLE_PRIVATE_EPG
252                                 res = demux->createSectionReader( this, data.m_PrivateReader );
253                                 if ( res )
254                                 {
255                                         eDebug("[eEPGCache] couldnt initialize private reader!!");
256                                         return;
257                                 }
258 #endif
259 #ifdef ENABLE_MHW_EPG
260                                 res = demux->createSectionReader( this, data.m_MHWReader );
261                                 if ( res )
262                                 {
263                                         eDebug("[eEPGCache] couldnt initialize mhw reader!!");
264                                         return;
265                                 }
266                                 res = demux->createSectionReader( this, data.m_MHWReader2 );
267                                 if ( res )
268                                 {
269                                         eDebug("[eEPGCache] couldnt initialize mhw reader!!");
270                                         return;
271                                 }
272 #endif
273                                 messages.send(Message(Message::startChannel, chan));
274                                 // -> gotMessage -> changedService
275                         }
276                 }
277         }
278 }
279
280 void eEPGCache::DVBChannelStateChanged(iDVBChannel *chan)
281 {
282         channelMapIterator it =
283                 m_knownChannels.find(chan);
284         if ( it != m_knownChannels.end() )
285         {
286                 int state=0;
287                 chan->getState(state);
288                 if ( it->second->prevChannelState != state )
289                 {
290                         switch (state)
291                         {
292                                 case iDVBChannel::state_ok:
293                                 {
294                                         eDebug("[eEPGCache] channel %p running", chan);
295                                         DVBChannelRunning(chan);
296                                         break;
297                                 }
298                                 case iDVBChannel::state_release:
299                                 {
300                                         eDebug("[eEPGCache] remove channel %p", chan);
301                                         messages.send(Message(Message::leaveChannel, chan));
302                                         pthread_mutex_lock(&it->second->channel_active);
303                                         singleLock s(channel_map_lock);
304                                         m_knownChannels.erase(it);
305                                         pthread_mutex_unlock(&it->second->channel_active);
306                                         delete it->second;
307                                         it->second=0;
308                                         // -> gotMessage -> abortEPG
309                                         break;
310                                 }
311                                 default: // ignore all other events
312                                         return;
313                         }
314                         if (it->second)
315                                 it->second->prevChannelState = state;
316                 }
317         }
318 }
319
320 void eEPGCache::FixOverlapping(std::pair<eventMap,timeMap> &servicemap, time_t TM, int duration, const timeMap::iterator &tm_it, const uniqueEPGKey &service)
321 {
322         timeMap::iterator tmp = tm_it;
323         while ((tmp->first+tmp->second->getDuration()-300) > TM)
324         {
325                 if(tmp->first != TM 
326 #ifdef ENABLE_PRIVATE_EPG
327                         && tmp->second->type != PRIVATE 
328 #endif
329 #ifdef ENABLE_MHW
330                         && tmp->second->type != MHW
331 #endif
332                         )
333                 {
334                         __u16 event_id = tmp->second->getEventID();
335                         servicemap.first.erase(event_id);
336 #ifdef EPG_DEBUG
337                         Event evt((uint8_t*)tmp->second->get());
338                         eServiceEvent event;
339                         event.parseFrom(&evt, service.sid<<16|service.onid);
340                         eDebug("(1)erase no more used event %04x %d\n%s %s\n%s",
341                                 service.sid, event_id,
342                                 event.getBeginTimeString().c_str(),
343                                 event.getEventName().c_str(),
344                                 event.getExtendedDescription().c_str());
345 #endif
346                         delete tmp->second;
347                         if (tmp == servicemap.second.begin())
348                         {
349                                 servicemap.second.erase(tmp);
350                                 break;
351                         }
352                         else
353                                 servicemap.second.erase(tmp--);
354                 }
355                 else
356                 {
357                         if (tmp == servicemap.second.begin())
358                                 break;
359                         --tmp;
360                 }
361         }
362
363         tmp = tm_it;
364         while(tmp->first < (TM+duration-300))
365         {
366                 if (tmp->first != TM && tmp->second->type != PRIVATE)
367                 {
368                         __u16 event_id = tmp->second->getEventID();
369                         servicemap.first.erase(event_id);
370 #ifdef EPG_DEBUG  
371                         Event evt((uint8_t*)tmp->second->get());
372                         eServiceEvent event;
373                         event.parseFrom(&evt, service.sid<<16|service.onid);
374                         eDebug("(2)erase no more used event %04x %d\n%s %s\n%s",
375                                 service.sid, event_id,
376                                 event.getBeginTimeString().c_str(),
377                                 event.getEventName().c_str(),
378                                 event.getExtendedDescription().c_str());
379 #endif
380                         delete tmp->second;
381                         servicemap.second.erase(tmp++);
382                 }
383                 else
384                         ++tmp;
385                 if (tmp == servicemap.second.end())
386                         break;
387         }
388 }
389
390 void eEPGCache::sectionRead(const __u8 *data, int source, channel_data *channel)
391 {
392         eit_t *eit = (eit_t*) data;
393
394         int len=HILO(eit->section_length)-1;//+3-4;
395         int ptr=EIT_SIZE;
396         if ( ptr >= len )
397                 return;
398
399         // This fixed the EPG on the Multichoice irdeto systems
400         // the EIT packet is non-compliant.. their EIT packet stinks
401         if ( data[ptr-1] < 0x40 )
402                 --ptr;
403
404         uniqueEPGKey service( HILO(eit->service_id), HILO(eit->original_network_id), HILO(eit->transport_stream_id) );
405         eit_event_struct* eit_event = (eit_event_struct*) (data+ptr);
406         int eit_event_size;
407         int duration;
408
409         time_t TM = parseDVBtime( eit_event->start_time_1, eit_event->start_time_2,     eit_event->start_time_3, eit_event->start_time_4, eit_event->start_time_5);
410         time_t now = eDVBLocalTimeHandler::getInstance()->nowTime();
411
412         if ( TM != 3599 && TM > -1)
413                 channel->haveData |= source;
414
415         singleLock s(cache_lock);
416         // hier wird immer eine eventMap zurück gegeben.. entweder eine vorhandene..
417         // oder eine durch [] erzeugte
418         std::pair<eventMap,timeMap> &servicemap = eventDB[service];
419         eventMap::iterator prevEventIt = servicemap.first.end();
420         timeMap::iterator prevTimeIt = servicemap.second.end();
421
422         while (ptr<len)
423         {
424                 eit_event_size = HILO(eit_event->descriptors_loop_length)+EIT_LOOP_SIZE;
425
426                 duration = fromBCD(eit_event->duration_1)*3600+fromBCD(eit_event->duration_2)*60+fromBCD(eit_event->duration_3);
427                 TM = parseDVBtime(
428                         eit_event->start_time_1,
429                         eit_event->start_time_2,
430                         eit_event->start_time_3,
431                         eit_event->start_time_4,
432                         eit_event->start_time_5);
433
434                 if ( TM == 3599 )
435                         goto next;
436
437                 if ( TM != 3599 && (TM+duration < now || TM > now+14*24*60*60) )
438                         goto next;
439
440                 if ( now <= (TM+duration) || TM == 3599 /*NVOD Service*/ )  // old events should not be cached
441                 {
442                         __u16 event_id = HILO(eit_event->event_id);
443 //                      eDebug("event_id is %d sid is %04x", event_id, service.sid);
444
445                         eventData *evt = 0;
446                         int ev_erase_count = 0;
447                         int tm_erase_count = 0;
448
449                         // search in eventmap
450                         eventMap::iterator ev_it =
451                                 servicemap.first.find(event_id);
452
453                         // entry with this event_id is already exist ?
454                         if ( ev_it != servicemap.first.end() )
455                         {
456                                 if ( source > ev_it->second->type )  // update needed ?
457                                         goto next; // when not.. then skip this entry
458
459                                 // search this event in timemap
460                                 timeMap::iterator tm_it_tmp =
461                                         servicemap.second.find(ev_it->second->getStartTime());
462
463                                 if ( tm_it_tmp != servicemap.second.end() )
464                                 {
465                                         if ( tm_it_tmp->first == TM ) // just update eventdata
466                                         {
467                                                 // exempt memory
468                                                 delete ev_it->second;
469                                                 ev_it->second = tm_it_tmp->second =
470                                                         new eventData(eit_event, eit_event_size, source);
471                                                 FixOverlapping(servicemap, TM, duration, tm_it_tmp, service);
472                                                 goto next;
473                                         }
474                                         else  // event has new event begin time
475                                         {
476                                                 tm_erase_count++;
477                                                 // delete the found record from timemap
478                                                 servicemap.second.erase(tm_it_tmp);
479                                                 prevTimeIt=servicemap.second.end();
480                                         }
481                                 }
482                         }
483
484                         // search in timemap, for check of a case if new time has coincided with time of other event
485                         // or event was is not found in eventmap
486                         timeMap::iterator tm_it =
487                                 servicemap.second.find(TM);
488
489                         if ( tm_it != servicemap.second.end() )
490                         {
491                                 // event with same start time but another event_id...
492                                 if ( source > tm_it->second->type &&
493                                         ev_it == servicemap.first.end() )
494                                         goto next; // when not.. then skip this entry
495
496                                 // search this time in eventmap
497                                 eventMap::iterator ev_it_tmp =
498                                         servicemap.first.find(tm_it->second->getEventID());
499
500                                 if ( ev_it_tmp != servicemap.first.end() )
501                                 {
502                                         ev_erase_count++;
503                                         // delete the found record from eventmap
504                                         servicemap.first.erase(ev_it_tmp);
505                                         prevEventIt=servicemap.first.end();
506                                 }
507                         }
508
509                         evt = new eventData(eit_event, eit_event_size, source);
510 #ifdef EPG_DEBUG
511                         bool consistencyCheck=true;
512 #endif
513                         if (ev_erase_count > 0 && tm_erase_count > 0) // 2 different pairs have been removed
514                         {
515                                 // exempt memory
516                                 delete ev_it->second;
517                                 delete tm_it->second;
518                                 ev_it->second=evt;
519                                 tm_it->second=evt;
520                         }
521                         else if (ev_erase_count == 0 && tm_erase_count > 0)
522                         {
523                                 // exempt memory
524                                 delete ev_it->second;
525                                 tm_it=prevTimeIt=servicemap.second.insert( prevTimeIt, std::pair<const time_t, eventData*>( TM, evt ) );
526                                 ev_it->second=evt;
527                         }
528                         else if (ev_erase_count > 0 && tm_erase_count == 0)
529                         {
530                                 // exempt memory
531                                 delete tm_it->second;
532                                 ev_it=prevEventIt=servicemap.first.insert( prevEventIt, std::pair<const __u16, eventData*>( event_id, evt) );
533                                 tm_it->second=evt;
534                         }
535                         else // added new eventData
536                         {
537 #ifdef EPG_DEBUG
538                                 consistencyCheck=false;
539 #endif
540                                 ev_it=prevEventIt=servicemap.first.insert( prevEventIt, std::pair<const __u16, eventData*>( event_id, evt) );
541                                 tm_it=prevTimeIt=servicemap.second.insert( prevTimeIt, std::pair<const time_t, eventData*>( TM, evt ) );
542                         }
543
544                         FixOverlapping(servicemap, TM, duration, tm_it, service);
545
546 #ifdef EPG_DEBUG
547                         if ( consistencyCheck )
548                         {
549                                 if ( tm_it->second != evt || ev_it->second != evt )
550                                         eFatal("tm_it->second != ev_it->second");
551                                 else if ( tm_it->second->getStartTime() != tm_it->first )
552                                         eFatal("event start_time(%d) non equal timemap key(%d)",
553                                                 tm_it->second->getStartTime(), tm_it->first );
554                                 else if ( tm_it->first != TM )
555                                         eFatal("timemap key(%d) non equal TM(%d)",
556                                                 tm_it->first, TM);
557                                 else if ( ev_it->second->getEventID() != ev_it->first )
558                                         eFatal("event_id (%d) non equal event_map key(%d)",
559                                                 ev_it->second->getEventID(), ev_it->first);
560                                 else if ( ev_it->first != event_id )
561                                         eFatal("eventmap key(%d) non equal event_id(%d)",
562                                                 ev_it->first, event_id );
563                         }
564 #endif
565                 }
566 next:
567 #ifdef EPG_DEBUG
568                 if ( servicemap.first.size() != servicemap.second.size() )
569                 {
570                         FILE *f = fopen("/hdd/event_map.txt", "w+");
571                         int i=0;
572                         for (eventMap::iterator it(servicemap.first.begin())
573                                 ; it != servicemap.first.end(); ++it )
574                                 fprintf(f, "%d(key %d) -> time %d, event_id %d, data %p\n", 
575                                         i++, (int)it->first, (int)it->second->getStartTime(), (int)it->second->getEventID(), it->second );
576                         fclose(f);
577                         f = fopen("/hdd/time_map.txt", "w+");
578                         i=0;
579                         for (timeMap::iterator it(servicemap.second.begin())
580                                 ; it != servicemap.second.end(); ++it )
581                                         fprintf(f, "%d(key %d) -> time %d, event_id %d, data %p\n", 
582                                                 i++, (int)it->first, (int)it->second->getStartTime(), (int)it->second->getEventID(), it->second );
583                         fclose(f);
584
585                         eFatal("(1)map sizes not equal :( sid %04x tsid %04x onid %04x size %d size2 %d", 
586                                 service.sid, service.tsid, service.onid, 
587                                 servicemap.first.size(), servicemap.second.size() );
588                 }
589 #endif
590                 ptr += eit_event_size;
591                 eit_event=(eit_event_struct*)(((__u8*)eit_event)+eit_event_size);
592         }
593 }
594
595 void eEPGCache::flushEPG(const uniqueEPGKey & s)
596 {
597         eDebug("[EPGC] flushEPG %d", (int)(bool)s);
598         singleLock l(cache_lock);
599         if (s)  // clear only this service
600         {
601                 eventCache::iterator it = eventDB.find(s);
602                 if ( it != eventDB.end() )
603                 {
604                         eventMap &evMap = it->second.first;
605                         timeMap &tmMap = it->second.second;
606                         tmMap.clear();
607                         for (eventMap::iterator i = evMap.begin(); i != evMap.end(); ++i)
608                                 delete i->second;
609                         evMap.clear();
610                         eventDB.erase(it);
611
612                         // TODO .. search corresponding channel for removed service and remove this channel from lastupdated map
613 #ifdef ENABLE_PRIVATE_EPG
614                         contentMaps::iterator it =
615                                 content_time_tables.find(s);
616                         if ( it != content_time_tables.end() )
617                         {
618                                 it->second.clear();
619                                 content_time_tables.erase(it);
620                         }
621 #endif
622                 }
623         }
624         else // clear complete EPG Cache
625         {
626                 for (eventCache::iterator it(eventDB.begin());
627                         it != eventDB.end(); ++it)
628                 {
629                         eventMap &evMap = it->second.first;
630                         timeMap &tmMap = it->second.second;
631                         for (eventMap::iterator i = evMap.begin(); i != evMap.end(); ++i)
632                                 delete i->second;
633                         evMap.clear();
634                         tmMap.clear();
635                 }
636                 eventDB.clear();
637 #ifdef ENABLE_PRIVATE_EPG
638                 content_time_tables.clear();
639 #endif
640                 channelLastUpdated.clear();
641                 singleLock m(channel_map_lock);
642                 for (channelMapIterator it(m_knownChannels.begin()); it != m_knownChannels.end(); ++it)
643                         it->second->startEPG();
644         }
645         eDebug("[EPGC] %i bytes for cache used", eventData::CacheSize);
646 }
647
648 void eEPGCache::cleanLoop()
649 {
650         singleLock s(cache_lock);
651         if (!eventDB.empty())
652         {
653                 eDebug("[EPGC] start cleanloop");
654
655                 time_t now = eDVBLocalTimeHandler::getInstance()->nowTime();
656
657                 for (eventCache::iterator DBIt = eventDB.begin(); DBIt != eventDB.end(); DBIt++)
658                 {
659                         bool updated = false;
660                         for (timeMap::iterator It = DBIt->second.second.begin(); It != DBIt->second.second.end() && It->first < now;)
661                         {
662                                 if ( now > (It->first+It->second->getDuration()) )  // outdated normal entry (nvod references to)
663                                 {
664                                         // remove entry from eventMap
665                                         eventMap::iterator b(DBIt->second.first.find(It->second->getEventID()));
666                                         if ( b != DBIt->second.first.end() )
667                                         {
668                                                 // release Heap Memory for this entry   (new ....)
669 //                                              eDebug("[EPGC] delete old event (evmap)");
670                                                 DBIt->second.first.erase(b);
671                                         }
672
673                                         // remove entry from timeMap
674 //                                      eDebug("[EPGC] release heap mem");
675                                         delete It->second;
676                                         DBIt->second.second.erase(It++);
677 //                                      eDebug("[EPGC] delete old event (timeMap)");
678                                         updated = true;
679                                 }
680                                 else
681                                         ++It;
682                         }
683 #ifdef ENABLE_PRIVATE_EPG
684                         if ( updated )
685                         {
686                                 contentMaps::iterator x =
687                                         content_time_tables.find( DBIt->first );
688                                 if ( x != content_time_tables.end() )
689                                 {
690                                         timeMap &tmMap = eventDB[DBIt->first].second;
691                                         for ( contentMap::iterator i = x->second.begin(); i != x->second.end(); )
692                                         {
693                                                 for ( contentTimeMap::iterator it(i->second.begin());
694                                                         it != i->second.end(); )
695                                                 {
696                                                         if ( tmMap.find(it->second.first) == tmMap.end() )
697                                                                 i->second.erase(it++);
698                                                         else
699                                                                 ++it;
700                                                 }
701                                                 if ( i->second.size() )
702                                                         ++i;
703                                                 else
704                                                         x->second.erase(i++);
705                                         }
706                                 }
707                         }
708 #endif
709                 }
710                 eDebug("[EPGC] stop cleanloop");
711                 eDebug("[EPGC] %i bytes for cache used", eventData::CacheSize);
712         }
713         cleanTimer.start(CLEAN_INTERVAL,true);
714 }
715
716 eEPGCache::~eEPGCache()
717 {
718         messages.send(Message::quit);
719         kill(); // waiting for thread shutdown
720         singleLock s(cache_lock);
721         for (eventCache::iterator evIt = eventDB.begin(); evIt != eventDB.end(); evIt++)
722                 for (eventMap::iterator It = evIt->second.first.begin(); It != evIt->second.first.end(); It++)
723                         delete It->second;
724 }
725
726 void eEPGCache::gotMessage( const Message &msg )
727 {
728         switch (msg.type)
729         {
730                 case Message::flush:
731                         flushEPG(msg.service);
732                         break;
733                 case Message::startChannel:
734                 {
735                         singleLock s(channel_map_lock);
736                         channelMapIterator channel =
737                                 m_knownChannels.find(msg.channel);
738                         if ( channel != m_knownChannels.end() )
739                                 channel->second->startChannel();
740                         break;
741                 }
742                 case Message::leaveChannel:
743                 {
744                         singleLock s(channel_map_lock);
745                         channelMapIterator channel =
746                                 m_knownChannels.find(msg.channel);
747                         if ( channel != m_knownChannels.end() )
748                                 channel->second->abortEPG();
749                         break;
750                 }
751                 case Message::quit:
752                         quit(0);
753                         break;
754 #ifdef ENABLE_PRIVATE_EPG
755                 case Message::got_private_pid:
756                 {
757                         for (channelMapIterator it(m_knownChannels.begin()); it != m_knownChannels.end(); ++it)
758                         {
759                                 eDVBChannel *channel = (eDVBChannel*) it->first;
760                                 channel_data *data = it->second;
761                                 eDVBChannelID chid = channel->getChannelID();
762                                 if ( chid.transport_stream_id.get() == msg.service.tsid &&
763                                         chid.original_network_id.get() == msg.service.onid &&
764                                         data->m_PrivatePid == -1 )
765                                 {
766                                         data->m_PrevVersion = -1;
767                                         data->m_PrivatePid = msg.pid;
768                                         data->m_PrivateService = msg.service;
769                                         int onid = chid.original_network_id.get();
770                                         onid |= 0x80000000;  // we use highest bit as private epg indicator
771                                         chid.original_network_id = onid;
772                                         updateMap::iterator It = channelLastUpdated.find( chid );
773                                         int update = ( It != channelLastUpdated.end() ? ( UPDATE_INTERVAL - ( (eDVBLocalTimeHandler::getInstance()->nowTime()-It->second) * 1000 ) ) : ZAP_DELAY );
774                                         if (update < ZAP_DELAY)
775                                                 update = ZAP_DELAY;
776                                         data->startPrivateTimer.start(update, 1);
777                                         if (update >= 60000)
778                                                 eDebug("[EPGC] next private update in %i min", update/60000);
779                                         else if (update >= 1000)
780                                                 eDebug("[EPGC] next private update in %i sec", update/1000);
781                                         break;
782                                 }
783                         }
784                         break;
785                 }
786 #endif
787                 case Message::timeChanged:
788                         cleanLoop();
789                         break;
790                 default:
791                         eDebug("unhandled EPGCache Message!!");
792                         break;
793         }
794 }
795
796 void eEPGCache::thread()
797 {
798         hasStarted();
799         nice(4);
800         load();
801         cleanLoop();
802         runLoop();
803         save();
804 }
805
806 void eEPGCache::load()
807 {
808         singleLock s(cache_lock);
809         FILE *f = fopen("/hdd/epg.dat", "r");
810         if (f)
811         {
812                 int size=0;
813                 int cnt=0;
814 #if 0
815                 unsigned char md5_saved[16];
816                 unsigned char md5[16];
817                 bool md5ok=false;
818
819                 if (!md5_file("/hdd/epg.dat", 1, md5))
820                 {
821                         FILE *f = fopen("/hdd/epg.dat.md5", "r");
822                         if (f)
823                         {
824                                 fread( md5_saved, 16, 1, f);
825                                 fclose(f);
826                                 if ( !memcmp(md5_saved, md5, 16) )
827                                         md5ok=true;
828                         }
829                 }
830                 if ( md5ok )
831 #endif
832                 {
833                         unsigned int magic=0;
834                         fread( &magic, sizeof(int), 1, f);
835                         if (magic != 0x98765432)
836                         {
837                                 eDebug("[EPGC] epg file has incorrect byte order.. dont read it");
838                                 fclose(f);
839                                 return;
840                         }
841                         char text1[13];
842                         fread( text1, 13, 1, f);
843                         if ( !strncmp( text1, "ENIGMA_EPG_V5", 13) )
844                         {
845                                 fread( &size, sizeof(int), 1, f);
846                                 while(size--)
847                                 {
848                                         uniqueEPGKey key;
849                                         eventMap evMap;
850                                         timeMap tmMap;
851                                         int size=0;
852                                         fread( &key, sizeof(uniqueEPGKey), 1, f);
853                                         fread( &size, sizeof(int), 1, f);
854                                         while(size--)
855                                         {
856                                                 __u8 len=0;
857                                                 __u8 type=0;
858                                                 eventData *event=0;
859                                                 fread( &type, sizeof(__u8), 1, f);
860                                                 fread( &len, sizeof(__u8), 1, f);
861                                                 event = new eventData(0, len, type);
862                                                 event->EITdata = new __u8[len];
863                                                 eventData::CacheSize+=len;
864                                                 fread( event->EITdata, len, 1, f);
865                                                 evMap[ event->getEventID() ]=event;
866                                                 tmMap[ event->getStartTime() ]=event;
867                                                 ++cnt;
868                                         }
869                                         eventDB[key]=std::pair<eventMap,timeMap>(evMap,tmMap);
870                                 }
871                                 eventData::load(f);
872                                 eDebug("[EPGC] %d events read from /hdd/epg.dat", cnt);
873 #ifdef ENABLE_PRIVATE_EPG
874                                 char text2[11];
875                                 fread( text2, 11, 1, f);
876                                 if ( !strncmp( text2, "PRIVATE_EPG", 11) )
877                                 {
878                                         size=0;
879                                         fread( &size, sizeof(int), 1, f);
880                                         while(size--)
881                                         {
882                                                 int size=0;
883                                                 uniqueEPGKey key;
884                                                 fread( &key, sizeof(uniqueEPGKey), 1, f);
885                                                 eventMap &evMap=eventDB[key].first;
886                                                 fread( &size, sizeof(int), 1, f);
887                                                 while(size--)
888                                                 {
889                                                         int size;
890                                                         int content_id;
891                                                         fread( &content_id, sizeof(int), 1, f);
892                                                         fread( &size, sizeof(int), 1, f);
893                                                         while(size--)
894                                                         {
895                                                                 time_t time1, time2;
896                                                                 __u16 event_id;
897                                                                 fread( &time1, sizeof(time_t), 1, f);
898                                                                 fread( &time2, sizeof(time_t), 1, f);
899                                                                 fread( &event_id, sizeof(__u16), 1, f);
900                                                                 content_time_tables[key][content_id][time1]=std::pair<time_t, __u16>(time2, event_id);
901                                                                 eventMap::iterator it =
902                                                                         evMap.find(event_id);
903                                                                 if (it != evMap.end())
904                                                                         it->second->type = PRIVATE;
905                                                         }
906                                                 }
907                                         }
908                                 }
909 #endif // ENABLE_PRIVATE_EPG
910                         }
911                         else
912                                 eDebug("[EPGC] don't read old epg database");
913                         fclose(f);
914                 }
915         }
916 }
917
918 void eEPGCache::save()
919 {
920         struct statfs s;
921         off64_t tmp;
922         if (statfs("/hdd", &s)<0)
923                 tmp=0;
924         else
925         {
926                 tmp=s.f_blocks;
927                 tmp*=s.f_bsize;
928         }
929
930         // prevent writes to builtin flash
931         if ( tmp < 1024*1024*50 ) // storage size < 50MB
932                 return;
933
934         // check for enough free space on storage
935         tmp=s.f_bfree;
936         tmp*=s.f_bsize;
937         if ( tmp < (eventData::CacheSize*12)/10 ) // 20% overhead
938                 return;
939
940         FILE *f = fopen("/hdd/epg.dat", "w");
941         int cnt=0;
942         if ( f )
943         {
944                 unsigned int magic = 0x98765432;
945                 fwrite( &magic, sizeof(int), 1, f);
946                 const char *text = "ENIGMA_EPG_V5";
947                 fwrite( text, 13, 1, f );
948                 int size = eventDB.size();
949                 fwrite( &size, sizeof(int), 1, f );
950                 for (eventCache::iterator service_it(eventDB.begin()); service_it != eventDB.end(); ++service_it)
951                 {
952                         timeMap &timemap = service_it->second.second;
953                         fwrite( &service_it->first, sizeof(uniqueEPGKey), 1, f);
954                         size = timemap.size();
955                         fwrite( &size, sizeof(int), 1, f);
956                         for (timeMap::iterator time_it(timemap.begin()); time_it != timemap.end(); ++time_it)
957                         {
958                                 __u8 len = time_it->second->ByteSize;
959                                 fwrite( &time_it->second->type, sizeof(__u8), 1, f );
960                                 fwrite( &len, sizeof(__u8), 1, f);
961                                 fwrite( time_it->second->EITdata, len, 1, f);
962                                 ++cnt;
963                         }
964                 }
965                 eDebug("[EPGC] %d events written to /hdd/epg.dat", cnt);
966                 eventData::save(f);
967 #ifdef ENABLE_PRIVATE_EPG
968                 const char* text3 = "PRIVATE_EPG";
969                 fwrite( text3, 11, 1, f );
970                 size = content_time_tables.size();
971                 fwrite( &size, sizeof(int), 1, f);
972                 for (contentMaps::iterator a = content_time_tables.begin(); a != content_time_tables.end(); ++a)
973                 {
974                         contentMap &content_time_table = a->second;
975                         fwrite( &a->first, sizeof(uniqueEPGKey), 1, f);
976                         int size = content_time_table.size();
977                         fwrite( &size, sizeof(int), 1, f);
978                         for (contentMap::iterator i = content_time_table.begin(); i != content_time_table.end(); ++i )
979                         {
980                                 int size = i->second.size();
981                                 fwrite( &i->first, sizeof(int), 1, f);
982                                 fwrite( &size, sizeof(int), 1, f);
983                                 for ( contentTimeMap::iterator it(i->second.begin());
984                                         it != i->second.end(); ++it )
985                                 {
986                                         fwrite( &it->first, sizeof(time_t), 1, f);
987                                         fwrite( &it->second.first, sizeof(time_t), 1, f);
988                                         fwrite( &it->second.second, sizeof(__u16), 1, f);
989                                 }
990                         }
991                 }
992 #endif
993                 fclose(f);
994 #if 0
995                 unsigned char md5[16];
996                 if (!md5_file("/hdd/epg.dat", 1, md5))
997                 {
998                         FILE *f = fopen("/hdd/epg.dat.md5", "w");
999                         if (f)
1000                         {
1001                                 fwrite( md5, 16, 1, f);
1002                                 fclose(f);
1003                         }
1004                 }
1005 #endif
1006         }
1007 }
1008
1009 eEPGCache::channel_data::channel_data(eEPGCache *ml)
1010         :cache(ml)
1011         ,abortTimer(ml), zapTimer(ml), state(0)
1012         ,isRunning(0), haveData(0)
1013 #ifdef ENABLE_PRIVATE_EPG
1014         ,startPrivateTimer(ml)
1015 #endif
1016 #ifdef ENABLE_MHW_EPG
1017         ,m_MHWTimeoutTimer(ml)
1018 #endif
1019 {
1020 #ifdef ENABLE_MHW_EPG
1021         CONNECT(m_MHWTimeoutTimer.timeout, eEPGCache::channel_data::MHWTimeout);
1022 #endif
1023         CONNECT(zapTimer.timeout, eEPGCache::channel_data::startEPG);
1024         CONNECT(abortTimer.timeout, eEPGCache::channel_data::abortNonAvail);
1025 #ifdef ENABLE_PRIVATE_EPG
1026         CONNECT(startPrivateTimer.timeout, eEPGCache::channel_data::startPrivateReader);
1027 #endif
1028         pthread_mutex_init(&channel_active, 0);
1029 }
1030
1031 bool eEPGCache::channel_data::finishEPG()
1032 {
1033         if (!isRunning)  // epg ready
1034         {
1035                 eDebug("[EPGC] stop caching events(%ld)", eDVBLocalTimeHandler::getInstance()->nowTime());
1036                 zapTimer.start(UPDATE_INTERVAL, 1);
1037                 eDebug("[EPGC] next update in %i min", UPDATE_INTERVAL / 60000);
1038                 for (int i=0; i < 3; ++i)
1039                 {
1040                         seenSections[i].clear();
1041                         calcedSections[i].clear();
1042                 }
1043                 singleLock l(cache->cache_lock);
1044                 cache->channelLastUpdated[channel->getChannelID()] = eDVBLocalTimeHandler::getInstance()->nowTime();
1045 #ifdef ENABLE_MHW_EPG
1046                 cleanup();
1047 #endif
1048                 return true;
1049         }
1050         return false;
1051 }
1052
1053 void eEPGCache::channel_data::startEPG()
1054 {
1055         eDebug("[EPGC] start caching events(%ld)", eDVBLocalTimeHandler::getInstance()->nowTime());
1056         state=0;
1057         haveData=0;
1058         for (int i=0; i < 3; ++i)
1059         {
1060                 seenSections[i].clear();
1061                 calcedSections[i].clear();
1062         }
1063
1064         eDVBSectionFilterMask mask;
1065         memset(&mask, 0, sizeof(mask));
1066
1067 #ifdef ENABLE_MHW_EPG
1068         mask.pid = 0xD3;
1069         mask.data[0] = 0x91;
1070         mask.mask[0] = 0xFF;
1071         m_MHWReader->connectRead(slot(*this, &eEPGCache::channel_data::readMHWData), m_MHWConn);
1072         m_MHWReader->start(mask);
1073         isRunning |= MHW;
1074         memcpy(&m_MHWFilterMask, &mask, sizeof(eDVBSectionFilterMask));
1075
1076         mask.pid = 0x231;
1077         mask.data[0] = 0xC8;
1078         mask.mask[0] = 0xFF;
1079         mask.data[1] = 0;
1080         mask.mask[1] = 0xFF;
1081         m_MHWReader2->connectRead(slot(*this, &eEPGCache::channel_data::readMHWData2), m_MHWConn2);
1082         m_MHWReader2->start(mask);
1083         isRunning |= MHW;
1084         memcpy(&m_MHWFilterMask2, &mask, sizeof(eDVBSectionFilterMask));
1085         mask.data[1] = 0;
1086         mask.mask[1] = 0;
1087 #endif
1088
1089         mask.pid = 0x12;
1090         mask.flags = eDVBSectionFilterMask::rfCRC;
1091
1092         mask.data[0] = 0x4E;
1093         mask.mask[0] = 0xFE;
1094         m_NowNextReader->connectRead(slot(*this, &eEPGCache::channel_data::readData), m_NowNextConn);
1095         m_NowNextReader->start(mask);
1096         isRunning |= NOWNEXT;
1097
1098         mask.data[0] = 0x50;
1099         mask.mask[0] = 0xF0;
1100         m_ScheduleReader->connectRead(slot(*this, &eEPGCache::channel_data::readData), m_ScheduleConn);
1101         m_ScheduleReader->start(mask);
1102         isRunning |= SCHEDULE;
1103
1104         mask.data[0] = 0x60;
1105         m_ScheduleOtherReader->connectRead(slot(*this, &eEPGCache::channel_data::readData), m_ScheduleOtherConn);
1106         m_ScheduleOtherReader->start(mask);
1107         isRunning |= SCHEDULE_OTHER;
1108
1109         abortTimer.start(7000,true);
1110 }
1111
1112 void eEPGCache::channel_data::abortNonAvail()
1113 {
1114         if (!state)
1115         {
1116                 if ( !(haveData&NOWNEXT) && (isRunning&NOWNEXT) )
1117                 {
1118                         eDebug("[EPGC] abort non avail nownext reading");
1119                         isRunning &= ~NOWNEXT;
1120                         m_NowNextReader->stop();
1121                         m_NowNextConn=0;
1122                 }
1123                 if ( !(haveData&SCHEDULE) && (isRunning&SCHEDULE) )
1124                 {
1125                         eDebug("[EPGC] abort non avail schedule reading");
1126                         isRunning &= ~SCHEDULE;
1127                         m_ScheduleReader->stop();
1128                         m_ScheduleConn=0;
1129                 }
1130                 if ( !(haveData&SCHEDULE_OTHER) && (isRunning&SCHEDULE_OTHER) )
1131                 {
1132                         eDebug("[EPGC] abort non avail schedule_other reading");
1133                         isRunning &= ~SCHEDULE_OTHER;
1134                         m_ScheduleOtherReader->stop();
1135                         m_ScheduleOtherConn=0;
1136                 }
1137 #ifdef ENABLE_MHW_EPG
1138                 if ( !(haveData&MHW) && (isRunning&MHW) )
1139                 {
1140                         eDebug("[EPGC] abort non avail mhw reading");
1141                         isRunning &= ~MHW;
1142                         m_MHWReader->stop();
1143                         m_MHWConn=0;
1144                         m_MHWReader2->stop();
1145                         m_MHWConn2=0;
1146                 }
1147 #endif
1148                 if ( isRunning )
1149                         abortTimer.start(90000, true);
1150                 else
1151                 {
1152                         ++state;
1153                         for (int i=0; i < 3; ++i)
1154                         {
1155                                 seenSections[i].clear();
1156                                 calcedSections[i].clear();
1157                         }
1158                 }
1159         }
1160         ++state;
1161 }
1162
1163 void eEPGCache::channel_data::startChannel()
1164 {
1165         pthread_mutex_lock(&channel_active);
1166         updateMap::iterator It = cache->channelLastUpdated.find( channel->getChannelID() );
1167
1168         int update = ( It != cache->channelLastUpdated.end() ? ( UPDATE_INTERVAL - ( (eDVBLocalTimeHandler::getInstance()->nowTime()-It->second) * 1000 ) ) : ZAP_DELAY );
1169
1170         if (update < ZAP_DELAY)
1171                 update = ZAP_DELAY;
1172
1173         zapTimer.start(update, 1);
1174         if (update >= 60000)
1175                 eDebug("[EPGC] next update in %i min", update/60000);
1176         else if (update >= 1000)
1177                 eDebug("[EPGC] next update in %i sec", update/1000);
1178 }
1179
1180 void eEPGCache::channel_data::abortEPG()
1181 {
1182         for (int i=0; i < 3; ++i)
1183         {
1184                 seenSections[i].clear();
1185                 calcedSections[i].clear();
1186         }
1187         abortTimer.stop();
1188         zapTimer.stop();
1189         if (isRunning)
1190         {
1191                 eDebug("[EPGC] abort caching events !!");
1192                 if (isRunning & SCHEDULE)
1193                 {
1194                         isRunning &= ~SCHEDULE;
1195                         m_ScheduleReader->stop();
1196                         m_ScheduleConn=0;
1197                 }
1198                 if (isRunning & NOWNEXT)
1199                 {
1200                         isRunning &= ~NOWNEXT;
1201                         m_NowNextReader->stop();
1202                         m_NowNextConn=0;
1203                 }
1204                 if (isRunning & SCHEDULE_OTHER)
1205                 {
1206                         isRunning &= ~SCHEDULE_OTHER;
1207                         m_ScheduleOtherReader->stop();
1208                         m_ScheduleOtherConn=0;
1209                 }
1210 #ifdef ENABLE_MHW_EPG
1211                 if (isRunning & MHW)
1212                 {
1213                         isRunning &= ~MHW;
1214                         m_MHWReader->stop();
1215                         m_MHWConn=0;
1216                         m_MHWReader2->stop();
1217                         m_MHWConn2=0;
1218                 }
1219 #endif
1220         }
1221 #ifdef ENABLE_PRIVATE_EPG
1222         if (m_PrivateReader)
1223                 m_PrivateReader->stop();
1224         if (m_PrivateConn)
1225                 m_PrivateConn=0;
1226 #endif
1227         pthread_mutex_unlock(&channel_active);
1228 }
1229
1230 void eEPGCache::channel_data::readData( const __u8 *data)
1231 {
1232         int source;
1233         int map;
1234         iDVBSectionReader *reader=NULL;
1235         switch(data[0])
1236         {
1237                 case 0x4E ... 0x4F:
1238                         reader=m_NowNextReader;
1239                         source=NOWNEXT;
1240                         map=0;
1241                         break;
1242                 case 0x50 ... 0x5F:
1243                         reader=m_ScheduleReader;
1244                         source=SCHEDULE;
1245                         map=1;
1246                         break;
1247                 case 0x60 ... 0x6F:
1248                         reader=m_ScheduleOtherReader;
1249                         source=SCHEDULE_OTHER;
1250                         map=2;
1251                         break;
1252                 default:
1253                         eDebug("[EPGC] unknown table_id !!!");
1254                         return;
1255         }
1256         tidMap &seenSections = this->seenSections[map];
1257         tidMap &calcedSections = this->calcedSections[map];
1258         if ( state == 1 && calcedSections == seenSections || state > 1 )
1259         {
1260                 eDebugNoNewLine("[EPGC] ");
1261                 switch (source)
1262                 {
1263                         case NOWNEXT:
1264                                 m_NowNextConn=0;
1265                                 eDebugNoNewLine("nownext");
1266                                 break;
1267                         case SCHEDULE:
1268                                 m_ScheduleConn=0;
1269                                 eDebugNoNewLine("schedule");
1270                                 break;
1271                         case SCHEDULE_OTHER:
1272                                 m_ScheduleOtherConn=0;
1273                                 eDebugNoNewLine("schedule other");
1274                                 break;
1275                         default: eDebugNoNewLine("unknown");break;
1276                 }
1277                 eDebug(" finished(%ld)", eDVBLocalTimeHandler::getInstance()->nowTime());
1278                 if ( reader )
1279                         reader->stop();
1280                 isRunning &= ~source;
1281                 if (!isRunning)
1282                         finishEPG();
1283         }
1284         else
1285         {
1286                 eit_t *eit = (eit_t*) data;
1287                 __u32 sectionNo = data[0] << 24;
1288                 sectionNo |= data[3] << 16;
1289                 sectionNo |= data[4] << 8;
1290                 sectionNo |= eit->section_number;
1291
1292                 tidMap::iterator it =
1293                         seenSections.find(sectionNo);
1294
1295                 if ( it == seenSections.end() )
1296                 {
1297                         seenSections.insert(sectionNo);
1298                         calcedSections.insert(sectionNo);
1299                         __u32 tmpval = sectionNo & 0xFFFFFF00;
1300                         __u8 incr = source == NOWNEXT ? 1 : 8;
1301                         for ( int i = 0; i <= eit->last_section_number; i+=incr )
1302                         {
1303                                 if ( i == eit->section_number )
1304                                 {
1305                                         for (int x=i; x <= eit->segment_last_section_number; ++x)
1306                                                 calcedSections.insert(tmpval|(x&0xFF));
1307                                 }
1308                                 else
1309                                         calcedSections.insert(tmpval|(i&0xFF));
1310                         }
1311                         cache->sectionRead(data, source, this);
1312                 }
1313         }
1314 }
1315
1316 RESULT eEPGCache::lookupEventTime(const eServiceReference &service, time_t t, const eventData *&result, int direction)
1317 // if t == -1 we search the current event...
1318 {
1319         singleLock s(cache_lock);
1320         uniqueEPGKey key(service);
1321
1322         // check if EPG for this service is ready...
1323         eventCache::iterator It = eventDB.find( key );
1324         if ( It != eventDB.end() && !It->second.first.empty() ) // entrys cached ?
1325         {
1326                 if (t==-1)
1327                         t = eDVBLocalTimeHandler::getInstance()->nowTime();
1328                 timeMap::iterator i = direction <= 0 ? It->second.second.lower_bound(t) :  // find > or equal
1329                         It->second.second.upper_bound(t); // just >
1330                 if ( i != It->second.second.end() )
1331                 {
1332                         if ( direction < 0 || (direction == 0 && i->second->getStartTime() > t) )
1333                         {
1334                                 timeMap::iterator x = i;
1335                                 --x;
1336                                 if ( x != It->second.second.end() )
1337                                 {
1338                                         time_t start_time = x->second->getStartTime();
1339                                         if (direction >= 0)
1340                                         {
1341                                                 if (t < start_time)
1342                                                         return -1;
1343                                                 if (t > (start_time+x->second->getDuration()))
1344                                                         return -1;
1345                                         }
1346                                         i = x;
1347                                 }
1348                                 else
1349                                         return -1;
1350                         }
1351                         result = i->second;
1352                         return 0;
1353                 }
1354         }
1355         return -1;
1356 }
1357
1358 RESULT eEPGCache::lookupEventTime(const eServiceReference &service, time_t t, const eit_event_struct *&result, int direction)
1359 {
1360         singleLock s(cache_lock);
1361         const eventData *data=0;
1362         RESULT ret = lookupEventTime(service, t, data, direction);
1363         if ( !ret && data )
1364                 result = data->get();
1365         return ret;
1366 }
1367
1368 RESULT eEPGCache::lookupEventTime(const eServiceReference &service, time_t t, Event *& result, int direction)
1369 {
1370         singleLock s(cache_lock);
1371         const eventData *data=0;
1372         RESULT ret = lookupEventTime(service, t, data, direction);
1373         if ( !ret && data )
1374                 result = new Event((uint8_t*)data->get());
1375         return ret;
1376 }
1377
1378 RESULT eEPGCache::lookupEventTime(const eServiceReference &service, time_t t, ePtr<eServiceEvent> &result, int direction)
1379 {
1380         singleLock s(cache_lock);
1381         const eventData *data=0;
1382         RESULT ret = lookupEventTime(service, t, data, direction);
1383         if ( !ret && data )
1384         {
1385                 Event ev((uint8_t*)data->get());
1386                 result = new eServiceEvent();
1387                 const eServiceReferenceDVB &ref = (const eServiceReferenceDVB&)service;
1388                 ret = result->parseFrom(&ev, (ref.getTransportStreamID().get()<<16)|ref.getOriginalNetworkID().get());
1389         }
1390         return ret;
1391 }
1392
1393 RESULT eEPGCache::lookupEventId(const eServiceReference &service, int event_id, const eventData *&result )
1394 {
1395         singleLock s(cache_lock);
1396         uniqueEPGKey key( service );
1397
1398         eventCache::iterator It = eventDB.find( key );
1399         if ( It != eventDB.end() && !It->second.first.empty() ) // entrys cached?
1400         {
1401                 eventMap::iterator i( It->second.first.find( event_id ));
1402                 if ( i != It->second.first.end() )
1403                 {
1404                         result = i->second;
1405                         return 0;
1406                 }
1407                 else
1408                 {
1409                         result = 0;
1410                         eDebug("[EPGC] event %04x not found in epgcache", event_id);
1411                 }
1412         }
1413         return -1;
1414 }
1415
1416 RESULT eEPGCache::lookupEventId(const eServiceReference &service, int event_id, const eit_event_struct *&result)
1417 {
1418         singleLock s(cache_lock);
1419         const eventData *data=0;
1420         RESULT ret = lookupEventId(service, event_id, data);
1421         if ( !ret && data )
1422                 result = data->get();
1423         return ret;
1424 }
1425
1426 RESULT eEPGCache::lookupEventId(const eServiceReference &service, int event_id, Event *& result)
1427 {
1428         singleLock s(cache_lock);
1429         const eventData *data=0;
1430         RESULT ret = lookupEventId(service, event_id, data);
1431         if ( !ret && data )
1432                 result = new Event((uint8_t*)data->get());
1433         return ret;
1434 }
1435
1436 RESULT eEPGCache::lookupEventId(const eServiceReference &service, int event_id, ePtr<eServiceEvent> &result)
1437 {
1438         singleLock s(cache_lock);
1439         const eventData *data=0;
1440         RESULT ret = lookupEventId(service, event_id, data);
1441         if ( !ret && data )
1442         {
1443                 Event ev((uint8_t*)data->get());
1444                 result = new eServiceEvent();
1445                 const eServiceReferenceDVB &ref = (const eServiceReferenceDVB&)service;
1446                 ret = result->parseFrom(&ev, (ref.getTransportStreamID().get()<<16)|ref.getOriginalNetworkID().get());
1447         }
1448         return ret;
1449 }
1450
1451 RESULT eEPGCache::startTimeQuery(const eServiceReference &service, time_t begin, int minutes)
1452 {
1453         eventCache::iterator It = eventDB.find( service );
1454         if ( It != eventDB.end() && It->second.second.size() )
1455         {
1456                 m_timemap_end = minutes != -1 ? It->second.second.upper_bound(begin+minutes*60) : It->second.second.end();
1457                 if ( begin != -1 )
1458                 {
1459                         m_timemap_cursor = It->second.second.lower_bound(begin);
1460                         if ( m_timemap_cursor != It->second.second.end() )
1461                         {
1462                                 if ( m_timemap_cursor->second->getStartTime() != begin )
1463                                 {
1464                                         timeMap::iterator x = m_timemap_cursor;
1465                                         --x;
1466                                         if ( x != It->second.second.end() )
1467                                         {
1468                                                 time_t start_time = x->second->getStartTime();
1469                                                 if ( begin > start_time && begin < (start_time+x->second->getDuration()))
1470                                                         m_timemap_cursor = x;
1471                                         }
1472                                 }
1473                         }
1474                 }
1475                 else
1476                         m_timemap_cursor = It->second.second.begin();
1477                 const eServiceReferenceDVB &ref = (const eServiceReferenceDVB&)service;
1478                 currentQueryTsidOnid = (ref.getTransportStreamID().get()<<16) | ref.getOriginalNetworkID().get();
1479                 return 0;
1480         }
1481         return -1;
1482 }
1483
1484 RESULT eEPGCache::getNextTimeEntry(const eventData *& result)
1485 {
1486         if ( m_timemap_cursor != m_timemap_end )
1487         {
1488                 result = m_timemap_cursor++->second;
1489                 return 0;
1490         }
1491         return -1;
1492 }
1493
1494 RESULT eEPGCache::getNextTimeEntry(const eit_event_struct *&result)
1495 {
1496         if ( m_timemap_cursor != m_timemap_end )
1497         {
1498                 result = m_timemap_cursor++->second->get();
1499                 return 0;
1500         }
1501         return -1;
1502 }
1503
1504 RESULT eEPGCache::getNextTimeEntry(Event *&result)
1505 {
1506         if ( m_timemap_cursor != m_timemap_end )
1507         {
1508                 result = new Event((uint8_t*)m_timemap_cursor++->second->get());
1509                 return 0;
1510         }
1511         return -1;
1512 }
1513
1514 RESULT eEPGCache::getNextTimeEntry(ePtr<eServiceEvent> &result)
1515 {
1516         if ( m_timemap_cursor != m_timemap_end )
1517         {
1518                 Event ev((uint8_t*)m_timemap_cursor++->second->get());
1519                 result = new eServiceEvent();
1520                 return result->parseFrom(&ev, currentQueryTsidOnid);
1521         }
1522         return -1;
1523 }
1524
1525 void fillTuple(ePyObject tuple, char *argstring, int argcount, ePyObject service, ePtr<eServiceEvent> &ptr, ePyObject nowTime, ePyObject service_name )
1526 {
1527         ePyObject tmp;
1528         int pos=0;
1529         while(pos < argcount)
1530         {
1531                 bool inc_refcount=false;
1532                 switch(argstring[pos])
1533                 {
1534                         case '0': // PyLong 0
1535                                 tmp = PyLong_FromLong(0);
1536                                 break;
1537                         case 'I': // Event Id
1538                                 tmp = ptr ? PyLong_FromLong(ptr->getEventId()) : NULL;
1539                                 break;
1540                         case 'B': // Event Begin Time
1541                                 tmp = ptr ? PyLong_FromLong(ptr->getBeginTime()) : NULL;
1542                                 break;
1543                         case 'D': // Event Duration
1544                                 tmp = ptr ? PyLong_FromLong(ptr->getDuration()) : NULL;
1545                                 break;
1546                         case 'T': // Event Title
1547                                 tmp = ptr ? PyString_FromString(ptr->getEventName().c_str()) : NULL;
1548                                 break;
1549                         case 'S': // Event Short Description
1550                                 tmp = ptr ? PyString_FromString(ptr->getShortDescription().c_str()) : NULL;
1551                                 break;
1552                         case 'E': // Event Extended Description
1553                                 tmp = ptr ? PyString_FromString(ptr->getExtendedDescription().c_str()) : NULL;
1554                                 break;
1555                         case 'C': // Current Time
1556                                 tmp = nowTime;
1557                                 inc_refcount = true;
1558                                 break;
1559                         case 'R': // service reference string
1560                                 tmp = service;
1561                                 inc_refcount = true;
1562                                 break;
1563                         case 'N': // service name
1564                                 tmp = service_name;
1565                                 inc_refcount = true;
1566                 }
1567                 if (!tmp)
1568                 {
1569                         tmp = Py_None;
1570                         inc_refcount = true;
1571                 }
1572                 if (inc_refcount)
1573                         Py_INCREF(tmp);
1574                 PyTuple_SET_ITEM(tuple, pos++, tmp);
1575         }
1576 }
1577
1578 int handleEvent(ePtr<eServiceEvent> &ptr, ePyObject dest_list, char* argstring, int argcount, ePyObject service, ePyObject nowTime, ePyObject service_name, ePyObject convertFunc, ePyObject convertFuncArgs)
1579 {
1580         if (convertFunc)
1581         {
1582                 fillTuple(convertFuncArgs, argstring, argcount, service, ptr, nowTime, service_name);
1583                 ePyObject result = PyObject_CallObject(convertFunc, convertFuncArgs);
1584                 if (result == NULL)
1585                 {
1586                         if (service_name)
1587                                 Py_DECREF(service_name);
1588                         if (nowTime)
1589                                 Py_DECREF(nowTime);
1590                         Py_DECREF(convertFuncArgs);
1591                         Py_DECREF(dest_list);
1592                         PyErr_SetString(PyExc_StandardError,
1593                                 "error in convertFunc execute");
1594                         eDebug("error in convertFunc execute");
1595                         return -1;
1596                 }
1597                 PyList_Append(dest_list, result);
1598                 Py_DECREF(result);
1599         }
1600         else
1601         {
1602                 ePyObject tuple = PyTuple_New(argcount);
1603                 fillTuple(tuple, argstring, argcount, service, ptr, nowTime, service_name);
1604                 PyList_Append(dest_list, tuple);
1605                 Py_DECREF(tuple);
1606         }
1607         return 0;
1608 }
1609
1610 // here we get a python list
1611 // the first entry in the list is a python string to specify the format of the returned tuples (in a list)
1612 //   0 = PyLong(0)
1613 //   I = Event Id
1614 //   B = Event Begin Time
1615 //   D = Event Duration
1616 //   T = Event Title
1617 //   S = Event Short Description
1618 //   E = Event Extended Description
1619 //   C = Current Time
1620 //   R = Service Reference
1621 //   N = Service Name
1622 // then for each service follows a tuple
1623 //   first tuple entry is the servicereference (as string... use the ref.toString() function)
1624 //   the second is the type of query
1625 //     2 = event_id
1626 //    -1 = event before given start_time
1627 //     0 = event intersects given start_time
1628 //    +1 = event after given start_time
1629 //   the third
1630 //      when type is eventid it is the event_id
1631 //      when type is time then it is the start_time ( 0 for now_time )
1632 //   the fourth is the end_time .. ( optional .. for query all events in time range)
1633
1634 PyObject *eEPGCache::lookupEvent(ePyObject list, ePyObject convertFunc)
1635 {
1636         ePyObject convertFuncArgs;
1637         int argcount=0;
1638         char *argstring=NULL;
1639         if (!PyList_Check(list))
1640         {
1641                 PyErr_SetString(PyExc_StandardError,
1642                         "type error");
1643                 eDebug("no list");
1644                 return NULL;
1645         }
1646         int listIt=0;
1647         int listSize=PyList_Size(list);
1648         if (!listSize)
1649         {
1650                 PyErr_SetString(PyExc_StandardError,
1651                         "not params given");
1652                 eDebug("not params given");
1653                 return NULL;
1654         }
1655         else 
1656         {
1657                 ePyObject argv=PyList_GET_ITEM(list, 0); // borrowed reference!
1658                 if (PyString_Check(argv))
1659                 {
1660                         argstring = PyString_AS_STRING(argv);
1661                         ++listIt;
1662                 }
1663                 else
1664                         argstring = "I"; // just event id as default
1665                 argcount = strlen(argstring);
1666 //              eDebug("have %d args('%s')", argcount, argstring);
1667         }
1668         if (convertFunc)
1669         {
1670                 if (!PyCallable_Check(convertFunc))
1671                 {
1672                         PyErr_SetString(PyExc_StandardError,
1673                                 "convertFunc must be callable");
1674                         eDebug("convertFunc is not callable");
1675                         return NULL;
1676                 }
1677                 convertFuncArgs = PyTuple_New(argcount);
1678         }
1679
1680         ePyObject nowTime = strchr(argstring, 'C') ?
1681                 PyLong_FromLong(eDVBLocalTimeHandler::getInstance()->nowTime()) :
1682                 NULL;
1683
1684         bool must_get_service_name = strchr(argstring, 'N') ? true : false;
1685
1686         // create dest list
1687         ePyObject dest_list=PyList_New(0);
1688         while(listSize > listIt)
1689         {
1690                 ePyObject item=PyList_GET_ITEM(list, listIt++); // borrowed reference!
1691                 if (PyTuple_Check(item))
1692                 {
1693                         bool service_changed=false;
1694                         int type=0;
1695                         long event_id=-1;
1696                         time_t stime=-1;
1697                         int minutes=0;
1698                         int tupleSize=PyTuple_Size(item);
1699                         int tupleIt=0;
1700                         ePyObject service;
1701                         while(tupleSize > tupleIt)  // parse query args
1702                         {
1703                                 ePyObject entry=PyTuple_GET_ITEM(item, tupleIt); // borrowed reference!
1704                                 switch(tupleIt++)
1705                                 {
1706                                         case 0:
1707                                         {
1708                                                 if (!PyString_Check(entry))
1709                                                 {
1710                                                         eDebug("tuple entry 0 is no a string");
1711                                                         goto skip_entry;
1712                                                 }
1713                                                 service = entry;
1714                                                 break;
1715                                         }
1716                                         case 1:
1717                                                 type=PyInt_AsLong(entry);
1718                                                 if (type < -1 || type > 2)
1719                                                 {
1720                                                         eDebug("unknown type %d", type);
1721                                                         goto skip_entry;
1722                                                 }
1723                                                 break;
1724                                         case 2:
1725                                                 event_id=stime=PyInt_AsLong(entry);
1726                                                 break;
1727                                         case 3:
1728                                                 minutes=PyInt_AsLong(entry);
1729                                                 break;
1730                                         default:
1731                                                 eDebug("unneeded extra argument");
1732                                                 break;
1733                                 }
1734                         }
1735                         eServiceReference ref(PyString_AS_STRING(service));
1736                         if (ref.type != eServiceReference::idDVB)
1737                         {
1738                                 eDebug("service reference for epg query is not valid");
1739                                 continue;
1740                         }
1741
1742                         // redirect subservice querys to parent service
1743                         eServiceReferenceDVB &dvb_ref = (eServiceReferenceDVB&)ref;
1744                         if (dvb_ref.getParentTransportStreamID().get()) // linkage subservice
1745                         {
1746                                 eServiceCenterPtr service_center;
1747                                 if (!eServiceCenter::getPrivInstance(service_center))
1748                                 {
1749                                         dvb_ref.setTransportStreamID( dvb_ref.getParentTransportStreamID() );
1750                                         dvb_ref.setServiceID( dvb_ref.getParentServiceID() );
1751                                         dvb_ref.setParentTransportStreamID(eTransportStreamID(0));
1752                                         dvb_ref.setParentServiceID(eServiceID(0));
1753                                         dvb_ref.name="";
1754                                         service = PyString_FromString(dvb_ref.toString().c_str());
1755                                         service_changed = true;
1756                                 }
1757                         }
1758
1759                         ePyObject service_name;
1760                         if (must_get_service_name)
1761                         {
1762                                 ePtr<iStaticServiceInformation> sptr;
1763                                 eServiceCenterPtr service_center;
1764                                 eServiceCenter::getPrivInstance(service_center);
1765                                 if (service_center)
1766                                 {
1767                                         service_center->info(ref, sptr);
1768                                         if (sptr)
1769                                         {
1770                                                 std::string name;
1771                                                 sptr->getName(ref, name);
1772                                                 if (name.length())
1773                                                         service_name = PyString_FromString(name.c_str());
1774                                         }
1775                                 }
1776                                 if (!service_name)
1777                                         service_name = PyString_FromString("<n/a>");
1778                         }
1779                         if (minutes)
1780                         {
1781                                 Lock();
1782                                 if (!startTimeQuery(ref, stime, minutes))
1783                                 {
1784                                         ePtr<eServiceEvent> ptr;
1785                                         while (!getNextTimeEntry(ptr))
1786                                         {
1787                                                 if (handleEvent(ptr, dest_list, argstring, argcount, service, nowTime, service_name, convertFunc, convertFuncArgs))
1788                                                 {
1789                                                         Unlock();
1790                                                         return 0;  // error
1791                                                 }
1792                                         }
1793                                 }
1794                                 Unlock();
1795                         }
1796                         else
1797                         {
1798                                 ePtr<eServiceEvent> ptr;
1799                                 if (stime)
1800                                 {
1801                                         if (type == 2)
1802                                                 lookupEventId(ref, event_id, ptr);
1803                                         else
1804                                                 lookupEventTime(ref, stime, ptr, type);
1805                                 }
1806                                 if (handleEvent(ptr, dest_list, argstring, argcount, service, nowTime, service_name, convertFunc, convertFuncArgs))
1807                                         return 0; // error
1808                         }
1809                         if (service_changed)
1810                                 Py_DECREF(service);
1811                         if (service_name)
1812                                 Py_DECREF(service_name);
1813                 }
1814 skip_entry:
1815                 ;
1816         }
1817         if (convertFuncArgs)
1818                 Py_DECREF(convertFuncArgs);
1819         if (nowTime)
1820                 Py_DECREF(nowTime);
1821         return dest_list;
1822 }
1823
1824 void fillTuple2(ePyObject tuple, const char *argstring, int argcount, eventData *evData, ePtr<eServiceEvent> &ptr, ePyObject service_name, ePyObject service_reference)
1825 {
1826         ePyObject tmp;
1827         int pos=0;
1828         while(pos < argcount)
1829         {
1830                 bool inc_refcount=false;
1831                 switch(argstring[pos])
1832                 {
1833                         case '0': // PyLong 0
1834                                 tmp = PyLong_FromLong(0);
1835                                 break;
1836                         case 'I': // Event Id
1837                                 tmp = PyLong_FromLong(evData->getEventID());
1838                                 break;
1839                         case 'B': // Event Begin Time
1840                                 if (ptr)
1841                                         tmp = ptr ? PyLong_FromLong(ptr->getBeginTime()) : NULL;
1842                                 else
1843                                         tmp = PyLong_FromLong(evData->getStartTime());
1844                                 break;
1845                         case 'D': // Event Duration
1846                                 if (ptr)
1847                                         tmp = ptr ? PyLong_FromLong(ptr->getDuration()) : NULL;
1848                                 else
1849                                         tmp = PyLong_FromLong(evData->getDuration());
1850                                 break;
1851                         case 'T': // Event Title
1852                                 tmp = ptr ? PyString_FromString(ptr->getEventName().c_str()) : NULL;
1853                                 break;
1854                         case 'S': // Event Short Description
1855                                 tmp = ptr ? PyString_FromString(ptr->getShortDescription().c_str()) : NULL;
1856                                 break;
1857                         case 'E': // Event Extended Description
1858                                 tmp = ptr ? PyString_FromString(ptr->getExtendedDescription().c_str()) : NULL;
1859                                 break;
1860                         case 'R': // service reference string
1861                                 tmp = service_reference;
1862                                 inc_refcount = true;
1863                                 break;
1864                         case 'N': // service name
1865                                 tmp = service_name;
1866                                 inc_refcount = true;
1867                                 break;
1868                 }
1869                 if (!tmp)
1870                 {
1871                         tmp = Py_None;
1872                         inc_refcount = true;
1873                 }
1874                 if (inc_refcount)
1875                         Py_INCREF(tmp);
1876                 PyTuple_SET_ITEM(tuple, pos++, tmp);
1877         }
1878 }
1879
1880 // here we get a python tuple
1881 // the first entry in the tuple is a python string to specify the format of the returned tuples (in a list)
1882 //   I = Event Id
1883 //   B = Event Begin Time
1884 //   D = Event Duration
1885 //   T = Event Title
1886 //   S = Event Short Description
1887 //   E = Event Extended Description
1888 //   R = Service Reference
1889 //   N = Service Name
1890 //  the second tuple entry is the MAX matches value
1891 //  the third tuple entry is the type of query
1892 //     0 = search for similar broadcastings (SIMILAR_BROADCASTINGS_SEARCH)
1893 //     1 = search events with exactly title name (EXAKT_TITLE_SEARCH)
1894 //     2 = search events with text in title name (PARTIAL_TITLE_SEARCH)
1895 //  when type is 0 (SIMILAR_BROADCASTINGS_SEARCH)
1896 //   the fourth is the servicereference string
1897 //   the fifth is the eventid
1898 //  when type is 1 or 2 (EXAKT_TITLE_SEARCH or PARTIAL_TITLE_SEARCH)
1899 //   the fourth is the search text
1900 //   the fifth is
1901 //     0 = case sensitive (CASE_CHECK)
1902 //     1 = case insensitive (NO_CASECHECK)
1903
1904 PyObject *eEPGCache::search(ePyObject arg)
1905 {
1906         ePyObject ret;
1907         int descridx = -1;
1908         __u32 descr[512];
1909         int eventid = -1;
1910         const char *argstring=0;
1911         char *refstr=0;
1912         int argcount=0;
1913         int querytype=-1;
1914         bool needServiceEvent=false;
1915         int maxmatches=0;
1916
1917         if (PyTuple_Check(arg))
1918         {
1919                 int tuplesize=PyTuple_Size(arg);
1920                 if (tuplesize > 0)
1921                 {
1922                         ePyObject obj = PyTuple_GET_ITEM(arg,0);
1923                         if (PyString_Check(obj))
1924                         {
1925                                 argcount = PyString_GET_SIZE(obj);
1926                                 argstring = PyString_AS_STRING(obj);
1927                                 for (int i=0; i < argcount; ++i)
1928                                         switch(argstring[i])
1929                                         {
1930                                         case 'S':
1931                                         case 'E':
1932                                         case 'T':
1933                                                 needServiceEvent=true;
1934                                         default:
1935                                                 break;
1936                                         }
1937                         }
1938                         else
1939                         {
1940                                 PyErr_SetString(PyExc_StandardError,
1941                                         "type error");
1942                                 eDebug("tuple arg 0 is not a string");
1943                                 return NULL;
1944                         }
1945                 }
1946                 if (tuplesize > 1)
1947                         maxmatches = PyLong_AsLong(PyTuple_GET_ITEM(arg, 1));
1948                 if (tuplesize > 2)
1949                 {
1950                         querytype = PyLong_AsLong(PyTuple_GET_ITEM(arg, 2));
1951                         if (tuplesize > 4 && querytype == 0)
1952                         {
1953                                 ePyObject obj = PyTuple_GET_ITEM(arg, 3);
1954                                 if (PyString_Check(obj))
1955                                 {
1956                                         refstr = PyString_AS_STRING(obj);
1957                                         eServiceReferenceDVB ref(refstr);
1958                                         if (ref.valid())
1959                                         {
1960                                                 eventid = PyLong_AsLong(PyTuple_GET_ITEM(arg, 4));
1961                                                 singleLock s(cache_lock);
1962                                                 const eventData *evData = 0;
1963                                                 lookupEventId(ref, eventid, evData);
1964                                                 if (evData)
1965                                                 {
1966                                                         __u8 *data = evData->EITdata;
1967                                                         int tmp = evData->ByteSize-12;
1968                                                         __u32 *p = (__u32*)(data+12);
1969                                                                 // search short and extended event descriptors
1970                                                         while(tmp>0)
1971                                                         {
1972                                                                 __u32 crc = *p++;
1973                                                                 descriptorMap::iterator it =
1974                                                                         eventData::descriptors.find(crc);
1975                                                                 if (it != eventData::descriptors.end())
1976                                                                 {
1977                                                                         __u8 *descr_data = it->second.second;
1978                                                                         switch(descr_data[0])
1979                                                                         {
1980                                                                         case 0x4D ... 0x4E:
1981                                                                                 descr[++descridx]=crc;
1982                                                                         default:
1983                                                                                 break;
1984                                                                         }
1985                                                                 }
1986                                                                 tmp-=4;
1987                                                         }
1988                                                 }
1989                                                 if (descridx<0)
1990                                                         eDebug("event not found");
1991                                         }
1992                                         else
1993                                         {
1994                                                 PyErr_SetString(PyExc_StandardError,
1995                                                         "type error");
1996                                                 eDebug("tuple arg 4 is not a valid service reference string");
1997                                                 return NULL;
1998                                         }
1999                                 }
2000                                 else
2001                                 {
2002                                         PyErr_SetString(PyExc_StandardError,
2003                                         "type error");
2004                                         eDebug("tuple arg 4 is not a string");
2005                                         return NULL;
2006                                 }
2007                         }
2008                         else if (tuplesize > 4 && (querytype == 1 || querytype == 2) )
2009                         {
2010                                 ePyObject obj = PyTuple_GET_ITEM(arg, 3);
2011                                 if (PyString_Check(obj))
2012                                 {
2013                                         int casetype = PyLong_AsLong(PyTuple_GET_ITEM(arg, 4));
2014                                         const char *str = PyString_AS_STRING(obj);
2015                                         int textlen = PyString_GET_SIZE(obj);
2016                                         if (querytype == 1)
2017                                                 eDebug("lookup for events with '%s' as title(%s)", str, casetype?"ignore case":"case sensitive");
2018                                         else
2019                                                 eDebug("lookup for events with '%s' in title(%s)", str, casetype?"ignore case":"case sensitive");
2020                                         singleLock s(cache_lock);
2021                                         for (descriptorMap::iterator it(eventData::descriptors.begin());
2022                                                 it != eventData::descriptors.end() && descridx < 511; ++it)
2023                                         {
2024                                                 __u8 *data = it->second.second;
2025                                                 if ( data[0] == 0x4D ) // short event descriptor
2026                                                 {
2027                                                         int title_len = data[5];
2028                                                         if ( querytype == 1 )
2029                                                         {
2030                                                                 if (title_len > textlen)
2031                                                                         continue;
2032                                                                 else if (title_len < textlen)
2033                                                                         continue;
2034                                                                 if ( casetype )
2035                                                                 {
2036                                                                         if ( !strncasecmp((const char*)data+6, str, title_len) )
2037                                                                         {
2038 //                                                                              std::string s((const char*)data+6, title_len);
2039 //                                                                              eDebug("match1 %s %s", str, s.c_str() );
2040                                                                                 descr[++descridx] = it->first;
2041                                                                         }
2042                                                                 }
2043                                                                 else if ( !strncmp((const char*)data+6, str, title_len) )
2044                                                                 {
2045 //                                                                      std::string s((const char*)data+6, title_len);
2046 //                                                                      eDebug("match2 %s %s", str, s.c_str() );
2047                                                                         descr[++descridx] = it->first;
2048                                                                 }
2049                                                         }
2050                                                         else
2051                                                         {
2052                                                                 int idx=0;
2053                                                                 while((title_len-idx) >= textlen)
2054                                                                 {
2055                                                                         if (casetype)
2056                                                                         {
2057                                                                                 if (!strncasecmp((const char*)data+6+idx, str, textlen) )
2058                                                                                 {
2059                                                                                         descr[++descridx] = it->first;
2060 //                                                                                      std::string s((const char*)data+6, title_len);
2061 //                                                                                      eDebug("match 3 %s %s", str, s.c_str() );
2062                                                                                         break;
2063                                                                                 }
2064                                                                                 else if (!strncmp((const char*)data+6+idx, str, textlen) )
2065                                                                                 {
2066                                                                                         descr[++descridx] = it->first;
2067 //                                                                                      std::string s((const char*)data+6, title_len);
2068 //                                                                                      eDebug("match 4 %s %s", str, s.c_str() );
2069                                                                                         break;
2070                                                                                 }
2071                                                                         }
2072                                                                         ++idx;
2073                                                                 }
2074                                                         }
2075                                                 }
2076                                         }
2077                                 }
2078                                 else
2079                                 {
2080                                         PyErr_SetString(PyExc_StandardError,
2081                                                 "type error");
2082                                         eDebug("tuple arg 4 is not a string");
2083                                         return NULL;
2084                                 }
2085                         }
2086                         else
2087                         {
2088                                 PyErr_SetString(PyExc_StandardError,
2089                                         "type error");
2090                                 eDebug("tuple arg 3(%d) is not a known querytype(0, 1, 2)", querytype);
2091                                 return NULL;
2092                         }
2093                 }
2094                 else
2095                 {
2096                         PyErr_SetString(PyExc_StandardError,
2097                                 "type error");
2098                         eDebug("not enough args in tuple");
2099                         return NULL;
2100                 }
2101         }
2102         else
2103         {
2104                 PyErr_SetString(PyExc_StandardError,
2105                         "type error");
2106                 eDebug("arg 0 is not a tuple");
2107                 return NULL;
2108         }
2109
2110         if (descridx > -1)
2111         {
2112                 int maxcount=maxmatches;
2113                 eServiceReferenceDVB ref(refstr?refstr:"");
2114                 // ref is only valid in SIMILAR_BROADCASTING_SEARCH
2115                 // in this case we start searching with the base service
2116                 bool first = ref.valid() ? true : false;
2117                 singleLock s(cache_lock);
2118                 eventCache::iterator cit(ref.valid() ? eventDB.find(ref) : eventDB.begin());
2119                 while(cit != eventDB.end() && maxcount)
2120                 {
2121                         if ( ref.valid() && !first && cit->first == ref )
2122                         {
2123                                 // do not scan base service twice ( only in SIMILAR BROADCASTING SEARCH )
2124                                 ++cit;
2125                                 continue;
2126                         }
2127                         ePyObject service_name;
2128                         ePyObject service_reference;
2129                         timeMap &evmap = cit->second.second;
2130                         // check all events
2131                         for (timeMap::iterator evit(evmap.begin()); evit != evmap.end() && maxcount; ++evit)
2132                         {
2133                                 int evid = evit->second->getEventID();
2134                                 if ( evid == eventid)
2135                                         continue;
2136                                 __u8 *data = evit->second->EITdata;
2137                                 int tmp = evit->second->ByteSize-12;
2138                                 __u32 *p = (__u32*)(data+12);
2139                                 // check if any of our descriptor used by this event
2140                                 int cnt=-1;
2141                                 while(tmp>0)
2142                                 {
2143                                         __u32 crc32 = *p++;
2144                                         for ( int i=0; i <= descridx; ++i)
2145                                         {
2146                                                 if (descr[i] == crc32)  // found...
2147                                                         ++cnt;
2148                                         }
2149                                         tmp-=4;
2150                                 }
2151                                 if ( (querytype == 0 && cnt == descridx) ||
2152                                          ((querytype == 1 || querytype == 2) && cnt != -1) )
2153                                 {
2154                                         const uniqueEPGKey &service = cit->first;
2155                                         eServiceReference ref =
2156                                                 eDVBDB::getInstance()->searchReference(service.tsid, service.onid, service.sid);
2157                                         if (ref.valid())
2158                                         {
2159                                         // create servive event
2160                                                 ePtr<eServiceEvent> ptr;
2161                                                 if (needServiceEvent)
2162                                                 {
2163                                                         lookupEventId(ref, evid, ptr);
2164                                                         if (!ptr)
2165                                                                 eDebug("event not found !!!!!!!!!!!");
2166                                                 }
2167                                         // create service name
2168                                                 if (!service_name && strchr(argstring,'N'))
2169                                                 {
2170                                                         ePtr<iStaticServiceInformation> sptr;
2171                                                         eServiceCenterPtr service_center;
2172                                                         eServiceCenter::getPrivInstance(service_center);
2173                                                         if (service_center)
2174                                                         {
2175                                                                 service_center->info(ref, sptr);
2176                                                                 if (sptr)
2177                                                                 {
2178                                                                         std::string name;
2179                                                                         sptr->getName(ref, name);
2180                                                                         if (name.length())
2181                                                                                 service_name = PyString_FromString(name.c_str());
2182                                                                 }
2183                                                         }
2184                                                         if (!service_name)
2185                                                                 service_name = PyString_FromString("<n/a>");
2186                                                 }
2187                                         // create servicereference string
2188                                                 if (!service_reference && strchr(argstring,'R'))
2189                                                         service_reference = PyString_FromString(ref.toString().c_str());
2190                                         // create list
2191                                                 if (!ret)
2192                                                         ret = PyList_New(0);
2193                                         // create tuple
2194                                                 ePyObject tuple = PyTuple_New(argcount);
2195                                         // fill tuple
2196                                                 fillTuple2(tuple, argstring, argcount, evit->second, ptr, service_name, service_reference);
2197                                                 PyList_Append(ret, tuple);
2198                                                 Py_DECREF(tuple);
2199                                                 --maxcount;
2200                                         }
2201                                 }
2202                         }
2203                         if (service_name)
2204                                 Py_DECREF(service_name);
2205                         if (service_reference)
2206                                 Py_DECREF(service_reference);
2207                         if (first)
2208                         {
2209                                 // now start at first service in epgcache database ( only in SIMILAR BROADCASTING SEARCH )
2210                                 first=false;
2211                                 cit=eventDB.begin();
2212                         }
2213                         else
2214                                 ++cit;
2215                 }
2216         }
2217
2218         if (!ret)
2219         {
2220                 Py_INCREF(Py_None);
2221                 ret=Py_None;
2222         }
2223
2224         return ret;
2225 }
2226
2227 #ifdef ENABLE_PRIVATE_EPG
2228 #include <dvbsi++/descriptor_tag.h>
2229 #include <dvbsi++/unknown_descriptor.h>
2230 #include <dvbsi++/private_data_specifier_descriptor.h>
2231
2232 void eEPGCache::PMTready(eDVBServicePMTHandler *pmthandler)
2233 {
2234         ePtr<eTable<ProgramMapSection> > ptr;
2235         if (!pmthandler->getPMT(ptr) && ptr)
2236         {
2237                 std::vector<ProgramMapSection*>::const_iterator i;
2238                 for (i = ptr->getSections().begin(); i != ptr->getSections().end(); ++i)
2239                 {
2240                         const ProgramMapSection &pmt = **i;
2241
2242                         ElementaryStreamInfoConstIterator es;
2243                         for (es = pmt.getEsInfo()->begin(); es != pmt.getEsInfo()->end(); ++es)
2244                         {
2245                                 int tmp=0;
2246                                 switch ((*es)->getType())
2247                                 {
2248                                 case 0x05: // private
2249                                         for (DescriptorConstIterator desc = (*es)->getDescriptors()->begin();
2250                                                 desc != (*es)->getDescriptors()->end(); ++desc)
2251                                         {
2252                                                 switch ((*desc)->getTag())
2253                                                 {
2254                                                         case PRIVATE_DATA_SPECIFIER_DESCRIPTOR:
2255                                                                 if (((PrivateDataSpecifierDescriptor*)(*desc))->getPrivateDataSpecifier() == 190)
2256                                                                         tmp |= 1;
2257                                                                 break;
2258                                                         case 0x90:
2259                                                         {
2260                                                                 UnknownDescriptor *descr = (UnknownDescriptor*)*desc;
2261                                                                 int descr_len = descr->getLength();
2262                                                                 if (descr_len == 4)
2263                                                                 {
2264                                                                         uint8_t data[descr_len+2];
2265                                                                         descr->writeToBuffer(data);
2266                                                                         if ( !data[2] && !data[3] && data[4] == 0xFF && data[5] == 0xFF )
2267                                                                                 tmp |= 2;
2268                                                                 }
2269                                                                 break;
2270                                                         }
2271                                                         default:
2272                                                                 break;
2273                                                 }
2274                                         }
2275                                 default:
2276                                         break;
2277                                 }
2278                                 if (tmp==3)
2279                                 {
2280                                         eServiceReferenceDVB ref;
2281                                         if (!pmthandler->getServiceReference(ref))
2282                                         {
2283                                                 int pid = (*es)->getPid();
2284                                                 messages.send(Message(Message::got_private_pid, ref, pid));
2285                                                 return;
2286                                         }
2287                                 }
2288                         }
2289                 }
2290         }
2291         else
2292                 eDebug("PMTready but no pmt!!");
2293 }
2294
2295 struct date_time
2296 {
2297         __u8 data[5];
2298         time_t tm;
2299         date_time( const date_time &a )
2300         {
2301                 memcpy(data, a.data, 5);
2302                 tm = a.tm;
2303         }
2304         date_time( const __u8 data[5])
2305         {
2306                 memcpy(this->data, data, 5);
2307                 tm = parseDVBtime(data[0], data[1], data[2], data[3], data[4]);
2308         }
2309         date_time()
2310         {
2311         }
2312         const __u8& operator[](int pos) const
2313         {
2314                 return data[pos];
2315         }
2316 };
2317
2318 struct less_datetime
2319 {
2320         bool operator()( const date_time &a, const date_time &b ) const
2321         {
2322                 return abs(a.tm-b.tm) < 360 ? false : a.tm < b.tm;
2323         }
2324 };
2325
2326 void eEPGCache::privateSectionRead(const uniqueEPGKey &current_service, const __u8 *data)
2327 {
2328         contentMap &content_time_table = content_time_tables[current_service];
2329         singleLock s(cache_lock);
2330         std::map< date_time, std::list<uniqueEPGKey>, less_datetime > start_times;
2331         eventMap &evMap = eventDB[current_service].first;
2332         timeMap &tmMap = eventDB[current_service].second;
2333         int ptr=8;
2334         int content_id = data[ptr++] << 24;
2335         content_id |= data[ptr++] << 16;
2336         content_id |= data[ptr++] << 8;
2337         content_id |= data[ptr++];
2338
2339         contentTimeMap &time_event_map =
2340                 content_time_table[content_id];
2341         for ( contentTimeMap::iterator it( time_event_map.begin() );
2342                 it != time_event_map.end(); ++it )
2343         {
2344                 eventMap::iterator evIt( evMap.find(it->second.second) );
2345                 if ( evIt != evMap.end() )
2346                 {
2347                         delete evIt->second;
2348                         evMap.erase(evIt);
2349                 }
2350                 tmMap.erase(it->second.first);
2351         }
2352         time_event_map.clear();
2353
2354         __u8 duration[3];
2355         memcpy(duration, data+ptr, 3);
2356         ptr+=3;
2357         int duration_sec =
2358                 fromBCD(duration[0])*3600+fromBCD(duration[1])*60+fromBCD(duration[2]);
2359
2360         const __u8 *descriptors[65];
2361         const __u8 **pdescr = descriptors;
2362
2363         int descriptors_length = (data[ptr++]&0x0F) << 8;
2364         descriptors_length |= data[ptr++];
2365         while ( descriptors_length > 0 )
2366         {
2367                 int descr_type = data[ptr];
2368                 int descr_len = data[ptr+1];
2369                 descriptors_length -= (descr_len+2);
2370                 if ( descr_type == 0xf2 )
2371                 {
2372                         ptr+=2;
2373                         int tsid = data[ptr++] << 8;
2374                         tsid |= data[ptr++];
2375                         int onid = data[ptr++] << 8;
2376                         onid |= data[ptr++];
2377                         int sid = data[ptr++] << 8;
2378                         sid |= data[ptr++];
2379
2380 // WORKAROUND for wrong transmitted epg data (01.08.2006)
2381                         if ( onid == 0x85 )
2382                         {
2383                                 switch( (tsid << 16) | sid )
2384                                 {
2385                                         case 0x01030b: sid = 0x1b; tsid = 4; break;  // Premiere Win
2386                                         case 0x0300f0: sid = 0xe0; tsid = 2; break;
2387                                         case 0x0300f1: sid = 0xe1; tsid = 2; break;
2388                                         case 0x0300f5: sid = 0xdc; break;
2389                                         case 0x0400d2: sid = 0xe2; tsid = 0x11; break;
2390                                         case 0x1100d3: sid = 0xe3; break;
2391                                 }
2392                         }
2393 ////////////////////////////////////////////
2394
2395                         uniqueEPGKey service( sid, onid, tsid );
2396                         descr_len -= 6;
2397                         while( descr_len > 0 )
2398                         {
2399                                 __u8 datetime[5];
2400                                 datetime[0] = data[ptr++];
2401                                 datetime[1] = data[ptr++];
2402                                 int tmp_len = data[ptr++];
2403                                 descr_len -= 3;
2404                                 while( tmp_len > 0 )
2405                                 {
2406                                         memcpy(datetime+2, data+ptr, 3);
2407                                         ptr+=3;
2408                                         descr_len -= 3;
2409                                         tmp_len -= 3;
2410                                         start_times[datetime].push_back(service);
2411                                 }
2412                         }
2413                 }
2414                 else
2415                 {
2416                         *pdescr++=data+ptr;
2417                         ptr += 2;
2418                         ptr += descr_len;
2419                 }
2420         }
2421         __u8 event[4098];
2422         eit_event_struct *ev_struct = (eit_event_struct*) event;
2423         ev_struct->running_status = 0;
2424         ev_struct->free_CA_mode = 1;
2425         memcpy(event+7, duration, 3);
2426         ptr = 12;
2427         const __u8 **d=descriptors;
2428         while ( d < pdescr )
2429         {
2430                 memcpy(event+ptr, *d, ((*d)[1])+2);
2431                 ptr+=(*d++)[1];
2432                 ptr+=2;
2433         }
2434         for ( std::map< date_time, std::list<uniqueEPGKey> >::iterator it(start_times.begin()); it != start_times.end(); ++it )
2435         {
2436                 time_t now = eDVBLocalTimeHandler::getInstance()->nowTime();
2437                 if ( (it->first.tm + duration_sec) < now )
2438                         continue;
2439                 memcpy(event+2, it->first.data, 5);
2440                 int bptr = ptr;
2441                 int cnt=0;
2442                 for (std::list<uniqueEPGKey>::iterator i(it->second.begin()); i != it->second.end(); ++i)
2443                 {
2444                         event[bptr++] = 0x4A;
2445                         __u8 *len = event+(bptr++);
2446                         event[bptr++] = (i->tsid & 0xFF00) >> 8;
2447                         event[bptr++] = (i->tsid & 0xFF);
2448                         event[bptr++] = (i->onid & 0xFF00) >> 8;
2449                         event[bptr++] = (i->onid & 0xFF);
2450                         event[bptr++] = (i->sid & 0xFF00) >> 8;
2451                         event[bptr++] = (i->sid & 0xFF);
2452                         event[bptr++] = 0xB0;
2453                         bptr += sprintf((char*)(event+bptr), "Option %d", ++cnt);
2454                         *len = ((event+bptr) - len)-1;
2455                 }
2456                 int llen = bptr - 12;
2457                 ev_struct->descriptors_loop_length_hi = (llen & 0xF00) >> 8;
2458                 ev_struct->descriptors_loop_length_lo = (llen & 0xFF);
2459
2460                 time_t stime = it->first.tm;
2461                 while( tmMap.find(stime) != tmMap.end() )
2462                         ++stime;
2463                 event[6] += (stime - it->first.tm);
2464                 __u16 event_id = 0;
2465                 while( evMap.find(event_id) != evMap.end() )
2466                         ++event_id;
2467                 event[0] = (event_id & 0xFF00) >> 8;
2468                 event[1] = (event_id & 0xFF);
2469                 time_event_map[it->first.tm]=std::pair<time_t, __u16>(stime, event_id);
2470                 eventData *d = new eventData( ev_struct, bptr, PRIVATE );
2471                 evMap[event_id] = d;
2472                 tmMap[stime] = d;
2473         }
2474 }
2475
2476 void eEPGCache::channel_data::startPrivateReader()
2477 {
2478         eDVBSectionFilterMask mask;
2479         memset(&mask, 0, sizeof(mask));
2480         mask.pid = m_PrivatePid;
2481         mask.flags = eDVBSectionFilterMask::rfCRC;
2482         mask.data[0] = 0xA0;
2483         mask.mask[0] = 0xFF;
2484         eDebug("[EPGC] start privatefilter for pid %04x and version %d", m_PrivatePid, m_PrevVersion);
2485         if (m_PrevVersion != -1)
2486         {
2487                 mask.data[3] = m_PrevVersion << 1;
2488                 mask.mask[3] = 0x3E;
2489                 mask.mode[3] = 0x3E;
2490         }
2491         seenPrivateSections.clear();
2492         if (!m_PrivateConn)
2493                 m_PrivateReader->connectRead(slot(*this, &eEPGCache::channel_data::readPrivateData), m_PrivateConn);
2494         m_PrivateReader->start(mask);
2495 }
2496
2497 void eEPGCache::channel_data::readPrivateData( const __u8 *data)
2498 {
2499         if ( seenPrivateSections.find( data[6] ) == seenPrivateSections.end() )
2500         {
2501                 cache->privateSectionRead(m_PrivateService, data);
2502                 seenPrivateSections.insert(data[6]);
2503         }
2504         if ( seenPrivateSections.size() == (unsigned int)(data[7] + 1) )
2505         {
2506                 eDebug("[EPGC] private finished");
2507                 eDVBChannelID chid = channel->getChannelID();
2508                 int tmp = chid.original_network_id.get();
2509                 tmp |= 0x80000000; // we use highest bit as private epg indicator
2510                 chid.original_network_id = tmp;
2511                 cache->channelLastUpdated[chid] = eDVBLocalTimeHandler::getInstance()->nowTime();
2512                 m_PrevVersion = (data[5] & 0x3E) >> 1;
2513                 startPrivateReader();
2514         }
2515 }
2516
2517 #endif // ENABLE_PRIVATE_EPG
2518
2519 #ifdef ENABLE_MHW_EPG
2520 void eEPGCache::channel_data::cleanup()
2521 {
2522         m_channels.clear();
2523         m_themes.clear();
2524         m_titles.clear();
2525         m_program_ids.clear();
2526 }
2527
2528 __u8 *eEPGCache::channel_data::delimitName( __u8 *in, __u8 *out, int len_in )
2529 {
2530         // Names in mhw structs are not strings as they are not '\0' terminated.
2531         // This function converts the mhw name into a string.
2532         // Constraint: "length of out" = "length of in" + 1.
2533         int i;
2534         for ( i=0; i < len_in; i++ )
2535                 out[i] = in[i];
2536
2537         i = len_in - 1;
2538         while ( ( i >=0 ) && ( out[i] == 0x20 ) )
2539                 i--;
2540
2541         out[i+1] = 0;
2542         return out;
2543 }
2544
2545 void eEPGCache::channel_data::timeMHW2DVB( u_char hours, u_char minutes, u_char *return_time)
2546 // For time of day
2547 {
2548         return_time[0] = toBCD( hours );
2549         return_time[1] = toBCD( minutes );
2550         return_time[2] = 0;
2551 }
2552
2553 void eEPGCache::channel_data::timeMHW2DVB( int minutes, u_char *return_time)
2554 {
2555         timeMHW2DVB( int(minutes/60), minutes%60, return_time );
2556 }
2557
2558 void eEPGCache::channel_data::timeMHW2DVB( u_char day, u_char hours, u_char minutes, u_char *return_time)
2559 // For date plus time of day
2560 {
2561         // Remove offset in mhw time.
2562         __u8 local_hours = hours;
2563         if ( hours >= 16 )
2564                 local_hours -= 4;
2565         else if ( hours >= 8 )
2566                 local_hours -= 2;
2567
2568         // As far as we know all mhw time data is sent in central Europe time zone.
2569         // So, temporarily set timezone to western europe
2570         time_t dt = eDVBLocalTimeHandler::getInstance()->nowTime();
2571
2572         char *old_tz = getenv( "TZ" );
2573         putenv("TZ=CET-1CEST,M3.5.0/2,M10.5.0/3");
2574         tzset();
2575
2576         tm *localnow = localtime( &dt );
2577
2578         if (day == 7)
2579                 day = 0;
2580         if ( day + 1 < localnow->tm_wday )              // day + 1 to prevent old events to show for next week.
2581                 day += 7;
2582         if (local_hours <= 5)
2583                 day++;
2584
2585         dt += 3600*24*(day - localnow->tm_wday);        // Shift dt to the recording date (local time zone).
2586         dt += 3600*(local_hours - localnow->tm_hour);  // Shift dt to the recording hour.
2587
2588         tm *recdate = gmtime( &dt );   // This will also take care of DST.
2589
2590         if ( old_tz == NULL )
2591                 unsetenv( "TZ" );
2592         else
2593                 putenv( old_tz );
2594         tzset();
2595
2596         // Calculate MJD according to annex in ETSI EN 300 468
2597         int l=0;
2598         if ( recdate->tm_mon <= 1 )     // Jan or Feb
2599                 l=1;
2600         int mjd = 14956 + recdate->tm_mday + int( (recdate->tm_year - l) * 365.25) +
2601                 int( (recdate->tm_mon + 2 + l * 12) * 30.6001);
2602
2603         return_time[0] = (mjd & 0xFF00)>>8;
2604         return_time[1] = mjd & 0xFF;
2605
2606         timeMHW2DVB( recdate->tm_hour, minutes, return_time+2 );
2607 }
2608
2609 void eEPGCache::channel_data::storeTitle(std::map<__u32, mhw_title_t>::iterator itTitle, std::string sumText, const __u8 *data)
2610 // data is borrowed from calling proc to save memory space.
2611 {
2612         __u8 name[34];
2613         // For each title a separate EIT packet will be sent to eEPGCache::sectionRead()
2614         bool isMHW2 = itTitle->second.mhw2_mjd_hi || itTitle->second.mhw2_mjd_lo ||
2615                 itTitle->second.mhw2_duration_hi || itTitle->second.mhw2_duration_lo;
2616
2617         eit_t *packet = (eit_t *) data;
2618         packet->table_id = 0x50;
2619         packet->section_syntax_indicator = 1;
2620         packet->service_id_hi = m_channels[ itTitle->second.channel_id - 1 ].channel_id_hi;
2621         packet->service_id_lo = m_channels[ itTitle->second.channel_id - 1 ].channel_id_lo;
2622         packet->version_number = 0;     // eEPGCache::sectionRead() will dig this for the moment
2623         packet->current_next_indicator = 0;
2624         packet->section_number = 0;     // eEPGCache::sectionRead() will dig this for the moment
2625         packet->last_section_number = 0;        // eEPGCache::sectionRead() will dig this for the moment
2626         packet->transport_stream_id_hi = m_channels[ itTitle->second.channel_id - 1 ].transport_stream_id_hi;
2627         packet->transport_stream_id_lo = m_channels[ itTitle->second.channel_id - 1 ].transport_stream_id_lo;
2628         packet->original_network_id_hi = m_channels[ itTitle->second.channel_id - 1 ].network_id_hi;
2629         packet->original_network_id_lo = m_channels[ itTitle->second.channel_id - 1 ].network_id_lo;
2630         packet->segment_last_section_number = 0; // eEPGCache::sectionRead() will dig this for the moment
2631         packet->segment_last_table_id = 0x50;
2632
2633         __u8 *title = isMHW2 ? ((__u8*)(itTitle->second.title))-4 : (__u8*)itTitle->second.title;
2634         std::string prog_title = (char *) delimitName( title, name, isMHW2 ? 33 : 23 );
2635         int prog_title_length = prog_title.length();
2636
2637         int packet_length = EIT_SIZE + EIT_LOOP_SIZE + EIT_SHORT_EVENT_DESCRIPTOR_SIZE +
2638                 prog_title_length + 1;
2639
2640         eit_event_t *event_data = (eit_event_t *) (data + EIT_SIZE);
2641         event_data->event_id_hi = (( itTitle->first ) >> 8 ) & 0xFF;
2642         event_data->event_id_lo = ( itTitle->first ) & 0xFF;
2643
2644         if (isMHW2)
2645         {
2646                 u_char *data = (u_char*) event_data;
2647                 data[2] = itTitle->second.mhw2_mjd_hi;
2648                 data[3] = itTitle->second.mhw2_mjd_lo;
2649                 data[4] = itTitle->second.mhw2_hours;
2650                 data[5] = itTitle->second.mhw2_minutes;
2651                 data[6] = itTitle->second.mhw2_seconds;
2652                 timeMHW2DVB( HILO(itTitle->second.mhw2_duration), data+7 );
2653         }
2654         else
2655         {
2656                 timeMHW2DVB( itTitle->second.dh.day, itTitle->second.dh.hours, itTitle->second.ms.minutes,
2657                 (u_char *) event_data + 2 );
2658                 timeMHW2DVB( HILO(itTitle->second.duration), (u_char *) event_data+7 );
2659         }
2660
2661         event_data->running_status = 0;
2662         event_data->free_CA_mode = 0;
2663         int descr_ll = EIT_SHORT_EVENT_DESCRIPTOR_SIZE + 1 + prog_title_length;
2664
2665         eit_short_event_descriptor_struct *short_event_descriptor =
2666                 (eit_short_event_descriptor_struct *) ( (u_char *) event_data + EIT_LOOP_SIZE);
2667         short_event_descriptor->descriptor_tag = EIT_SHORT_EVENT_DESCRIPTOR;
2668         short_event_descriptor->descriptor_length = EIT_SHORT_EVENT_DESCRIPTOR_SIZE +
2669                 prog_title_length - 1;
2670         short_event_descriptor->language_code_1 = 'e';
2671         short_event_descriptor->language_code_2 = 'n';
2672         short_event_descriptor->language_code_3 = 'g';
2673         short_event_descriptor->event_name_length = prog_title_length;
2674         u_char *event_name = (u_char *) short_event_descriptor + EIT_SHORT_EVENT_DESCRIPTOR_SIZE;
2675         memcpy(event_name, prog_title.c_str(), prog_title_length);
2676
2677         // Set text length
2678         event_name[prog_title_length] = 0;
2679
2680         if ( sumText.length() > 0 )
2681         // There is summary info
2682         {
2683                 unsigned int sum_length = sumText.length();
2684                 if ( sum_length + short_event_descriptor->descriptor_length <= 0xff )
2685                 // Store summary in short event descriptor
2686                 {
2687                         // Increase all relevant lengths
2688                         event_name[prog_title_length] = sum_length;
2689                         short_event_descriptor->descriptor_length += sum_length;
2690                         packet_length += sum_length;
2691                         descr_ll += sum_length;
2692                         sumText.copy( (char *) event_name+prog_title_length+1, sum_length );
2693                 }
2694                 else
2695                 // Store summary in extended event descriptors
2696                 {
2697                         int remaining_sum_length = sumText.length();
2698                         int nbr_descr = int(remaining_sum_length/247) + 1;
2699                         for ( int i=0; i < nbr_descr; i++)
2700                         // Loop once per extended event descriptor
2701                         {
2702                                 eit_extended_descriptor_struct *ext_event_descriptor = (eit_extended_descriptor_struct *) (data + packet_length);
2703                                 sum_length = remaining_sum_length > 247 ? 247 : remaining_sum_length;
2704                                 remaining_sum_length -= sum_length;
2705                                 packet_length += 8 + sum_length;
2706                                 descr_ll += 8 + sum_length;
2707
2708                                 ext_event_descriptor->descriptor_tag = EIT_EXTENDED_EVENT_DESCRIPOR;
2709                                 ext_event_descriptor->descriptor_length = sum_length + 6;
2710                                 ext_event_descriptor->descriptor_number = i;
2711                                 ext_event_descriptor->last_descriptor_number = nbr_descr - 1;
2712                                 ext_event_descriptor->iso_639_2_language_code_1 = 'e';
2713                                 ext_event_descriptor->iso_639_2_language_code_2 = 'n';
2714                                 ext_event_descriptor->iso_639_2_language_code_3 = 'g';
2715                                 u_char *the_text = (u_char *) ext_event_descriptor + 8;
2716                                 the_text[-2] = 0;
2717                                 the_text[-1] = sum_length;
2718                                 sumText.copy( (char *) the_text, sum_length, sumText.length() - sum_length - remaining_sum_length );
2719                         }
2720                 }
2721         }
2722
2723         if (!isMHW2)
2724         {
2725                 // Add content descriptor
2726                 u_char *descriptor = (u_char *) data + packet_length;
2727                 packet_length += 4;
2728                 descr_ll += 4;
2729
2730                 int content_id = 0;
2731                 std::string content_descr = (char *) delimitName( m_themes[itTitle->second.theme_id].name, name, 15 );
2732                 if ( content_descr.find( "FILM" ) != std::string::npos )
2733                         content_id = 0x10;
2734                 else if ( content_descr.find( "SPORT" ) != std::string::npos )
2735                         content_id = 0x40;
2736
2737                 descriptor[0] = 0x54;
2738                 descriptor[1] = 2;
2739                 descriptor[2] = content_id;
2740                 descriptor[3] = 0;
2741         }
2742
2743         event_data->descriptors_loop_length_hi = (descr_ll & 0xf00)>>8;
2744         event_data->descriptors_loop_length_lo = (descr_ll & 0xff);
2745
2746         packet->section_length_hi =  ((packet_length - 3)&0xf00)>>8;
2747         packet->section_length_lo =  (packet_length - 3)&0xff;
2748
2749         // Feed the data to eEPGCache::sectionRead()
2750         cache->sectionRead( data, MHW, this );
2751 }
2752
2753 void eEPGCache::channel_data::startTimeout(int msec)
2754 {
2755         m_MHWTimeoutTimer.start(msec,true);
2756         m_MHWTimeoutet=false;
2757 }
2758
2759 void eEPGCache::channel_data::startMHWReader(__u16 pid, __u8 tid)
2760 {
2761         m_MHWFilterMask.pid = pid;
2762         m_MHWFilterMask.data[0] = tid;
2763         m_MHWReader->start(m_MHWFilterMask);
2764 //      eDebug("start 0x%02x 0x%02x", pid, tid);
2765 }
2766
2767 void eEPGCache::channel_data::startMHWReader2(__u16 pid, __u8 tid, int ext)
2768 {
2769         m_MHWFilterMask2.pid = pid;
2770         m_MHWFilterMask2.data[0] = tid;
2771         if (ext != -1)
2772         {
2773                 m_MHWFilterMask2.data[1] = ext;
2774                 m_MHWFilterMask2.mask[1] = 0xFF;
2775 //              eDebug("start 0x%03x 0x%02x 0x%02x", pid, tid, ext);
2776         }
2777         else
2778         {
2779                 m_MHWFilterMask2.data[1] = 0;
2780                 m_MHWFilterMask2.mask[1] = 0;
2781 //              eDebug("start 0x%02x 0x%02x", pid, tid);
2782         }
2783         m_MHWReader2->start(m_MHWFilterMask2);
2784 }
2785
2786 void eEPGCache::channel_data::readMHWData(const __u8 *data)
2787 {
2788         if ( m_MHWReader2 )
2789                 m_MHWReader2->stop();
2790
2791         if ( state > 1 || // aborted
2792                 // have si data.. so we dont read mhw data
2793                 (haveData & (SCHEDULE|SCHEDULE_OTHER)) )
2794         {
2795                 eDebug("[EPGC] mhw aborted %d", state);
2796         }
2797         else if (m_MHWFilterMask.pid == 0xD3 && m_MHWFilterMask.data[0] == 0x91)
2798         // Channels table
2799         {
2800                 int len = ((data[1]&0xf)<<8) + data[2] - 1;
2801                 int record_size = sizeof( mhw_channel_name_t );
2802                 int nbr_records = int (len/record_size);
2803
2804                 for ( int i = 0; i < nbr_records; i++ )
2805                 {
2806                         mhw_channel_name_t *channel = (mhw_channel_name_t*) &data[4 + i*record_size];
2807                         m_channels.push_back( *channel );
2808                 }
2809                 haveData |= MHW;
2810
2811                 eDebug("[EPGC] mhw %d channels found", m_channels.size());
2812
2813                 // Channels table has been read, start reading the themes table.
2814                 startMHWReader(0xD3, 0x92);
2815                 return;
2816         }
2817         else if (m_MHWFilterMask.pid == 0xD3 && m_MHWFilterMask.data[0] == 0x92)
2818         // Themes table
2819         {
2820                 int len = ((data[1]&0xf)<<8) + data[2] - 16;
2821                 int record_size = sizeof( mhw_theme_name_t );
2822                 int nbr_records = int (len/record_size);
2823                 int idx_ptr = 0;
2824                 __u8 next_idx = (__u8) *(data + 3 + idx_ptr);
2825                 __u8 idx = 0;
2826                 __u8 sub_idx = 0;
2827                 for ( int i = 0; i < nbr_records; i++ )
2828                 {
2829                         mhw_theme_name_t *theme = (mhw_theme_name_t*) &data[19 + i*record_size];
2830                         if ( i >= next_idx )
2831                         {
2832                                 idx = (idx_ptr<<4);
2833                                 idx_ptr++;
2834                                 next_idx = (__u8) *(data + 3 + idx_ptr);
2835                                 sub_idx = 0;
2836                         }
2837                         else
2838                                 sub_idx++;
2839
2840                         m_themes[idx+sub_idx] = *theme;
2841                 }
2842                 eDebug("[EPGC] mhw %d themes found", m_themes.size());
2843                 // Themes table has been read, start reading the titles table.
2844                 startMHWReader(0xD2, 0x90);
2845                 startTimeout(4000);
2846                 return;
2847         }
2848         else if (m_MHWFilterMask.pid == 0xD2 && m_MHWFilterMask.data[0] == 0x90)
2849         // Titles table
2850         {
2851                 mhw_title_t *title = (mhw_title_t*) data;
2852
2853                 if ( title->channel_id == 0xFF )        // Separator
2854                         return; // Continue reading of the current table.
2855                 else
2856                 {
2857                         // Create unique key per title
2858                         __u32 title_id = ((title->channel_id)<<16)|((title->dh.day)<<13)|((title->dh.hours)<<8)|
2859                                 (title->ms.minutes);
2860                         __u32 program_id = ((title->program_id_hi)<<24)|((title->program_id_mh)<<16)|
2861                                 ((title->program_id_ml)<<8)|(title->program_id_lo);
2862
2863                         if ( m_titles.find( title_id ) == m_titles.end() )
2864                         {
2865                                 startTimeout(4000);
2866                                 title->mhw2_mjd_hi = 0;
2867                                 title->mhw2_mjd_lo = 0;
2868                                 title->mhw2_duration_hi = 0;
2869                                 title->mhw2_duration_lo = 0;
2870                                 m_titles[ title_id ] = *title;
2871                                 if ( (title->ms.summary_available) && (m_program_ids.find(program_id) == m_program_ids.end()) )
2872                                         // program_ids will be used to gather summaries.
2873                                         m_program_ids[ program_id ] = title_id;
2874                                 return; // Continue reading of the current table.
2875                         }
2876                         else if (!checkTimeout())
2877                                 return;
2878                 }
2879                 if ( !m_program_ids.empty())
2880                 {
2881                         // Titles table has been read, there are summaries to read.
2882                         // Start reading summaries, store corresponding titles on the fly.
2883                         startMHWReader(0xD3, 0x90);
2884                         eDebug("[EPGC] mhw %d titles(%d with summary) found",
2885                                 m_titles.size(),
2886                                 m_program_ids.size());
2887                         startTimeout(4000);
2888                         return;
2889                 }
2890         }
2891         else if (m_MHWFilterMask.pid == 0xD3 && m_MHWFilterMask.data[0] == 0x90)
2892         // Summaries table
2893         {
2894                 mhw_summary_t *summary = (mhw_summary_t*) data;
2895
2896                 // Create unique key per record
2897                 __u32 program_id = ((summary->program_id_hi)<<24)|((summary->program_id_mh)<<16)|
2898                         ((summary->program_id_ml)<<8)|(summary->program_id_lo);
2899                 int len = ((data[1]&0xf)<<8) + data[2];
2900
2901                 // ugly workaround to convert const __u8* to char*
2902                 char *tmp=0;
2903                 memcpy(&tmp, &data, sizeof(void*));
2904                 tmp[len+3] = 0; // Terminate as a string.
2905
2906                 std::map<__u32, __u32>::iterator itProgid( m_program_ids.find( program_id ) );
2907                 if ( itProgid == m_program_ids.end() )
2908                 { /*    This part is to prevent to looping forever if some summaries are not received yet.
2909                         There is a timeout of 4 sec. after the last successfully read summary. */
2910                         if (!m_program_ids.empty() && !checkTimeout())
2911                                 return; // Continue reading of the current table.
2912                 }
2913                 else
2914                 {
2915                         std::string the_text = (char *) (data + 11 + summary->nb_replays * 7);
2916
2917                         unsigned int pos=0;
2918                         while((pos = the_text.find("\r\n")) != std::string::npos)
2919                                 the_text.replace(pos, 2, " ");
2920
2921                         // Find corresponding title, store title and summary in epgcache.
2922                         std::map<__u32, mhw_title_t>::iterator itTitle( m_titles.find( itProgid->second ) );
2923                         if ( itTitle != m_titles.end() )
2924                         {
2925                                 startTimeout(4000);
2926                                 storeTitle( itTitle, the_text, data );
2927                                 m_titles.erase( itTitle );
2928                         }
2929                         m_program_ids.erase( itProgid );
2930                         if ( !m_program_ids.empty() )
2931                                 return; // Continue reading of the current table.
2932                 }
2933         }
2934         eDebug("[EPGC] mhw finished(%ld) %d summaries not found",
2935                 eDVBLocalTimeHandler::getInstance()->nowTime(),
2936                 m_program_ids.size());
2937         // Summaries have been read, titles that have summaries have been stored.
2938         // Now store titles that do not have summaries.
2939         for (std::map<__u32, mhw_title_t>::iterator itTitle(m_titles.begin()); itTitle != m_titles.end(); itTitle++)
2940                 storeTitle( itTitle, "", data );
2941         isRunning &= ~MHW;
2942         m_MHWConn=0;
2943         if ( m_MHWReader )
2944                 m_MHWReader->stop();
2945         if (haveData)
2946                 finishEPG();
2947 }
2948
2949 void eEPGCache::channel_data::readMHWData2(const __u8 *data)
2950 {
2951         int dataLen = (((data[1]&0xf) << 8) | data[2]) + 3;
2952
2953         if ( m_MHWReader )
2954                 m_MHWReader->stop();
2955
2956         if ( state > 1 || // aborted
2957                 // have si data.. so we dont read mhw data
2958                 (haveData & (eEPGCache::SCHEDULE|eEPGCache::SCHEDULE_OTHER)) )
2959         {
2960                 eDebug("[EPGC] mhw2 aborted %d", state);
2961         }
2962         else if (m_MHWFilterMask2.pid == 0x231 && m_MHWFilterMask2.data[0] == 0xC8 && m_MHWFilterMask2.data[1] == 0)
2963         // Channels table
2964         {
2965                 int num_channels = data[120];
2966                 if(dataLen > 120)
2967                 {
2968                         int ptr = 121 + 6 * num_channels;
2969                         if( dataLen > ptr )
2970                         {
2971                                 for( int chid = 0; chid < num_channels; ++chid )
2972                                 {
2973                                         ptr += ( data[ptr] & 0x0f ) + 1;
2974                                         if( dataLen < ptr )
2975                                                 goto abort;
2976                                 }
2977                         }
2978                         else
2979                                 goto abort;
2980                 }
2981                 else
2982                         goto abort;
2983                 // data seems consistent...
2984                 const __u8 *tmp = data+121;
2985                 for (int i=0; i < num_channels; ++i)
2986                 {
2987                         mhw_channel_name_t channel;
2988                         channel.transport_stream_id_hi = *(tmp++);
2989                         channel.transport_stream_id_lo = *(tmp++);
2990                         channel.channel_id_hi = *(tmp++);
2991                         channel.channel_id_lo = *(tmp++);
2992 #warning FIXME hardcoded network_id in mhw2 epg
2993                         channel.network_id_hi = 0; // hardcoded astra 19.2
2994                         channel.network_id_lo = 1;
2995                         m_channels.push_back(channel);
2996                         tmp+=2;
2997                 }
2998                 for (int i=0; i < num_channels; ++i)
2999                 {
3000                         mhw_channel_name_t &channel = m_channels[i];
3001                         int channel_name_len=*(tmp++)&0x0f;
3002                         int x=0;
3003                         for (; x < channel_name_len; ++x)
3004                                 channel.name[x]=*(tmp++);
3005                         channel.name[x+1]=0;
3006                 }
3007                 haveData |= MHW;
3008                 eDebug("[EPGC] mhw2 %d channels found", m_channels.size());
3009         }
3010         else if (m_MHWFilterMask2.pid == 0x231 && m_MHWFilterMask2.data[0] == 0xC8 && m_MHWFilterMask2.data[1] == 1)
3011         {
3012                 // Themes table
3013                 eDebug("[EPGC] mhw2 themes nyi");
3014         }
3015         else if (m_MHWFilterMask2.pid == 0x234 && m_MHWFilterMask2.data[0] == 0xe6)
3016         // Titles table
3017         {
3018                 int pos=18;
3019                 bool valid=true;
3020                 int len = ((data[1]&0xf)<<8) + data[2] - 16;
3021                 bool finish=false;
3022                 if(data[dataLen-1] != 0xff)
3023                         return;
3024                 while( pos < dataLen )
3025                 {
3026                         valid = false;
3027                         pos += 7;
3028                         if( pos < dataLen )
3029                         {
3030                                 pos += 3;
3031                                 if( pos < dataLen )
3032                                 {
3033                                         if( data[pos] > 0xc0 )
3034                                         {
3035                                                 pos += ( data[pos] - 0xc0 );
3036                                                 pos += 4;
3037                                                 if( pos < dataLen )
3038                                                 {
3039                                                         if( data[pos] == 0xff )
3040                                                         {
3041                                                                 ++pos;
3042                                                                 valid = true;
3043                                                         }
3044                                                 }
3045                                         }
3046                                 }
3047                         }
3048                         if( !valid )
3049                         {
3050                                 if (checkTimeout())
3051                                         goto start_summary;
3052                                 return;
3053                         }
3054                 }
3055                 // data seems consistent...
3056                 mhw_title_t title;
3057                 pos = 18;
3058                 while (pos < len)
3059                 {
3060                         title.channel_id = data[pos]+1;
3061                         title.program_id_ml = data[pos+1];
3062                         title.program_id_lo = data[pos+2];
3063                         title.mhw2_mjd_hi = data[pos+3];
3064                         title.mhw2_mjd_lo = data[pos+4];
3065                         title.mhw2_hours = data[pos+5];
3066                         title.mhw2_minutes = data[pos+6];
3067                         title.mhw2_seconds = data[pos+7];
3068                         int duration = ((data[pos+8] << 8)|data[pos+9]) >> 4;
3069                         title.mhw2_duration_hi = (duration&0xFF00) >> 8;
3070                         title.mhw2_duration_lo = duration&0xFF;
3071                         __u8 slen = data[pos+10] & 0x3f;
3072                         __u8 *dest = ((__u8*)title.title)-4;
3073                         memcpy(dest, &data[pos+11], slen>33 ? 33 : slen);
3074                         memset(dest+slen, 0x20, 33-slen);
3075                         pos += 11 + slen;
3076 //                      not used theme id (data[7] & 0x3f) + (data[pos] & 0x3f);
3077                         __u32 summary_id = (data[pos+1] << 8) | data[pos+2];
3078
3079                         // Create unique key per title
3080                         __u32 title_id = (title.channel_id<<16) | (title.program_id_ml<<8) | title.program_id_lo;
3081
3082 //                      eDebug("program_id: %08x, %s", program_id,
3083 //                              std::string((const char *)title.title, (int)(slen > 23 ? 23 : slen)).c_str());
3084
3085                         pos += 4;
3086
3087                         if ( m_titles.find( title_id ) == m_titles.end() )
3088                         {
3089                                 startTimeout(4000);
3090                                 m_titles[ title_id ] = title;
3091                                 if (summary_id != 0xFFFF &&  // no summary avail
3092                                         m_program_ids.find(summary_id) == m_program_ids.end())
3093                                 {
3094                                         m_program_ids[ summary_id ] = title_id;
3095                                 }
3096                         }
3097                         else
3098                         {
3099                                 if ( !checkTimeout() )
3100                                         continue;       // Continue reading of the current table.
3101                                 finish=true;
3102                                 break;
3103                         }
3104                 }
3105 start_summary:
3106                 if (finish)
3107                 {
3108                         eDebug("[EPGC] mhw2 %d titles(%d with summary) found", m_titles.size(), m_program_ids.size());
3109                         if (!m_program_ids.empty())
3110                         {
3111                                 // Titles table has been read, there are summaries to read.
3112                                 // Start reading summaries, store corresponding titles on the fly.
3113                                 startMHWReader2(0x236, 0x96);
3114                                 startTimeout(4000);
3115                                 return;
3116                         }
3117                 }
3118                 else
3119                         return;
3120         }
3121         else if (m_MHWFilterMask2.pid == 0x236 && m_MHWFilterMask2.data[0] == 0x96)
3122         // Summaries table
3123         {
3124                 int len, loop, pos, lenline;
3125                 bool valid;
3126                 valid = true;
3127                 if( dataLen > 18 )
3128                 {
3129                         loop = data[12];
3130                         pos = 13 + loop;
3131                         if( dataLen > pos )
3132                         {
3133                                 loop = data[pos] & 0x0f;
3134                                 pos += 1;
3135                                 if( dataLen > pos )
3136                                 {
3137                                         len = 0;
3138                                         for( ; loop > 0; --loop )
3139                                         {
3140                                                 if( dataLen > (pos+len) )
3141                                                 {
3142                                                         lenline = data[pos+len];
3143                                                         len += lenline + 1;
3144                                                 }
3145                                                 else
3146                                                         valid=false;
3147                                         }
3148                                 }
3149                         }
3150                 }
3151                 else if (!checkTimeout())
3152                         return;  // continue reading
3153                 if (valid && !checkTimeout())
3154                 {
3155                         // data seems consistent...
3156                         __u32 summary_id = (data[3]<<8)|data[4];
3157
3158                         // ugly workaround to convert const __u8* to char*
3159                         char *tmp=0;
3160                         memcpy(&tmp, &data, sizeof(void*));
3161
3162                         len = 0;
3163                         loop = data[12];
3164                         pos = 13 + loop;
3165                         loop = tmp[pos] & 0x0f;
3166                         pos += 1;
3167                         for( ; loop > 0; loop -- )
3168                         {
3169                                 lenline = tmp[pos+len];
3170                                 tmp[pos+len] = ' ';
3171                                 len += lenline + 1;
3172                         }
3173                         if( len > 0 )
3174                             tmp[pos+len] = 0;
3175                         else
3176                                 tmp[pos+1] = 0;
3177
3178                         std::map<__u32, __u32>::iterator itProgid( m_program_ids.find( summary_id ) );
3179                         if ( itProgid == m_program_ids.end() )
3180                         { /*    This part is to prevent to looping forever if some summaries are not received yet.
3181                                 There is a timeout of 4 sec. after the last successfully read summary. */
3182         
3183                                 if ( !m_program_ids.empty() && !checkTimeout() )
3184                                         return; // Continue reading of the current table.
3185                         }
3186                         else
3187                         {
3188                                 startTimeout(4000);
3189                                 std::string the_text = (char *) (data + pos + 1);
3190
3191                                 // Find corresponding title, store title and summary in epgcache.
3192                                 std::map<__u32, mhw_title_t>::iterator itTitle( m_titles.find( itProgid->second ) );
3193                                 if ( itTitle != m_titles.end() )
3194                                 {
3195                                         storeTitle( itTitle, the_text, data );
3196                                         m_titles.erase( itTitle );
3197                                 }
3198                                 m_program_ids.erase( itProgid );
3199                                 if ( !m_program_ids.empty() )
3200                                         return; // Continue reading of the current table.
3201                         }
3202                 }
3203         }
3204         if (isRunning & eEPGCache::MHW)
3205         {
3206                 if ( m_MHWFilterMask2.pid == 0x231 && m_MHWFilterMask2.data[0] == 0xC8 && m_MHWFilterMask2.data[1] == 0)
3207                 {
3208                         // Channels table has been read, start reading the themes table.
3209                         startMHWReader2(0x231, 0xC8, 1);
3210                         return;
3211                 }
3212                 else if ( m_MHWFilterMask2.pid == 0x231 && m_MHWFilterMask2.data[0] == 0xC8 && m_MHWFilterMask2.data[1] == 1)
3213                 {
3214                         // Themes table has been read, start reading the titles table.
3215                         startMHWReader2(0x234, 0xe6);
3216                         return;
3217                 }
3218                 else
3219                 {
3220                         // Summaries have been read, titles that have summaries have been stored.
3221                         // Now store titles that do not have summaries.
3222                         for (std::map<__u32, mhw_title_t>::iterator itTitle(m_titles.begin()); itTitle != m_titles.end(); itTitle++)
3223                                 storeTitle( itTitle, "", data );
3224                         eDebug("[EPGC] mhw2 finished(%ld) %d summaries not found",
3225                                 eDVBLocalTimeHandler::getInstance()->nowTime(),
3226                                 m_program_ids.size());
3227                 }
3228         }
3229 abort:
3230         isRunning &= ~MHW;
3231         m_MHWConn2=0;
3232         if ( m_MHWReader2 )
3233                 m_MHWReader2->stop();
3234         if (haveData)
3235                 finishEPG();
3236 }
3237 #endif