1 #include <lib/dvb/epgcache.h>
2 #include <lib/dvb/dvb.h>
7 #include <unistd.h> // for usleep
8 #include <sys/vfs.h> // for statfs
9 // #include <libmd5sum.h>
10 #include <lib/base/eerror.h>
11 #include <lib/dvb/pmt.h>
12 #include <lib/dvb/db.h>
15 int eventData::CacheSize=0;
16 descriptorMap eventData::descriptors;
17 __u8 eventData::data[4108];
18 extern const uint32_t crc32_table[256];
20 eventData::eventData(const eit_event_struct* e, int size, int type)
21 :ByteSize(size&0xFF), type(type&0xFF)
29 __u8 *data = (__u8*)e;
31 int descriptors_length = (data[ptr++]&0x0F) << 8;
32 descriptors_length |= data[ptr++];
33 while ( descriptors_length > 0 )
35 __u8 *descr = data+ptr;
36 int descr_len = descr[1]+2;
40 while(cnt++ < descr_len)
41 crc = (crc << 8) ^ crc32_table[((crc >> 24) ^ data[ptr++]) & 0xFF];
43 descriptorMap::iterator it =
44 descriptors.find(crc);
45 if ( it == descriptors.end() )
48 __u8 *d = new __u8[descr_len];
49 memcpy(d, descr, descr_len);
50 descriptors[crc] = descriptorPair(1, d);
56 descriptors_length -= descr_len;
58 ByteSize = 12+((pdescr-descr)*4);
59 EITdata = new __u8[ByteSize];
61 memcpy(EITdata, (__u8*) e, 12);
62 memcpy(EITdata+12, descr, ByteSize-12);
65 const eit_event_struct* eventData::get() const
68 int tmp = ByteSize-12;
69 memcpy(data, EITdata, 12);
70 __u32 *p = (__u32*)(EITdata+12);
73 descriptorMap::iterator it =
74 descriptors.find(*p++);
75 if ( it != descriptors.end() )
77 int b = it->second.second[1]+2;
78 memcpy(data+pos, it->second.second, b );
84 return (const eit_event_struct*)data;
87 eventData::~eventData()
93 __u32 *d = (__u32*)(EITdata+12);
96 descriptorMap::iterator it =
97 descriptors.find(*d++);
98 if ( it != descriptors.end() )
100 descriptorPair &p = it->second;
101 if (!--p.first) // no more used descriptor
103 CacheSize -= it->second.second[1];
104 delete [] it->second.second; // free descriptor memory
105 descriptors.erase(it); // remove entry from descriptor map
114 void eventData::load(FILE *f)
120 fread(&size, sizeof(int), 1, f);
123 fread(&id, sizeof(__u32), 1, f);
124 fread(&p.first, sizeof(int), 1, f);
125 fread(header, 2, 1, f);
126 int bytes = header[1]+2;
127 p.second = new __u8[bytes];
128 p.second[0] = header[0];
129 p.second[1] = header[1];
130 fread(p.second+2, bytes-2, 1, f);
137 void eventData::save(FILE *f)
139 int size=descriptors.size();
140 descriptorMap::iterator it(descriptors.begin());
141 fwrite(&size, sizeof(int), 1, f);
144 fwrite(&it->first, sizeof(__u32), 1, f);
145 fwrite(&it->second.first, sizeof(int), 1, f);
146 fwrite(it->second.second, it->second.second[1]+2, 1, f);
152 eEPGCache* eEPGCache::instance;
153 pthread_mutex_t eEPGCache::cache_lock=
154 PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
155 pthread_mutex_t eEPGCache::channel_map_lock=
156 PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
158 DEFINE_REF(eEPGCache)
160 eEPGCache::eEPGCache()
161 :messages(this,1), cleanTimer(this)//, paused(0)
163 eDebug("[EPGC] Initialized EPGCache");
165 CONNECT(messages.recv_msg, eEPGCache::gotMessage);
166 CONNECT(eDVBLocalTimeHandler::getInstance()->m_timeUpdated, eEPGCache::timeUpdated);
167 CONNECT(cleanTimer.timeout, eEPGCache::cleanLoop);
169 ePtr<eDVBResourceManager> res_mgr;
170 eDVBResourceManager::getInstance(res_mgr);
172 eDebug("[eEPGCache] no resource manager !!!!!!!");
174 res_mgr->connectChannelAdded(slot(*this,&eEPGCache::DVBChannelAdded), m_chanAddedConn);
178 void eEPGCache::timeUpdated()
182 eDebug("[EPGC] time updated.. start EPG Mainloop");
185 messages.send(Message(Message::timeChanged));
188 void eEPGCache::DVBChannelAdded(eDVBChannel *chan)
192 // eDebug("[eEPGCache] add channel %p", chan);
193 channel_data *data = new channel_data(this);
194 data->channel = chan;
195 data->prevChannelState = -1;
196 #ifdef ENABLE_PRIVATE_EPG
197 data->m_PrivatePid = -1;
199 singleLock s(channel_map_lock);
200 m_knownChannels.insert( std::pair<iDVBChannel*, channel_data* >(chan, data) );
201 chan->connectStateChange(slot(*this, &eEPGCache::DVBChannelStateChanged), data->m_stateChangedConn);
205 void eEPGCache::DVBChannelRunning(iDVBChannel *chan)
207 singleLock s(channel_map_lock);
208 channelMapIterator it =
209 m_knownChannels.find(chan);
210 if ( it == m_knownChannels.end() )
211 eDebug("[eEPGCache] will start non existing channel %p !!!", chan);
214 channel_data &data = *it->second;
215 ePtr<eDVBResourceManager> res_mgr;
216 if ( eDVBResourceManager::getInstance( res_mgr ) )
217 eDebug("[eEPGCache] no res manager!!");
220 ePtr<iDVBDemux> demux;
221 if ( data.channel->getDemux(demux, 0) )
223 eDebug("[eEPGCache] no demux!!");
228 RESULT res = demux->createSectionReader( this, data.m_NowNextReader );
231 eDebug("[eEPGCache] couldnt initialize nownext reader!!");
235 res = demux->createSectionReader( this, data.m_ScheduleReader );
238 eDebug("[eEPGCache] couldnt initialize schedule reader!!");
242 res = demux->createSectionReader( this, data.m_ScheduleOtherReader );
245 eDebug("[eEPGCache] couldnt initialize schedule other reader!!");
248 #ifdef ENABLE_PRIVATE_EPG
249 res = demux->createSectionReader( this, data.m_PrivateReader );
252 eDebug("[eEPGCache] couldnt initialize private reader!!");
256 messages.send(Message(Message::startChannel, chan));
257 // -> gotMessage -> changedService
263 void eEPGCache::DVBChannelStateChanged(iDVBChannel *chan)
265 channelMapIterator it =
266 m_knownChannels.find(chan);
267 if ( it != m_knownChannels.end() )
270 chan->getState(state);
271 if ( it->second->prevChannelState != state )
275 case iDVBChannel::state_ok:
277 eDebug("[eEPGCache] channel %p running", chan);
278 DVBChannelRunning(chan);
281 case iDVBChannel::state_release:
283 eDebug("[eEPGCache] remove channel %p", chan);
284 messages.send(Message(Message::leaveChannel, chan));
285 while(!it->second->can_delete)
288 m_knownChannels.erase(it);
289 // -> gotMessage -> abortEPG
292 default: // ignore all other events
295 it->second->prevChannelState = state;
300 void eEPGCache::sectionRead(const __u8 *data, int source, channel_data *channel)
302 eit_t *eit = (eit_t*) data;
304 int len=HILO(eit->section_length)-1;//+3-4;
309 // This fixed the EPG on the Multichoice irdeto systems
310 // the EIT packet is non-compliant.. their EIT packet stinks
311 if ( data[ptr-1] < 0x40 )
314 uniqueEPGKey service( HILO(eit->service_id), HILO(eit->original_network_id), HILO(eit->transport_stream_id) );
315 eit_event_struct* eit_event = (eit_event_struct*) (data+ptr);
319 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);
320 time_t now = time(0)+eDVBLocalTimeHandler::getInstance()->difference();
322 if ( TM != 3599 && TM > -1)
323 channel->haveData |= source;
325 singleLock s(cache_lock);
326 // hier wird immer eine eventMap zurück gegeben.. entweder eine vorhandene..
327 // oder eine durch [] erzeugte
328 std::pair<eventMap,timeMap> &servicemap = eventDB[service];
329 eventMap::iterator prevEventIt = servicemap.first.end();
330 timeMap::iterator prevTimeIt = servicemap.second.end();
334 eit_event_size = HILO(eit_event->descriptors_loop_length)+EIT_LOOP_SIZE;
336 duration = fromBCD(eit_event->duration_1)*3600+fromBCD(eit_event->duration_2)*60+fromBCD(eit_event->duration_3);
338 eit_event->start_time_1,
339 eit_event->start_time_2,
340 eit_event->start_time_3,
341 eit_event->start_time_4,
342 eit_event->start_time_5);
347 if ( TM != 3599 && (TM+duration < now || TM > now+14*24*60*60) )
350 if ( now <= (TM+duration) || TM == 3599 /*NVOD Service*/ ) // old events should not be cached
352 __u16 event_id = HILO(eit_event->event_id);
353 // eDebug("event_id is %d sid is %04x", event_id, service.sid);
356 int ev_erase_count = 0;
357 int tm_erase_count = 0;
359 // search in eventmap
360 eventMap::iterator ev_it =
361 servicemap.first.find(event_id);
363 // entry with this event_id is already exist ?
364 if ( ev_it != servicemap.first.end() )
366 if ( source > ev_it->second->type ) // update needed ?
367 goto next; // when not.. the skip this entry
369 // search this event in timemap
370 timeMap::iterator tm_it_tmp =
371 servicemap.second.find(ev_it->second->getStartTime());
373 if ( tm_it_tmp != servicemap.second.end() )
375 if ( tm_it_tmp->first == TM ) // correct eventData
378 delete ev_it->second;
379 evt = new eventData(eit_event, eit_event_size, source);
381 tm_it_tmp->second=evt;
387 // delete the found record from timemap
388 servicemap.second.erase(tm_it_tmp);
389 prevTimeIt=servicemap.second.end();
394 // search in timemap, for check of a case if new time has coincided with time of other event
395 // or event was is not found in eventmap
396 timeMap::iterator tm_it =
397 servicemap.second.find(TM);
399 if ( tm_it != servicemap.second.end() )
401 // i think, if event is not found on eventmap, but found on timemap updating nevertheless demands
403 if ( source > tm_it->second->type && tm_erase_count == 0 ) // update needed ?
404 goto next; // when not.. the skip this entry
407 // search this time in eventmap
408 eventMap::iterator ev_it_tmp =
409 servicemap.first.find(tm_it->second->getEventID());
411 if ( ev_it_tmp != servicemap.first.end() )
414 // delete the found record from eventmap
415 servicemap.first.erase(ev_it_tmp);
416 prevEventIt=servicemap.first.end();
420 evt = new eventData(eit_event, eit_event_size, source);
422 bool consistencyCheck=true;
424 if (ev_erase_count > 0 && tm_erase_count > 0) // 2 different pairs have been removed
427 delete ev_it->second;
428 delete tm_it->second;
432 else if (ev_erase_count == 0 && tm_erase_count > 0)
435 delete ev_it->second;
436 tm_it=prevTimeIt=servicemap.second.insert( prevTimeIt, std::pair<const time_t, eventData*>( TM, evt ) );
439 else if (ev_erase_count > 0 && tm_erase_count == 0)
442 delete tm_it->second;
443 ev_it=prevEventIt=servicemap.first.insert( prevEventIt, std::pair<const __u16, eventData*>( event_id, evt) );
446 else // added new eventData
449 consistencyCheck=false;
451 prevEventIt=servicemap.first.insert( prevEventIt, std::pair<const __u16, eventData*>( event_id, evt) );
452 prevTimeIt=servicemap.second.insert( prevTimeIt, std::pair<const time_t, eventData*>( TM, evt ) );
455 if ( consistencyCheck )
457 if ( tm_it->second != evt || ev_it->second != evt )
458 eFatal("tm_it->second != ev_it->second");
459 else if ( tm_it->second->getStartTime() != tm_it->first )
460 eFatal("event start_time(%d) non equal timemap key(%d)",
461 tm_it->second->getStartTime(), tm_it->first );
462 else if ( tm_it->first != TM )
463 eFatal("timemap key(%d) non equal TM(%d)",
465 else if ( ev_it->second->getEventID() != ev_it->first )
466 eFatal("event_id (%d) non equal event_map key(%d)",
467 ev_it->second->getEventID(), ev_it->first);
468 else if ( ev_it->first != event_id )
469 eFatal("eventmap key(%d) non equal event_id(%d)",
470 ev_it->first, event_id );
476 if ( servicemap.first.size() != servicemap.second.size() )
478 FILE *f = fopen("/hdd/event_map.txt", "w+");
480 for (eventMap::iterator it(servicemap.first.begin())
481 ; it != servicemap.first.end(); ++it )
482 fprintf(f, "%d(key %d) -> time %d, event_id %d, data %p\n",
483 i++, (int)it->first, (int)it->second->getStartTime(), (int)it->second->getEventID(), it->second );
485 f = fopen("/hdd/time_map.txt", "w+");
487 for (timeMap::iterator it(servicemap.second.begin())
488 ; it != servicemap.second.end(); ++it )
489 fprintf(f, "%d(key %d) -> time %d, event_id %d, data %p\n",
490 i++, (int)it->first, (int)it->second->getStartTime(), (int)it->second->getEventID(), it->second );
493 eFatal("(1)map sizes not equal :( sid %04x tsid %04x onid %04x size %d size2 %d",
494 service.sid, service.tsid, service.onid,
495 servicemap.first.size(), servicemap.second.size() );
498 ptr += eit_event_size;
499 eit_event=(eit_event_struct*)(((__u8*)eit_event)+eit_event_size);
503 void eEPGCache::flushEPG(const uniqueEPGKey & s)
505 eDebug("[EPGC] flushEPG %d", (int)(bool)s);
506 singleLock l(cache_lock);
507 if (s) // clear only this service
509 eventCache::iterator it = eventDB.find(s);
510 if ( it != eventDB.end() )
512 eventMap &evMap = it->second.first;
513 timeMap &tmMap = it->second.second;
515 for (eventMap::iterator i = evMap.begin(); i != evMap.end(); ++i)
520 // TODO .. search corresponding channel for removed service and remove this channel from lastupdated map
521 #ifdef ENABLE_PRIVATE_EPG
522 contentMaps::iterator it =
523 content_time_tables.find(s);
524 if ( it != content_time_tables.end() )
527 content_time_tables.erase(it);
532 else // clear complete EPG Cache
534 for (eventCache::iterator it(eventDB.begin());
535 it != eventDB.end(); ++it)
537 eventMap &evMap = it->second.first;
538 timeMap &tmMap = it->second.second;
539 for (eventMap::iterator i = evMap.begin(); i != evMap.end(); ++i)
545 #ifdef ENABLE_PRIVATE_EPG
546 content_time_tables.clear();
548 channelLastUpdated.clear();
549 singleLock m(channel_map_lock);
550 for (channelMapIterator it(m_knownChannels.begin()); it != m_knownChannels.end(); ++it)
551 it->second->startEPG();
553 eDebug("[EPGC] %i bytes for cache used", eventData::CacheSize);
556 void eEPGCache::cleanLoop()
558 singleLock s(cache_lock);
559 if (!eventDB.empty())
561 eDebug("[EPGC] start cleanloop");
563 time_t now = time(0)+eDVBLocalTimeHandler::getInstance()->difference();
565 for (eventCache::iterator DBIt = eventDB.begin(); DBIt != eventDB.end(); DBIt++)
567 bool updated = false;
568 for (timeMap::iterator It = DBIt->second.second.begin(); It != DBIt->second.second.end() && It->first < now;)
570 if ( now > (It->first+It->second->getDuration()) ) // outdated normal entry (nvod references to)
572 // remove entry from eventMap
573 eventMap::iterator b(DBIt->second.first.find(It->second->getEventID()));
574 if ( b != DBIt->second.first.end() )
576 // release Heap Memory for this entry (new ....)
577 // eDebug("[EPGC] delete old event (evmap)");
578 DBIt->second.first.erase(b);
581 // remove entry from timeMap
582 // eDebug("[EPGC] release heap mem");
584 DBIt->second.second.erase(It++);
585 // eDebug("[EPGC] delete old event (timeMap)");
591 #ifdef ENABLE_PRIVATE_EPG
594 contentMaps::iterator x =
595 content_time_tables.find( DBIt->first );
596 if ( x != content_time_tables.end() )
598 timeMap &tmMap = eventDB[DBIt->first].second;
599 for ( contentMap::iterator i = x->second.begin(); i != x->second.end(); )
601 for ( contentTimeMap::iterator it(i->second.begin());
602 it != i->second.end(); )
604 if ( tmMap.find(it->second.first) == tmMap.end() )
605 i->second.erase(it++);
609 if ( i->second.size() )
612 x->second.erase(i++);
618 eDebug("[EPGC] stop cleanloop");
619 eDebug("[EPGC] %i bytes for cache used", eventData::CacheSize);
621 cleanTimer.start(CLEAN_INTERVAL,true);
624 eEPGCache::~eEPGCache()
626 messages.send(Message::quit);
627 kill(); // waiting for thread shutdown
628 singleLock s(cache_lock);
629 for (eventCache::iterator evIt = eventDB.begin(); evIt != eventDB.end(); evIt++)
630 for (eventMap::iterator It = evIt->second.first.begin(); It != evIt->second.first.end(); It++)
634 void eEPGCache::gotMessage( const Message &msg )
639 flushEPG(msg.service);
641 case Message::startChannel:
643 singleLock s(channel_map_lock);
644 channelMapIterator channel =
645 m_knownChannels.find(msg.channel);
646 if ( channel != m_knownChannels.end() )
647 channel->second->startChannel();
650 case Message::leaveChannel:
652 singleLock s(channel_map_lock);
653 channelMapIterator channel =
654 m_knownChannels.find(msg.channel);
655 if ( channel != m_knownChannels.end() )
656 channel->second->abortEPG();
662 #ifdef ENABLE_PRIVATE_EPG
663 case Message::got_private_pid:
665 for (channelMapIterator it(m_knownChannels.begin()); it != m_knownChannels.end(); ++it)
667 eDVBChannel *channel = (eDVBChannel*) it->first;
668 channel_data *data = it->second;
669 eDVBChannelID chid = channel->getChannelID();
670 if ( chid.transport_stream_id.get() == msg.service.tsid &&
671 chid.original_network_id.get() == msg.service.onid &&
672 data->m_PrivatePid == -1 )
674 data->m_PrevVersion = -1;
675 data->m_PrivatePid = msg.pid;
676 data->m_PrivateService = msg.service;
677 updateMap::iterator It = channelLastUpdated.find( channel->getChannelID() );
678 int update = ( It != channelLastUpdated.end() ? ( UPDATE_INTERVAL - ( (time(0)+eDVBLocalTimeHandler::getInstance()->difference()-It->second) * 1000 ) ) : ZAP_DELAY );
679 if (update < ZAP_DELAY)
681 data->startPrivateTimer.start(update, 1);
683 eDebug("[EPGC] next private update in %i min", update/60000);
684 else if (update >= 1000)
685 eDebug("[EPGC] next private update in %i sec", update/1000);
692 case Message::timeChanged:
696 eDebug("unhandled EPGCache Message!!");
701 void eEPGCache::thread()
711 void eEPGCache::load()
713 singleLock s(cache_lock);
714 FILE *f = fopen("/hdd/epg.dat", "r");
720 unsigned char md5_saved[16];
721 unsigned char md5[16];
724 if (!md5_file("/hdd/epg.dat", 1, md5))
726 FILE *f = fopen("/hdd/epg.dat.md5", "r");
729 fread( md5_saved, 16, 1, f);
731 if ( !memcmp(md5_saved, md5, 16) )
738 unsigned int magic=0;
739 fread( &magic, sizeof(int), 1, f);
740 if (magic != 0x98765432)
742 eDebug("epg file has incorrect byte order.. dont read it");
747 fread( text1, 13, 1, f);
748 if ( !strncmp( text1, "ENIGMA_EPG_V5", 13) )
750 fread( &size, sizeof(int), 1, f);
757 fread( &key, sizeof(uniqueEPGKey), 1, f);
758 fread( &size, sizeof(int), 1, f);
764 fread( &type, sizeof(__u8), 1, f);
765 fread( &len, sizeof(__u8), 1, f);
766 event = new eventData(0, len, type);
767 event->EITdata = new __u8[len];
768 eventData::CacheSize+=len;
769 fread( event->EITdata, len, 1, f);
770 evMap[ event->getEventID() ]=event;
771 tmMap[ event->getStartTime() ]=event;
774 eventDB[key]=std::pair<eventMap,timeMap>(evMap,tmMap);
777 eDebug("%d events read from /hdd/epg.dat", cnt);
778 #ifdef ENABLE_PRIVATE_EPG
780 fread( text2, 11, 1, f);
781 if ( !strncmp( text2, "PRIVATE_EPG", 11) )
784 fread( &size, sizeof(int), 1, f);
789 fread( &key, sizeof(uniqueEPGKey), 1, f);
790 fread( &size, sizeof(int), 1, f);
795 fread( &content_id, sizeof(int), 1, f);
796 fread( &size, sizeof(int), 1, f);
801 fread( &time1, sizeof(time_t), 1, f);
802 fread( &time2, sizeof(time_t), 1, f);
803 fread( &event_id, sizeof(__u16), 1, f);
804 content_time_tables[key][content_id][time1]=std::pair<time_t, __u16>(time2, event_id);
809 #endif // ENABLE_PRIVATE_EPG
812 eDebug("[EPGC] don't read old epg database");
818 void eEPGCache::save()
822 if (statfs("/hdd", &s)<0)
830 // prevent writes to builtin flash
831 if ( tmp < 1024*1024*50 ) // storage size < 50MB
834 // check for enough free space on storage
837 if ( tmp < (eventData::CacheSize*12)/10 ) // 20% overhead
840 FILE *f = fopen("/hdd/epg.dat", "w");
844 unsigned int magic = 0x98765432;
845 fwrite( &magic, sizeof(int), 1, f);
846 const char *text = "ENIGMA_EPG_V5";
847 fwrite( text, 13, 1, f );
848 int size = eventDB.size();
849 fwrite( &size, sizeof(int), 1, f );
850 for (eventCache::iterator service_it(eventDB.begin()); service_it != eventDB.end(); ++service_it)
852 timeMap &timemap = service_it->second.second;
853 fwrite( &service_it->first, sizeof(uniqueEPGKey), 1, f);
854 size = timemap.size();
855 fwrite( &size, sizeof(int), 1, f);
856 for (timeMap::iterator time_it(timemap.begin()); time_it != timemap.end(); ++time_it)
858 __u8 len = time_it->second->ByteSize;
859 fwrite( &time_it->second->type, sizeof(__u8), 1, f );
860 fwrite( &len, sizeof(__u8), 1, f);
861 fwrite( time_it->second->EITdata, len, 1, f);
865 eDebug("%d events written to /hdd/epg.dat", cnt);
867 #ifdef ENABLE_PRIVATE_EPG
868 const char* text3 = "PRIVATE_EPG";
869 fwrite( text3, 11, 1, f );
870 size = content_time_tables.size();
871 fwrite( &size, sizeof(int), 1, f);
872 for (contentMaps::iterator a = content_time_tables.begin(); a != content_time_tables.end(); ++a)
874 contentMap &content_time_table = a->second;
875 fwrite( &a->first, sizeof(uniqueEPGKey), 1, f);
876 int size = content_time_table.size();
877 fwrite( &size, sizeof(int), 1, f);
878 for (contentMap::iterator i = content_time_table.begin(); i != content_time_table.end(); ++i )
880 int size = i->second.size();
881 fwrite( &i->first, sizeof(int), 1, f);
882 fwrite( &size, sizeof(int), 1, f);
883 for ( contentTimeMap::iterator it(i->second.begin());
884 it != i->second.end(); ++it )
886 fwrite( &it->first, sizeof(time_t), 1, f);
887 fwrite( &it->second.first, sizeof(time_t), 1, f);
888 fwrite( &it->second.second, sizeof(__u16), 1, f);
895 unsigned char md5[16];
896 if (!md5_file("/hdd/epg.dat", 1, md5))
898 FILE *f = fopen("/hdd/epg.dat.md5", "w");
901 fwrite( md5, 16, 1, f);
909 eEPGCache::channel_data::channel_data(eEPGCache *ml)
911 ,abortTimer(ml), zapTimer(ml), startPrivateTimer(ml)
912 ,state(0), isRunning(0), haveData(0), can_delete(1)
914 CONNECT(zapTimer.timeout, eEPGCache::channel_data::startEPG);
915 CONNECT(abortTimer.timeout, eEPGCache::channel_data::abortNonAvail);
916 CONNECT(startPrivateTimer.timeout, eEPGCache::channel_data::startPrivateReader);
919 bool eEPGCache::channel_data::finishEPG()
921 if (!isRunning) // epg ready
923 eDebug("[EPGC] stop caching events(%ld)", time(0)+eDVBLocalTimeHandler::getInstance()->difference());
924 zapTimer.start(UPDATE_INTERVAL, 1);
925 eDebug("[EPGC] next update in %i min", UPDATE_INTERVAL / 60000);
926 for (int i=0; i < 3; ++i)
928 seenSections[i].clear();
929 calcedSections[i].clear();
931 singleLock l(cache->cache_lock);
932 cache->channelLastUpdated[channel->getChannelID()] = time(0)+eDVBLocalTimeHandler::getInstance()->difference();
933 #ifdef ENABLE_PRIVATE_EPG
934 if (seenPrivateSections.empty())
942 void eEPGCache::channel_data::startEPG()
944 eDebug("[EPGC] start caching events(%ld)", eDVBLocalTimeHandler::getInstance()->difference()+time(0));
948 for (int i=0; i < 3; ++i)
950 seenSections[i].clear();
951 calcedSections[i].clear();
954 eDVBSectionFilterMask mask;
955 memset(&mask, 0, sizeof(mask));
957 mask.flags = eDVBSectionFilterMask::rfCRC;
961 m_NowNextReader->connectRead(slot(*this, &eEPGCache::channel_data::readData), m_NowNextConn);
962 m_NowNextReader->start(mask);
963 isRunning |= NOWNEXT;
967 m_ScheduleReader->connectRead(slot(*this, &eEPGCache::channel_data::readData), m_ScheduleConn);
968 m_ScheduleReader->start(mask);
969 isRunning |= SCHEDULE;
973 m_ScheduleOtherReader->connectRead(slot(*this, &eEPGCache::channel_data::readData), m_ScheduleOtherConn);
974 m_ScheduleOtherReader->start(mask);
975 isRunning |= SCHEDULE_OTHER;
977 abortTimer.start(7000,true);
980 void eEPGCache::channel_data::abortNonAvail()
984 if ( !(haveData&eEPGCache::NOWNEXT) && (isRunning&eEPGCache::NOWNEXT) )
986 eDebug("[EPGC] abort non avail nownext reading");
987 isRunning &= ~eEPGCache::NOWNEXT;
988 m_NowNextReader->stop();
991 if ( !(haveData&eEPGCache::SCHEDULE) && (isRunning&eEPGCache::SCHEDULE) )
993 eDebug("[EPGC] abort non avail schedule reading");
994 isRunning &= ~SCHEDULE;
995 m_ScheduleReader->stop();
998 if ( !(haveData&eEPGCache::SCHEDULE_OTHER) && (isRunning&eEPGCache::SCHEDULE_OTHER) )
1000 eDebug("[EPGC] abort non avail schedule_other reading");
1001 isRunning &= ~SCHEDULE_OTHER;
1002 m_ScheduleOtherReader->stop();
1003 m_ScheduleOtherConn=0;
1006 abortTimer.start(90000, true);
1010 for (int i=0; i < 3; ++i)
1012 seenSections[i].clear();
1013 calcedSections[i].clear();
1015 #ifdef ENABLE_PRIVATE_EPG
1016 if (seenPrivateSections.empty())
1024 void eEPGCache::channel_data::startChannel()
1026 updateMap::iterator It = cache->channelLastUpdated.find( channel->getChannelID() );
1028 int update = ( It != cache->channelLastUpdated.end() ? ( UPDATE_INTERVAL - ( (time(0)+eDVBLocalTimeHandler::getInstance()->difference()-It->second) * 1000 ) ) : ZAP_DELAY );
1030 if (update < ZAP_DELAY)
1033 zapTimer.start(update, 1);
1034 if (update >= 60000)
1035 eDebug("[EPGC] next update in %i min", update/60000);
1036 else if (update >= 1000)
1037 eDebug("[EPGC] next update in %i sec", update/1000);
1040 void eEPGCache::channel_data::abortEPG()
1042 for (int i=0; i < 3; ++i)
1044 seenSections[i].clear();
1045 calcedSections[i].clear();
1051 eDebug("[EPGC] abort caching events !!");
1052 if (isRunning & eEPGCache::SCHEDULE)
1054 isRunning &= ~eEPGCache::SCHEDULE;
1055 m_ScheduleReader->stop();
1058 if (isRunning & eEPGCache::NOWNEXT)
1060 isRunning &= ~eEPGCache::NOWNEXT;
1061 m_NowNextReader->stop();
1064 if (isRunning & SCHEDULE_OTHER)
1066 isRunning &= ~eEPGCache::SCHEDULE_OTHER;
1067 m_ScheduleOtherReader->stop();
1068 m_ScheduleOtherConn=0;
1071 #ifdef ENABLE_PRIVATE_EPG
1072 if (m_PrivateReader)
1073 m_PrivateReader->stop();
1080 void eEPGCache::channel_data::readData( const __u8 *data)
1083 eDebug("get Null pointer from section reader !!");
1088 iDVBSectionReader *reader=NULL;
1092 reader=m_NowNextReader;
1093 source=eEPGCache::NOWNEXT;
1097 reader=m_ScheduleReader;
1098 source=eEPGCache::SCHEDULE;
1102 reader=m_ScheduleOtherReader;
1103 source=eEPGCache::SCHEDULE_OTHER;
1107 eDebug("[EPGC] unknown table_id !!!");
1110 tidMap &seenSections = this->seenSections[map];
1111 tidMap &calcedSections = this->calcedSections[map];
1112 if ( state == 1 && calcedSections == seenSections || state > 1 )
1114 eDebugNoNewLine("[EPGC] ");
1117 case eEPGCache::NOWNEXT:
1119 eDebugNoNewLine("nownext");
1121 case eEPGCache::SCHEDULE:
1123 eDebugNoNewLine("schedule");
1125 case eEPGCache::SCHEDULE_OTHER:
1126 m_ScheduleOtherConn=0;
1127 eDebugNoNewLine("schedule other");
1129 default: eDebugNoNewLine("unknown");break;
1131 eDebug(" finished(%ld)", time(0)+eDVBLocalTimeHandler::getInstance()->difference());
1134 isRunning &= ~source;
1140 eit_t *eit = (eit_t*) data;
1141 __u32 sectionNo = data[0] << 24;
1142 sectionNo |= data[3] << 16;
1143 sectionNo |= data[4] << 8;
1144 sectionNo |= eit->section_number;
1146 tidMap::iterator it =
1147 seenSections.find(sectionNo);
1149 if ( it == seenSections.end() )
1151 seenSections.insert(sectionNo);
1152 calcedSections.insert(sectionNo);
1153 __u32 tmpval = sectionNo & 0xFFFFFF00;
1154 __u8 incr = source == NOWNEXT ? 1 : 8;
1155 for ( int i = 0; i <= eit->last_section_number; i+=incr )
1157 if ( i == eit->section_number )
1159 for (int x=i; x <= eit->segment_last_section_number; ++x)
1160 calcedSections.insert(tmpval|(x&0xFF));
1163 calcedSections.insert(tmpval|(i&0xFF));
1165 cache->sectionRead(data, source, this);
1171 RESULT eEPGCache::lookupEventTime(const eServiceReference &service, time_t t, const eventData *&result, int direction)
1172 // if t == -1 we search the current event...
1174 singleLock s(cache_lock);
1175 uniqueEPGKey key(service);
1177 // check if EPG for this service is ready...
1178 eventCache::iterator It = eventDB.find( key );
1179 if ( It != eventDB.end() && !It->second.first.empty() ) // entrys cached ?
1182 t = time(0)+eDVBLocalTimeHandler::getInstance()->difference();
1183 timeMap::iterator i = direction <= 0 ? It->second.second.lower_bound(t) : // find > or equal
1184 It->second.second.upper_bound(t); // just >
1185 if ( i != It->second.second.end() )
1187 if ( direction < 0 || (direction == 0 && i->second->getStartTime() > t) )
1189 timeMap::iterator x = i;
1191 if ( x != It->second.second.end() )
1193 time_t start_time = x->second->getStartTime();
1198 if (t > (start_time+x->second->getDuration()))
1213 RESULT eEPGCache::lookupEventTime(const eServiceReference &service, time_t t, const eit_event_struct *&result, int direction)
1215 singleLock s(cache_lock);
1216 const eventData *data=0;
1217 RESULT ret = lookupEventTime(service, t, data, direction);
1219 result = data->get();
1223 RESULT eEPGCache::lookupEventTime(const eServiceReference &service, time_t t, Event *& result, int direction)
1225 singleLock s(cache_lock);
1226 const eventData *data=0;
1227 RESULT ret = lookupEventTime(service, t, data, direction);
1229 result = new Event((uint8_t*)data->get());
1233 RESULT eEPGCache::lookupEventTime(const eServiceReference &service, time_t t, ePtr<eServiceEvent> &result, int direction)
1235 singleLock s(cache_lock);
1236 const eventData *data=0;
1237 RESULT ret = lookupEventTime(service, t, data, direction);
1240 Event ev((uint8_t*)data->get());
1241 result = new eServiceEvent();
1242 const eServiceReferenceDVB &ref = (const eServiceReferenceDVB&)service;
1243 ret = result->parseFrom(&ev, (ref.getTransportStreamID().get()<<16)|ref.getOriginalNetworkID().get());
1248 RESULT eEPGCache::lookupEventId(const eServiceReference &service, int event_id, const eventData *&result )
1250 singleLock s(cache_lock);
1251 uniqueEPGKey key( service );
1253 eventCache::iterator It = eventDB.find( key );
1254 if ( It != eventDB.end() && !It->second.first.empty() ) // entrys cached?
1256 eventMap::iterator i( It->second.first.find( event_id ));
1257 if ( i != It->second.first.end() )
1265 eDebug("event %04x not found in epgcache", event_id);
1271 RESULT eEPGCache::lookupEventId(const eServiceReference &service, int event_id, const eit_event_struct *&result)
1273 singleLock s(cache_lock);
1274 const eventData *data=0;
1275 RESULT ret = lookupEventId(service, event_id, data);
1277 result = data->get();
1281 RESULT eEPGCache::lookupEventId(const eServiceReference &service, int event_id, Event *& result)
1283 singleLock s(cache_lock);
1284 const eventData *data=0;
1285 RESULT ret = lookupEventId(service, event_id, data);
1287 result = new Event((uint8_t*)data->get());
1291 RESULT eEPGCache::lookupEventId(const eServiceReference &service, int event_id, ePtr<eServiceEvent> &result)
1293 singleLock s(cache_lock);
1294 const eventData *data=0;
1295 RESULT ret = lookupEventId(service, event_id, data);
1298 Event ev((uint8_t*)data->get());
1299 result = new eServiceEvent();
1300 const eServiceReferenceDVB &ref = (const eServiceReferenceDVB&)service;
1301 ret = result->parseFrom(&ev, (ref.getTransportStreamID().get()<<16)|ref.getOriginalNetworkID().get());
1306 RESULT eEPGCache::startTimeQuery(const eServiceReference &service, time_t begin, int minutes)
1308 eventCache::iterator It = eventDB.find( service );
1309 if ( It != eventDB.end() && It->second.second.size() )
1311 m_timemap_end = minutes != -1 ? It->second.second.upper_bound(begin+minutes*60) : It->second.second.end();
1314 m_timemap_cursor = It->second.second.lower_bound(begin);
1315 if ( m_timemap_cursor != It->second.second.end() )
1317 if ( m_timemap_cursor->second->getStartTime() != begin )
1319 timeMap::iterator x = m_timemap_cursor;
1321 if ( x != It->second.second.end() )
1323 time_t start_time = x->second->getStartTime();
1324 if ( begin > start_time && begin < (start_time+x->second->getDuration()))
1325 m_timemap_cursor = x;
1331 m_timemap_cursor = It->second.second.begin();
1332 const eServiceReferenceDVB &ref = (const eServiceReferenceDVB&)service;
1333 currentQueryTsidOnid = (ref.getTransportStreamID().get()<<16) | ref.getOriginalNetworkID().get();
1339 RESULT eEPGCache::getNextTimeEntry(const eventData *& result)
1341 if ( m_timemap_cursor != m_timemap_end )
1343 result = m_timemap_cursor++->second;
1349 RESULT eEPGCache::getNextTimeEntry(const eit_event_struct *&result)
1351 if ( m_timemap_cursor != m_timemap_end )
1353 result = m_timemap_cursor++->second->get();
1359 RESULT eEPGCache::getNextTimeEntry(Event *&result)
1361 if ( m_timemap_cursor != m_timemap_end )
1363 result = new Event((uint8_t*)m_timemap_cursor++->second->get());
1369 RESULT eEPGCache::getNextTimeEntry(ePtr<eServiceEvent> &result)
1371 if ( m_timemap_cursor != m_timemap_end )
1373 Event ev((uint8_t*)m_timemap_cursor++->second->get());
1374 result = new eServiceEvent();
1375 return result->parseFrom(&ev, currentQueryTsidOnid);
1380 void fillTuple(PyObject *tuple, char *argstring, int argcount, PyObject *service, ePtr<eServiceEvent> &ptr, PyObject *nowTime, PyObject *service_name )
1384 while(pos < argcount)
1386 bool inc_refcount=false;
1387 switch(argstring[pos])
1389 case '0': // PyLong 0
1390 tmp = PyLong_FromLong(0);
1392 case 'I': // Event Id
1393 tmp = ptr ? PyLong_FromLong(ptr->getEventId()) : NULL;
1395 case 'B': // Event Begin Time
1396 tmp = ptr ? PyLong_FromLong(ptr->getBeginTime()) : NULL;
1398 case 'D': // Event Duration
1399 tmp = ptr ? PyLong_FromLong(ptr->getDuration()) : NULL;
1401 case 'T': // Event Title
1402 tmp = ptr ? PyString_FromString(ptr->getEventName().c_str()) : NULL;
1404 case 'S': // Event Short Description
1405 tmp = ptr ? PyString_FromString(ptr->getShortDescription().c_str()) : NULL;
1407 case 'E': // Event Extended Description
1408 tmp = ptr ? PyString_FromString(ptr->getExtendedDescription().c_str()) : NULL;
1410 case 'C': // Current Time
1412 inc_refcount = true;
1414 case 'R': // service reference string
1416 inc_refcount = true;
1418 case 'N': // service name
1420 inc_refcount = true;
1425 inc_refcount = true;
1429 PyTuple_SET_ITEM(tuple, pos++, tmp);
1433 PyObject *handleEvent(ePtr<eServiceEvent> &ptr, PyObject *dest_list, char* argstring, int argcount, PyObject *service, PyObject *nowTime, PyObject *service_name, PyObject *convertFunc, PyObject *convertFuncArgs)
1437 fillTuple(convertFuncArgs, argstring, argcount, service, ptr, nowTime, service_name);
1438 PyObject *result = PyObject_CallObject(convertFunc, convertFuncArgs);
1442 Py_DECREF(service_name);
1445 Py_DECREF(convertFuncArgs);
1446 Py_DECREF(dest_list);
1449 PyList_Append(dest_list, result);
1454 PyObject *tuple = PyTuple_New(argcount);
1455 fillTuple(tuple, argstring, argcount, service, ptr, nowTime, service_name);
1456 PyList_Append(dest_list, tuple);
1462 // here we get a python list
1463 // the first entry in the list is a python string to specify the format of the returned tuples (in a list)
1466 // B = Event Begin Time
1467 // D = Event Duration
1469 // S = Event Short Description
1470 // E = Event Extended Description
1472 // R = Service Reference
1474 // then for each service follows a tuple
1475 // first tuple entry is the servicereference (as string... use the ref.toString() function)
1476 // the second is the type of query
1478 // -1 = event before given start_time
1479 // 0 = event intersects given start_time
1480 // +1 = event after given start_time
1482 // when type is eventid it is the event_id
1483 // when type is time then it is the start_time ( 0 for now_time )
1484 // the fourth is the end_time .. ( optional .. for query all events in time range)
1486 PyObject *eEPGCache::lookupEvent(PyObject *list, PyObject *convertFunc)
1488 PyObject *convertFuncArgs=NULL;
1490 char *argstring=NULL;
1491 if (!PyList_Check(list))
1493 PyErr_SetString(PyExc_StandardError,
1499 int listSize=PyList_Size(list);
1502 PyErr_SetString(PyExc_StandardError,
1503 "not params given");
1504 eDebug("not params given");
1509 PyObject *argv=PyList_GET_ITEM(list, 0); // borrowed reference!
1510 if (PyString_Check(argv))
1512 argstring = PyString_AS_STRING(argv);
1516 argstring = "I"; // just event id as default
1517 argcount = strlen(argstring);
1518 // eDebug("have %d args('%s')", argcount, argstring);
1522 if (!PyCallable_Check(convertFunc))
1524 PyErr_SetString(PyExc_StandardError,
1525 "convertFunc must be callable");
1526 eDebug("convertFunc is not callable");
1529 convertFuncArgs = PyTuple_New(argcount);
1532 PyObject *nowTime = strchr(argstring, 'C') ?
1533 PyLong_FromLong(time(0)+eDVBLocalTimeHandler::getInstance()->difference()) :
1536 bool must_get_service_name = strchr(argstring, 'N') ? true : false;
1539 PyObject *dest_list=PyList_New(0);
1540 while(listSize > listIt)
1542 PyObject *item=PyList_GET_ITEM(list, listIt++); // borrowed reference!
1543 if (PyTuple_Check(item))
1545 bool service_changed=false;
1550 int tupleSize=PyTuple_Size(item);
1552 PyObject *service=NULL;
1553 while(tupleSize > tupleIt) // parse query args
1555 PyObject *entry=PyTuple_GET_ITEM(item, tupleIt); // borrowed reference!
1560 if (!PyString_Check(entry))
1562 eDebug("tuple entry 0 is no a string");
1569 type=PyInt_AsLong(entry);
1570 if (type < -1 || type > 2)
1572 eDebug("unknown type %d", type);
1577 event_id=stime=PyInt_AsLong(entry);
1580 minutes=PyInt_AsLong(entry);
1583 eDebug("unneeded extra argument");
1587 eServiceReference ref(PyString_AS_STRING(service));
1588 if (ref.type != eServiceReference::idDVB)
1590 eDebug("service reference for epg query is not valid");
1594 // redirect subservice querys to parent service
1595 eServiceReferenceDVB &dvb_ref = (eServiceReferenceDVB&)ref;
1596 if (dvb_ref.getParentTransportStreamID().get()) // linkage subservice
1598 eServiceCenterPtr service_center;
1599 if (!eServiceCenter::getPrivInstance(service_center))
1601 dvb_ref.setTransportStreamID( dvb_ref.getParentTransportStreamID() );
1602 dvb_ref.setServiceID( dvb_ref.getParentServiceID() );
1603 dvb_ref.setParentTransportStreamID(eTransportStreamID(0));
1604 dvb_ref.setParentServiceID(eServiceID(0));
1606 service = PyString_FromString(dvb_ref.toString().c_str());
1607 service_changed = true;
1611 PyObject *service_name=NULL;
1612 if (must_get_service_name)
1614 ePtr<iStaticServiceInformation> sptr;
1615 eServiceCenterPtr service_center;
1616 eServiceCenter::getPrivInstance(service_center);
1619 service_center->info(ref, sptr);
1623 sptr->getName(ref, name);
1625 service_name = PyString_FromString(name.c_str());
1629 service_name = PyString_FromString("<n/a>");
1634 if (!startTimeQuery(ref, stime, minutes))
1636 ePtr<eServiceEvent> ptr;
1637 while (!getNextTimeEntry(ptr))
1639 PyObject *ret = handleEvent(ptr, dest_list, argstring, argcount, service, nowTime, service_name, convertFunc, convertFuncArgs);
1648 ePtr<eServiceEvent> ptr;
1652 lookupEventId(ref, event_id, ptr);
1654 lookupEventTime(ref, stime, ptr, type);
1656 PyObject *ret = handleEvent(ptr, dest_list, argstring, argcount, service, nowTime, service_name, convertFunc, convertFuncArgs);
1660 if (service_changed)
1663 Py_DECREF(service_name);
1668 if (convertFuncArgs)
1669 Py_DECREF(convertFuncArgs);
1675 void fillTuple2(PyObject *tuple, const char *argstring, int argcount, eventData *evData, ePtr<eServiceEvent> &ptr, PyObject *service_name, PyObject *service_reference)
1679 while(pos < argcount)
1681 bool inc_refcount=false;
1682 switch(argstring[pos])
1684 case '0': // PyLong 0
1685 tmp = PyLong_FromLong(0);
1687 case 'I': // Event Id
1688 tmp = PyLong_FromLong(evData->getEventID());
1690 case 'B': // Event Begin Time
1692 tmp = ptr ? PyLong_FromLong(ptr->getBeginTime()) : NULL;
1694 tmp = PyLong_FromLong(evData->getStartTime());
1696 case 'D': // Event Duration
1698 tmp = ptr ? PyLong_FromLong(ptr->getDuration()) : NULL;
1700 tmp = PyLong_FromLong(evData->getDuration());
1702 case 'T': // Event Title
1703 tmp = ptr ? PyString_FromString(ptr->getEventName().c_str()) : NULL;
1705 case 'S': // Event Short Description
1706 tmp = ptr ? PyString_FromString(ptr->getShortDescription().c_str()) : NULL;
1708 case 'E': // Event Extended Description
1709 tmp = ptr ? PyString_FromString(ptr->getExtendedDescription().c_str()) : NULL;
1711 case 'R': // service reference string
1712 tmp = service_reference;
1713 inc_refcount = true;
1715 case 'N': // service name
1717 inc_refcount = true;
1723 inc_refcount = true;
1727 PyTuple_SET_ITEM(tuple, pos++, tmp);
1731 // here we get a python tuple
1732 // the first entry in the tuple is a python string to specify the format of the returned tuples (in a list)
1734 // B = Event Begin Time
1735 // D = Event Duration
1737 // S = Event Short Description
1738 // E = Event Extended Description
1739 // R = Service Reference
1741 // the second tuple entry is the MAX matches value
1742 // the third tuple entry is the type of query
1743 // 0 = search for similar broadcastings (SIMILAR_BROADCASTINGS_SEARCH)
1744 // 1 = search events with exactly title name (EXAKT_TITLE_SEARCH)
1745 // 2 = search events with text in title name (PARTIAL_TITLE_SEARCH)
1746 // when type is 0 (SIMILAR_BROADCASTINGS_SEARCH)
1747 // the fourth is the servicereference string
1748 // the fifth is the eventid
1749 // when type is 1 or 2 (EXAKT_TITLE_SEARCH or PARTIAL_TITLE_SEARCH)
1750 // the fourth is the search text
1752 // 0 = case sensitive (CASE_CHECK)
1753 // 1 = case insensitive (NO_CASECHECK)
1755 PyObject *eEPGCache::search(PyObject *arg)
1761 const char *argstring=0;
1765 bool needServiceEvent=false;
1768 if (PyTuple_Check(arg))
1770 int tuplesize=PyTuple_Size(arg);
1773 PyObject *obj = PyTuple_GET_ITEM(arg,0);
1774 if (PyString_Check(obj))
1776 argcount = PyString_GET_SIZE(obj);
1777 argstring = PyString_AS_STRING(obj);
1778 for (int i=0; i < argcount; ++i)
1779 switch(argstring[i])
1784 needServiceEvent=true;
1791 PyErr_SetString(PyExc_StandardError,
1793 eDebug("tuple arg 0 is not a string");
1798 maxmatches = PyLong_AsLong(PyTuple_GET_ITEM(arg, 1));
1801 querytype = PyLong_AsLong(PyTuple_GET_ITEM(arg, 2));
1802 if (tuplesize > 4 && querytype == 0)
1804 PyObject *obj = PyTuple_GET_ITEM(arg, 3);
1805 if (PyString_Check(obj))
1807 refstr = PyString_AS_STRING(obj);
1808 eServiceReferenceDVB ref(refstr);
1811 eventid = PyLong_AsLong(PyTuple_GET_ITEM(arg, 4));
1812 singleLock s(cache_lock);
1813 const eventData *evData = 0;
1814 lookupEventId(ref, eventid, evData);
1817 __u8 *data = evData->EITdata;
1818 int tmp = evData->ByteSize-12;
1819 __u32 *p = (__u32*)(data+12);
1820 // search short and extended event descriptors
1824 descriptorMap::iterator it =
1825 eventData::descriptors.find(crc);
1826 if (it != eventData::descriptors.end())
1828 __u8 *descr_data = it->second.second;
1829 switch(descr_data[0])
1832 descr[++descridx]=crc;
1841 eDebug("event not found");
1845 PyErr_SetString(PyExc_StandardError,
1847 eDebug("tuple arg 4 is not a valid service reference string");
1853 PyErr_SetString(PyExc_StandardError,
1855 eDebug("tuple arg 4 is not a string");
1859 else if (tuplesize > 4 && (querytype == 1 || querytype == 2) )
1861 PyObject *obj = PyTuple_GET_ITEM(arg, 3);
1862 if (PyString_Check(obj))
1864 int casetype = PyLong_AsLong(PyTuple_GET_ITEM(arg, 4));
1865 const char *str = PyString_AS_STRING(obj);
1866 int textlen = PyString_GET_SIZE(obj);
1868 eDebug("lookup for events with '%s' as title(%s)", str, casetype?"ignore case":"case sensitive");
1870 eDebug("lookup for events with '%s' in title(%s)", str, casetype?"ignore case":"case sensitive");
1871 singleLock s(cache_lock);
1872 for (descriptorMap::iterator it(eventData::descriptors.begin());
1873 it != eventData::descriptors.end() && descridx < 511; ++it)
1875 __u8 *data = it->second.second;
1876 if ( data[0] == 0x4D ) // short event descriptor
1878 int title_len = data[5];
1879 if ( querytype == 1 )
1881 if (title_len > textlen)
1883 else if (title_len < textlen)
1887 if ( !strncasecmp((const char*)data+6, str, title_len) )
1889 // std::string s((const char*)data+6, title_len);
1890 // eDebug("match1 %s %s", str, s.c_str() );
1891 descr[++descridx] = it->first;
1894 else if ( !strncmp((const char*)data+6, str, title_len) )
1896 // std::string s((const char*)data+6, title_len);
1897 // eDebug("match2 %s %s", str, s.c_str() );
1898 descr[++descridx] = it->first;
1904 while((title_len-idx) >= textlen)
1908 if (!strncasecmp((const char*)data+6+idx, str, textlen) )
1910 descr[++descridx] = it->first;
1911 // std::string s((const char*)data+6, title_len);
1912 // eDebug("match 3 %s %s", str, s.c_str() );
1915 else if (!strncmp((const char*)data+6+idx, str, textlen) )
1917 descr[++descridx] = it->first;
1918 // std::string s((const char*)data+6, title_len);
1919 // eDebug("match 4 %s %s", str, s.c_str() );
1931 PyErr_SetString(PyExc_StandardError,
1933 eDebug("tuple arg 4 is not a string");
1939 PyErr_SetString(PyExc_StandardError,
1941 eDebug("tuple arg 3(%d) is not a known querytype(0, 1, 2)", querytype);
1947 PyErr_SetString(PyExc_StandardError,
1949 eDebug("not enough args in tuple");
1955 PyErr_SetString(PyExc_StandardError,
1957 eDebug("arg 0 is not a tuple");
1963 int maxcount=maxmatches;
1964 eServiceReferenceDVB ref(refstr?refstr:"");
1965 // ref is only valid in SIMILAR_BROADCASTING_SEARCH
1966 // in this case we start searching with the base service
1967 bool first = ref.valid() ? true : false;
1968 singleLock s(cache_lock);
1969 eventCache::iterator cit(ref.valid() ? eventDB.find(ref) : eventDB.begin());
1970 while(cit != eventDB.end() && maxcount)
1972 if ( ref.valid() && !first && cit->first == ref )
1974 // do not scan base service twice ( only in SIMILAR BROADCASTING SEARCH )
1978 PyObject *service_name=0;
1979 PyObject *service_reference=0;
1980 timeMap &evmap = cit->second.second;
1982 for (timeMap::iterator evit(evmap.begin()); evit != evmap.end() && maxcount; ++evit)
1984 if (evit->second->getEventID() == eventid)
1986 __u8 *data = evit->second->EITdata;
1987 int tmp = evit->second->ByteSize-12;
1988 __u32 *p = (__u32*)(data+12);
1989 // check if any of our descriptor used by this event
1994 for ( int i=0; i <= descridx; ++i)
1996 if (descr[i] == crc32) // found...
2001 if ( (querytype == 0 && cnt == descridx) ||
2002 ((querytype == 1 || querytype == 2) && cnt != -1) )
2004 const uniqueEPGKey &service = cit->first;
2005 eServiceReference ref =
2006 eDVBDB::getInstance()->searchReference(service.tsid, service.onid, service.sid);
2009 // create servive event
2010 ePtr<eServiceEvent> ptr;
2011 if (needServiceEvent)
2013 lookupEventId(ref, evit->first, ptr);
2015 eDebug("event not found !!!!!!!!!!!");
2017 // create service name
2018 if (!service_name && strchr(argstring,'N'))
2020 ePtr<iStaticServiceInformation> sptr;
2021 eServiceCenterPtr service_center;
2022 eServiceCenter::getPrivInstance(service_center);
2025 service_center->info(ref, sptr);
2029 sptr->getName(ref, name);
2031 service_name = PyString_FromString(name.c_str());
2035 service_name = PyString_FromString("<n/a>");
2037 // create servicereference string
2038 if (!service_reference && strchr(argstring,'R'))
2039 service_reference = PyString_FromString(ref.toString().c_str());
2042 ret = PyList_New(0);
2044 PyObject *tuple = PyTuple_New(argcount);
2046 fillTuple2(tuple, argstring, argcount, evit->second, ptr, service_name, service_reference);
2047 PyList_Append(ret, tuple);
2054 Py_DECREF(service_name);
2055 if (service_reference)
2056 Py_DECREF(service_reference);
2059 // now start at first service in epgcache database ( only in SIMILAR BROADCASTING SEARCH )
2061 cit=eventDB.begin();
2077 #ifdef ENABLE_PRIVATE_EPG
2078 #include <dvbsi++/descriptor_tag.h>
2079 #include <dvbsi++/unknown_descriptor.h>
2080 #include <dvbsi++/private_data_specifier_descriptor.h>
2082 void eEPGCache::PMTready(eDVBServicePMTHandler *pmthandler)
2084 ePtr<eTable<ProgramMapSection> > ptr;
2085 if (!pmthandler->getPMT(ptr) && ptr)
2087 std::vector<ProgramMapSection*>::const_iterator i;
2088 for (i = ptr->getSections().begin(); i != ptr->getSections().end(); ++i)
2090 const ProgramMapSection &pmt = **i;
2092 ElementaryStreamInfoConstIterator es;
2093 for (es = pmt.getEsInfo()->begin(); es != pmt.getEsInfo()->end(); ++es)
2096 switch ((*es)->getType())
2098 case 0x05: // private
2099 for (DescriptorConstIterator desc = (*es)->getDescriptors()->begin();
2100 desc != (*es)->getDescriptors()->end(); ++desc)
2102 switch ((*desc)->getTag())
2104 case PRIVATE_DATA_SPECIFIER_DESCRIPTOR:
2105 if (((PrivateDataSpecifierDescriptor*)(*desc))->getPrivateDataSpecifier() == 190)
2110 UnknownDescriptor *descr = (UnknownDescriptor*)*desc;
2111 int descr_len = descr->getLength();
2114 uint8_t data[descr_len+2];
2115 descr->writeToBuffer(data);
2116 if ( !data[2] && !data[3] && data[4] == 0xFF && data[5] == 0xFF )
2130 eServiceReferenceDVB ref;
2131 if (!pmthandler->getServiceReference(ref))
2133 int pid = (*es)->getPid();
2134 messages.send(Message(Message::got_private_pid, ref, pid));
2142 eDebug("PMTready but no pmt!!");
2149 date_time( const date_time &a )
2151 memcpy(data, a.data, 5);
2154 date_time( const __u8 data[5])
2156 memcpy(this->data, data, 5);
2157 tm = parseDVBtime(data[0], data[1], data[2], data[3], data[4]);
2162 const __u8& operator[](int pos) const
2168 struct less_datetime
2170 bool operator()( const date_time &a, const date_time &b ) const
2172 return abs(a.tm-b.tm) < 360 ? false : a.tm < b.tm;
2176 void eEPGCache::privateSectionRead(const uniqueEPGKey ¤t_service, const __u8 *data)
2178 contentMap &content_time_table = content_time_tables[current_service];
2179 singleLock s(cache_lock);
2180 std::map< date_time, std::list<uniqueEPGKey>, less_datetime > start_times;
2181 eventMap &evMap = eventDB[current_service].first;
2182 timeMap &tmMap = eventDB[current_service].second;
2184 int content_id = data[ptr++] << 24;
2185 content_id |= data[ptr++] << 16;
2186 content_id |= data[ptr++] << 8;
2187 content_id |= data[ptr++];
2189 contentTimeMap &time_event_map =
2190 content_time_table[content_id];
2191 for ( contentTimeMap::iterator it( time_event_map.begin() );
2192 it != time_event_map.end(); ++it )
2194 eventMap::iterator evIt( evMap.find(it->second.second) );
2195 if ( evIt != evMap.end() )
2197 delete evIt->second;
2200 tmMap.erase(it->second.first);
2202 time_event_map.clear();
2205 memcpy(duration, data+ptr, 3);
2208 fromBCD(duration[0])*3600+fromBCD(duration[1])*60+fromBCD(duration[2]);
2210 const __u8 *descriptors[65];
2211 const __u8 **pdescr = descriptors;
2213 int descriptors_length = (data[ptr++]&0x0F) << 8;
2214 descriptors_length |= data[ptr++];
2215 while ( descriptors_length > 0 )
2217 int descr_type = data[ptr];
2218 int descr_len = data[ptr+1];
2219 descriptors_length -= (descr_len+2);
2220 if ( descr_type == 0xf2 )
2223 int tsid = data[ptr++] << 8;
2224 tsid |= data[ptr++];
2225 int onid = data[ptr++] << 8;
2226 onid |= data[ptr++];
2227 int sid = data[ptr++] << 8;
2230 // WORKAROUND for wrong transmitted epg data
2231 if ( onid == 0x85 && tsid == 0x11 && sid == 0xd3 ) // premiere sends wrong tsid here
2233 else if ( onid == 0x85 && tsid == 0x3 && sid == 0xf5 ) // premiere sends wrong sid here
2235 ////////////////////////////////////////////
2237 uniqueEPGKey service( sid, onid, tsid );
2239 while( descr_len > 0 )
2242 datetime[0] = data[ptr++];
2243 datetime[1] = data[ptr++];
2244 int tmp_len = data[ptr++];
2246 while( tmp_len > 0 )
2248 memcpy(datetime+2, data+ptr, 3);
2252 start_times[datetime].push_back(service);
2264 eit_event_struct *ev_struct = (eit_event_struct*) event;
2265 ev_struct->running_status = 0;
2266 ev_struct->free_CA_mode = 1;
2267 memcpy(event+7, duration, 3);
2269 const __u8 **d=descriptors;
2270 while ( d < pdescr )
2272 memcpy(event+ptr, *d, ((*d)[1])+2);
2276 for ( std::map< date_time, std::list<uniqueEPGKey> >::iterator it(start_times.begin()); it != start_times.end(); ++it )
2278 time_t now = eDVBLocalTimeHandler::getInstance()->nowTime();
2279 if ( (it->first.tm + duration_sec) < now )
2281 memcpy(event+2, it->first.data, 5);
2284 for (std::list<uniqueEPGKey>::iterator i(it->second.begin()); i != it->second.end(); ++i)
2286 event[bptr++] = 0x4A;
2287 __u8 *len = event+(bptr++);
2288 event[bptr++] = (i->tsid & 0xFF00) >> 8;
2289 event[bptr++] = (i->tsid & 0xFF);
2290 event[bptr++] = (i->onid & 0xFF00) >> 8;
2291 event[bptr++] = (i->onid & 0xFF);
2292 event[bptr++] = (i->sid & 0xFF00) >> 8;
2293 event[bptr++] = (i->sid & 0xFF);
2294 event[bptr++] = 0xB0;
2295 bptr += sprintf((char*)(event+bptr), "Option %d", ++cnt);
2296 *len = ((event+bptr) - len)-1;
2298 int llen = bptr - 12;
2299 ev_struct->descriptors_loop_length_hi = (llen & 0xF00) >> 8;
2300 ev_struct->descriptors_loop_length_lo = (llen & 0xFF);
2302 time_t stime = it->first.tm;
2303 while( tmMap.find(stime) != tmMap.end() )
2305 event[6] += (stime - it->first.tm);
2307 while( evMap.find(event_id) != evMap.end() )
2309 event[0] = (event_id & 0xFF00) >> 8;
2310 event[1] = (event_id & 0xFF);
2311 time_event_map[it->first.tm]=std::pair<time_t, __u16>(stime, event_id);
2312 eventData *d = new eventData( ev_struct, bptr, eEPGCache::SCHEDULE );
2313 evMap[event_id] = d;
2318 void eEPGCache::channel_data::startPrivateReader()
2320 eDVBSectionFilterMask mask;
2321 memset(&mask, 0, sizeof(mask));
2322 mask.pid = m_PrivatePid;
2323 mask.flags = eDVBSectionFilterMask::rfCRC;
2324 mask.data[0] = 0xA0;
2325 mask.mask[0] = 0xFF;
2326 eDebug("start privatefilter for pid %04x and version %d", m_PrivatePid, m_PrevVersion);
2327 if (m_PrevVersion != -1)
2329 mask.data[3] = m_PrevVersion << 1;
2330 mask.mask[3] = 0x3E;
2331 mask.mode[3] = 0x3E;
2333 seenPrivateSections.clear();
2334 m_PrivateReader->connectRead(slot(*this, &eEPGCache::channel_data::readPrivateData), m_PrivateConn);
2335 m_PrivateReader->start(mask);
2338 void eEPGCache::channel_data::readPrivateData( const __u8 *data)
2341 eDebug("get Null pointer from section reader !!");
2344 if ( seenPrivateSections.find( data[6] ) == seenPrivateSections.end() )
2346 #ifdef NEED_DEMUX_WORKAROUND
2347 int version = data[5];
2348 version = ((version & 0x3E) >> 1);
2350 if ( m_PrevVersion != version )
2352 cache->privateSectionRead(m_PrivateService, data);
2353 seenPrivateSections.insert(data[6]);
2359 cache->privateSectionRead(m_PrivateService, data);
2360 seenPrivateSections.insert(data[6]);
2363 if ( seenPrivateSections.size() == (unsigned int)(data[7] + 1) )
2365 eDebug("[EPGC] private finished");
2368 m_PrevVersion = (data[5] & 0x3E) >> 1;
2369 m_PrivateReader->stop();
2370 startPrivateTimer.start(UPDATE_INTERVAL, 1);
2375 #endif // ENABLE_PRIVATE_EPG