/* * Electronic Program Guide - Common functions * Copyright (C) 2007 Andreas Öman * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include #include #include #include #include #include #include #include "tvheadend.h" #include "queue.h" #include "channels.h" #include "settings.h" #include "epg.h" #include "dvr/dvr.h" #include "htsp.h" #include "epggrab.h" /* Broadcast hashing */ #define EPG_HASH_WIDTH 1024 #define EPG_HASH_MASK (EPG_HASH_WIDTH - 1) /* URI lists */ epg_object_tree_t epg_brands; epg_object_tree_t epg_seasons; epg_object_tree_t epg_episodes; /* Other special case lists */ epg_object_list_t epg_objects[EPG_HASH_WIDTH]; epg_object_list_t epg_object_unref; epg_object_list_t epg_object_updated; /* Global counter */ static uint64_t _epg_object_idx = 0; /* ************************************************************************** * Comparators / Ordering * *************************************************************************/ static int _uri_cmp ( const void *a, const void *b ) { return strcmp(((epg_object_t*)a)->uri, ((epg_object_t*)b)->uri); } static int _ebc_start_cmp ( const void *a, const void *b ) { return ((epg_broadcast_t*)a)->start - ((epg_broadcast_t*)b)->start; } static int _season_order ( const void *_a, const void *_b ) { const epg_season_t *a = (const epg_season_t*)_a; const epg_season_t *b = (const epg_season_t*)_b; if ( !a || !a->number ) return 1; if ( !b || !b->number ) return -1; return a->number - b->number; } // Note: this will do nothing with text episode numbering static int _episode_order ( const void *_a, const void *_b ) { int r, as, bs; const epg_episode_t *a = (const epg_episode_t*)_a; const epg_episode_t *b = (const epg_episode_t*)_b; if (!a) return -1; if (!b) return 1; if (a->season) as = a->season->number; else as = a->epnum.s_num; if (b->season) bs = b->season->number; else bs = b->epnum.s_num; r = as - bs; if (r) return r; r = a->epnum.e_num - b->epnum.e_num; if (r) return r; return a->epnum.p_num - b->epnum.p_num; } void epg_updated ( void ) { epg_object_t *eo; /* Remove unref'd */ while ((eo = LIST_FIRST(&epg_object_unref))) { tvhlog(LOG_DEBUG, "epg", "unref'd object %"PRIu64" (%s) created during update", eo->id, eo->uri); LIST_REMOVE(eo, un_link); eo->destroy(eo); } // Note: we do things this way around since unref'd objects are not likely // to be useful to DVR since they will relate to episode/seasons/brands // with no valid broadcasts etc.. /* Update updated */ while ((eo = LIST_FIRST(&epg_object_updated))) { eo->updated(eo); LIST_REMOVE(eo, up_link); eo->_updated = 0; } } /* ************************************************************************** * Object (Generic routines) * *************************************************************************/ static void _epg_object_destroy ( epg_object_t *eo, epg_object_tree_t *tree ) { assert(eo->refcount == 0); if (eo->uri) free(eo->uri); if (tree) RB_REMOVE(tree, eo, uri_link); if (eo->_updated) LIST_REMOVE(eo, up_link); LIST_REMOVE(eo, id_link); } static void _epg_object_getref ( void *o ) { epg_object_t *eo = o; if (eo->refcount == 0) LIST_REMOVE(eo, un_link); eo->refcount++; } static void _epg_object_putref ( void *o ) { epg_object_t *eo = o; assert(eo->refcount>0); eo->refcount--; if (!eo->refcount) eo->destroy(eo); } static void _epg_object_set_updated ( void *o ) { epg_object_t *eo = (epg_object_t*)o; if (!eo->_updated) { eo->_updated = 1; LIST_INSERT_HEAD(&epg_object_updated, eo, up_link); } } static void _epg_object_create ( void *o ) { epg_object_t *eo = o; if (!eo->id) eo->id = ++_epg_object_idx; else if (eo->id > _epg_object_idx) _epg_object_idx = eo->id; if (!eo->getref) eo->getref = _epg_object_getref; if (!eo->putref) eo->putref = _epg_object_putref; _epg_object_set_updated(eo); LIST_INSERT_HEAD(&epg_object_unref, eo, un_link); LIST_INSERT_HEAD(&epg_objects[eo->id & EPG_HASH_MASK], eo, id_link); } static epg_object_t *_epg_object_find_by_uri ( const char *uri, int create, int *save, epg_object_tree_t *tree, epg_object_t **skel ) { epg_object_t *eo; assert(skel != NULL); lock_assert(&global_lock); (*skel)->uri = (char*)uri; /* Find only */ if ( !create ) { eo = RB_FIND(tree, *skel, uri_link, _uri_cmp); /* Find/create */ } else { eo = RB_INSERT_SORTED(tree, *skel, uri_link, _uri_cmp); if ( !eo ) { *save = 1; eo = *skel; *skel = NULL; eo->uri = strdup(uri); _epg_object_create(eo); } } return eo; } static epg_object_t *_epg_object_find_by_id ( uint64_t id, epg_object_type_t type ) { epg_object_t *eo; LIST_FOREACH(eo, &epg_objects[id & EPG_HASH_MASK], id_link) { if (eo->id == id) return eo->type == type ? eo : NULL; } return NULL; } static htsmsg_t * _epg_object_serialize ( void *o ) { epg_object_t *eo = o; htsmsg_t *m; if ( !eo->id || !eo->type ) return NULL; m = htsmsg_create_map(); htsmsg_add_u64(m, "id", eo->id); htsmsg_add_u32(m, "type", eo->type); if (eo->uri) htsmsg_add_str(m, "uri", eo->uri); return m; } static epg_object_t *_epg_object_deserialize ( htsmsg_t *m, epg_object_t *eo ) { if (htsmsg_get_u64(m, "id", &eo->id)) return NULL; if (htsmsg_get_u32(m, "type", &eo->type)) return NULL; eo->uri = (char*)htsmsg_get_str(m, "uri"); return eo; } static int _epg_object_set_str ( void *o, char **old, const char *new ) { epg_object_t *eo = (epg_object_t*)o; int save = 0; if ( !eo || !new ) return 0; if ( !*old || strcmp(*old, new) ) { if ( *old ) free(*old); *old = strdup(new); _epg_object_set_updated(eo); save = 1; } return save; } static int _epg_object_set_u8 ( void *o, uint8_t *old, const uint8_t new ) { int save = 0; if ( *old != new ) { *old = new; _epg_object_set_updated(o); save = 1; } return save; } static int _epg_object_set_u16 ( void *o, uint16_t *old, const uint16_t new ) { int save = 0; if ( *old != new ) { *old = new; _epg_object_set_updated(o); save = 1; } return save; } /* ************************************************************************** * Brand * *************************************************************************/ static void _epg_brand_destroy ( void *eo ) { epg_brand_t *eb = (epg_brand_t*)eo; if (LIST_FIRST(&eb->seasons)) { tvhlog(LOG_CRIT, "epg", "attempt to destroy brand with seasons"); assert(0); } if (LIST_FIRST(&eb->episodes)) { tvhlog(LOG_CRIT, "epg", "attempt to destroy brand with episodes"); assert(0); } _epg_object_destroy(eo, &epg_brands); if (eb->title) free(eb->title); if (eb->summary) free(eb->summary); if (eb->image) free(eb->image); free(eb); } static void _epg_brand_updated ( void *o ) { dvr_autorec_check_brand((epg_brand_t*)o); } static epg_object_t **_epg_brand_skel ( void ) { static epg_object_t *skel = NULL; if ( !skel ) { skel = calloc(1, sizeof(epg_brand_t)); skel->type = EPG_BRAND; skel->destroy = _epg_brand_destroy; skel->updated = _epg_brand_updated; } return &skel; } epg_brand_t* epg_brand_find_by_uri ( const char *uri, int create, int *save ) { return (epg_brand_t*) _epg_object_find_by_uri(uri, create, save, &epg_brands, _epg_brand_skel()); } epg_brand_t *epg_brand_find_by_id ( uint64_t id ) { return (epg_brand_t*)_epg_object_find_by_id(id, EPG_BRAND); } int epg_brand_set_title ( epg_brand_t *brand, const char *title ) { if (!brand || !title) return 0; return _epg_object_set_str(brand, &brand->title, title); } int epg_brand_set_summary ( epg_brand_t *brand, const char *summary ) { if (!brand || !summary) return 0; return _epg_object_set_str(brand, &brand->summary, summary); } int epg_brand_set_image ( epg_brand_t *brand, const char *image ) { if (!brand || !image) return 0; return _epg_object_set_str(brand, &brand->image, image); } int epg_brand_set_season_count ( epg_brand_t *brand, uint16_t count ) { if (!brand || !count) return 0; return _epg_object_set_u16(brand, &brand->season_count, count); } static void _epg_brand_add_season ( epg_brand_t *brand, epg_season_t *season ) { _epg_object_getref(brand); _epg_object_set_updated(brand); LIST_INSERT_SORTED(&brand->seasons, season, blink, _season_order); } static void _epg_brand_rem_season ( epg_brand_t *brand, epg_season_t *season ) { LIST_REMOVE(season, blink); _epg_object_set_updated(brand); _epg_object_putref(brand); } static void _epg_brand_add_episode ( epg_brand_t *brand, epg_episode_t *episode ) { _epg_object_getref(brand); _epg_object_set_updated(brand); LIST_INSERT_SORTED(&brand->episodes, episode, blink, _episode_order); } static void _epg_brand_rem_episode ( epg_brand_t *brand, epg_episode_t *episode ) { LIST_REMOVE(episode, blink); _epg_object_set_updated(brand); _epg_object_putref(brand); } htsmsg_t *epg_brand_serialize ( epg_brand_t *brand ) { htsmsg_t *m; if ( !brand || !brand->uri ) return NULL; if ( !(m = _epg_object_serialize(brand)) ) return NULL; if (brand->title) htsmsg_add_str(m, "title", brand->title); if (brand->summary) htsmsg_add_str(m, "summary", brand->summary); if (brand->season_count) htsmsg_add_u32(m, "season-count", brand->season_count); return m; } epg_brand_t *epg_brand_deserialize ( htsmsg_t *m, int create, int *save ) { epg_object_t **skel = _epg_brand_skel(); epg_brand_t *eb; uint32_t u32; const char *str; if ( !_epg_object_deserialize(m, *skel) ) return NULL; if ( !(eb = epg_brand_find_by_uri((*skel)->uri, create, save)) ) return NULL; if ( (str = htsmsg_get_str(m, "title")) ) *save |= epg_brand_set_title(eb, str); if ( (str = htsmsg_get_str(m, "summary")) ) *save |= epg_brand_set_summary(eb, str); if ( !htsmsg_get_u32(m, "season-count", &u32) ) *save |= epg_brand_set_season_count(eb, u32); return eb; } htsmsg_t *epg_brand_list ( void ) { epg_object_t *eo; htsmsg_t *a, *e; a = htsmsg_create_list(); RB_FOREACH(eo, &epg_brands, uri_link) { assert(eo->type == EPG_BRAND); e = epg_brand_serialize((epg_brand_t*)eo); htsmsg_add_msg(a, NULL, e); } return a; } /* ************************************************************************** * Season * *************************************************************************/ static void _epg_season_destroy ( void *eo ) { epg_season_t *es = (epg_season_t*)eo; if (LIST_FIRST(&es->episodes)) { tvhlog(LOG_CRIT, "epg", "attempt to destory season with episodes"); assert(0); } _epg_object_destroy(eo, &epg_seasons); if (es->brand) _epg_brand_rem_season(es->brand, es); if (es->summary) free(es->summary); if (es->image) free(es->image); free(es); } static void _epg_season_updated ( void *eo ) { dvr_autorec_check_season((epg_season_t*)eo); } static epg_object_t **_epg_season_skel ( void ) { static epg_object_t *skel = NULL; if ( !skel ) { skel = calloc(1, sizeof(epg_season_t)); skel->type = EPG_SEASON; skel->destroy = _epg_season_destroy; skel->updated = _epg_season_updated; } return &skel; } epg_season_t* epg_season_find_by_uri ( const char *uri, int create, int *save ) { return (epg_season_t*) _epg_object_find_by_uri(uri, create, save, &epg_seasons, _epg_season_skel()); } epg_season_t *epg_season_find_by_id ( uint64_t id ) { return (epg_season_t*)_epg_object_find_by_id(id, EPG_SEASON); } int epg_season_set_summary ( epg_season_t *season, const char *summary ) { if (!season || !summary) return 0; return _epg_object_set_str(season, &season->summary, summary); } int epg_season_set_image ( epg_season_t *season, const char *image ) { if (!season || !image) return 0; return _epg_object_set_str(season, &season->image, image); } int epg_season_set_episode_count ( epg_season_t *season, uint16_t count ) { if (!season || !count) return 0; return _epg_object_set_u16(season, &season->episode_count, count); } int epg_season_set_number ( epg_season_t *season, uint16_t number ) { if (!season || !number) return 0; return _epg_object_set_u16(season, &season->number, number); } int epg_season_set_brand ( epg_season_t *season, epg_brand_t *brand, int u ) { int save = 0; if ( !season || !brand ) return 0; if ( season->brand != brand ) { if ( season->brand ) _epg_brand_rem_season(season->brand, season); season->brand = brand; _epg_brand_add_season(brand, season); _epg_object_set_updated(season); save = 1; } return save; } static void _epg_season_add_episode ( epg_season_t *season, epg_episode_t *episode ) { _epg_object_getref(season); _epg_object_set_updated(season); LIST_INSERT_SORTED(&season->episodes, episode, slink, _episode_order); } static void _epg_season_rem_episode ( epg_season_t *season, epg_episode_t *episode ) { LIST_REMOVE(episode, slink); _epg_object_set_updated(season); _epg_object_putref(season); } htsmsg_t *epg_season_serialize ( epg_season_t *season ) { htsmsg_t *m; if (!season || !season->uri) return NULL; if (!(m = _epg_object_serialize((epg_object_t*)season))) return NULL; if (season->summary) htsmsg_add_str(m, "summary", season->summary); if (season->number) htsmsg_add_u32(m, "number", season->number); if (season->episode_count) htsmsg_add_u32(m, "episode-count", season->episode_count); if (season->brand) htsmsg_add_str(m, "brand", season->brand->uri); return m; } epg_season_t *epg_season_deserialize ( htsmsg_t *m, int create, int *save ) { epg_object_t **skel = _epg_brand_skel(); epg_season_t *es; epg_brand_t *eb; uint32_t u32; const char *str; if ( !_epg_object_deserialize(m, *skel) ) return NULL; if ( !(es = epg_season_find_by_uri((*skel)->uri, create, save)) ) return NULL; if ( (str = htsmsg_get_str(m, "summary")) ) *save |= epg_season_set_summary(es, str); if ( !htsmsg_get_u32(m, "number", &u32) ) *save |= epg_season_set_number(es, u32); if ( !htsmsg_get_u32(m, "episode-count", &u32) ) *save |= epg_season_set_episode_count(es, u32); if ( (str = htsmsg_get_str(m, "brand")) ) if ( (eb = epg_brand_find_by_uri(str, 0, NULL)) ) *save |= epg_season_set_brand(es, eb, 1); return es; } /* ************************************************************************** * Episode * *************************************************************************/ static htsmsg_t *epg_episode_num_serialize ( epg_episode_num_t *num ) { htsmsg_t *m; if (!num) return NULL; m = htsmsg_create_map(); if (num->e_num) htsmsg_add_u32(m, "e_num", num->e_num); if (num->e_cnt) htsmsg_add_u32(m, "e_cnt", num->e_cnt); if (num->s_num) htsmsg_add_u32(m, "s_num", num->e_num); if (num->s_cnt) htsmsg_add_u32(m, "s_cnt", num->e_cnt); if (num->p_num) htsmsg_add_u32(m, "p_num", num->e_num); if (num->p_cnt) htsmsg_add_u32(m, "p_cnt", num->e_cnt); if (num->text) htsmsg_add_str(m, "text", num->text); return m; } static epg_episode_num_t *epg_episode_num_deserialize ( htsmsg_t *m, epg_episode_num_t *num ) { const char *str; uint32_t u32; if (!m) return NULL; if (!num) num = calloc(1, sizeof(epg_episode_num_t)); else memset(num, 0, sizeof(epg_episode_num_t)); if (!htsmsg_get_u32(m, "e_num", &u32)) num->e_num = u32; if (!htsmsg_get_u32(m, "e_cnt", &u32)) num->e_cnt = u32; if (!htsmsg_get_u32(m, "s_num", &u32)) num->s_num = u32; if (!htsmsg_get_u32(m, "s_cnt", &u32)) num->s_cnt = u32; if (!htsmsg_get_u32(m, "p_num", &u32)) num->p_num = u32; if (!htsmsg_get_u32(m, "p_cnt", &u32)) num->p_cnt = u32; if ((str = htsmsg_get_str(m, "text"))) num->text = strdup(str); return num; } static void _epg_episode_destroy ( void *eo ) { epg_genre_t *g; epg_episode_t *ee = eo; if (LIST_FIRST(&ee->broadcasts)) { tvhlog(LOG_CRIT, "epg", "attempt to destroy episode with broadcasts"); assert(0); } _epg_object_destroy(eo, &epg_episodes); if (ee->brand) _epg_brand_rem_episode(ee->brand, ee); if (ee->season) _epg_season_rem_episode(ee->season, ee); if (ee->title) free(ee->title); if (ee->subtitle) free(ee->subtitle); if (ee->summary) free(ee->summary); if (ee->description) free(ee->description); while ((g = LIST_FIRST(&ee->genre))) { LIST_REMOVE(g, link); free(g); } if (ee->image) free(ee->image); if (ee->epnum.text) free(ee->epnum.text); free(ee); } static void _epg_episode_updated ( void *eo ) { } static epg_object_t **_epg_episode_skel ( void ) { static epg_object_t *skel = NULL; if ( !skel ) { skel = calloc(1, sizeof(epg_episode_t)); skel->type = EPG_EPISODE; skel->destroy = _epg_episode_destroy; skel->updated = _epg_episode_updated; } return &skel; } epg_episode_t* epg_episode_find_by_uri ( const char *uri, int create, int *save ) { return (epg_episode_t*) _epg_object_find_by_uri(uri, create, save, &epg_episodes, _epg_episode_skel()); } epg_episode_t *epg_episode_find_by_id ( uint64_t id ) { return (epg_episode_t*)_epg_object_find_by_id(id, EPG_EPISODE); } int epg_episode_set_title ( epg_episode_t *episode, const char *title ) { if (!episode || !title) return 0; return _epg_object_set_str(episode, &episode->title, title); } int epg_episode_set_subtitle ( epg_episode_t *episode, const char *subtitle ) { if (!episode || !subtitle) return 0; return _epg_object_set_str(episode, &episode->subtitle, subtitle); } int epg_episode_set_summary ( epg_episode_t *episode, const char *summary ) { if (!episode || !summary) return 0; return _epg_object_set_str(episode, &episode->summary, summary); } int epg_episode_set_description ( epg_episode_t *episode, const char *desc ) { if (!episode || !desc) return 0; return _epg_object_set_str(episode, &episode->description, desc); } int epg_episode_set_image ( epg_episode_t *episode, const char *image ) { if (!episode || !image) return 0; return _epg_object_set_str(episode, &episode->image, image); } int epg_episode_set_number ( epg_episode_t *episode, uint16_t number ) { if (!episode || !number) return 0; return _epg_object_set_u16(episode, &episode->epnum.e_num, number); } int epg_episode_set_part ( epg_episode_t *episode, uint16_t part, uint16_t count ) { int save = 0; if (!episode || !part) return 0; save |= _epg_object_set_u16(episode, &episode->epnum.p_num, part); save |= _epg_object_set_u16(episode, &episode->epnum.p_cnt, count); return save; } int epg_episode_set_epnum ( epg_episode_t *episode, epg_episode_num_t *num ) { int save = 0; if (!episode || !num || (!num->e_num && !num->text)) return 0; if (num->s_num) save |= _epg_object_set_u16(episode, &episode->epnum.s_num, num->s_num); if (num->s_cnt) save |= _epg_object_set_u16(episode, &episode->epnum.s_cnt, num->s_cnt); if (num->e_num) save |= _epg_object_set_u16(episode, &episode->epnum.e_num, num->e_num); if (num->e_cnt) save |= _epg_object_set_u16(episode, &episode->epnum.e_cnt, num->e_cnt); if (num->p_num) save |= _epg_object_set_u16(episode, &episode->epnum.p_num, num->p_num); if (num->p_cnt) save |= _epg_object_set_u16(episode, &episode->epnum.p_cnt, num->p_cnt); if (num->text) save |= _epg_object_set_str(episode, &episode->epnum.text, num->text); return save; } int epg_episode_set_brand ( epg_episode_t *episode, epg_brand_t *brand ) { int save = 0; if ( !episode || !brand ) return 0; if ( episode->brand != brand ) { if ( episode->brand ) _epg_brand_rem_episode(episode->brand, episode); episode->brand = brand; _epg_brand_add_episode(brand, episode); _epg_object_set_updated(episode); save = 1; } return save; } int epg_episode_set_season ( epg_episode_t *episode, epg_season_t *season ) { int save = 0; if ( !episode || !season ) return 0; if ( episode->season != season ) { if ( episode->season ) _epg_season_rem_episode(episode->season, episode); episode->season = season; _epg_season_add_episode(season, episode); if ( season->brand ) save |= epg_episode_set_brand(episode, season->brand); _epg_object_set_updated(episode); save = 1; } return save; } int epg_episode_set_genre ( epg_episode_t *ee, epg_genre_list_t *genre ) { int save = 0; epg_genre_t *g1, *g2; /* Remove old */ g1 = LIST_FIRST(&ee->genre); while (g1) { g2 = LIST_NEXT(g1, link); if (!epg_genre_list_contains(genre, g1, 0)) { LIST_REMOVE(g1, link); save = 1; } g1 = g2; } /* Insert all entries */ LIST_FOREACH(g1, genre, link) { save |= epg_genre_list_add(&ee->genre, g1); } return save; } int epg_episode_set_is_bw ( epg_episode_t *e, uint8_t bw ) { int save = 0; if (!e) return 0; return _epg_object_set_u8(e, &e->is_bw, bw); return save; } static void _epg_episode_add_broadcast ( epg_episode_t *episode, epg_broadcast_t *broadcast ) { _epg_object_getref(episode); _epg_object_set_updated(episode); LIST_INSERT_SORTED(&episode->broadcasts, broadcast, ep_link, _ebc_start_cmp); } static void _epg_episode_rem_broadcast ( epg_episode_t *episode, epg_broadcast_t *broadcast ) { LIST_REMOVE(broadcast, ep_link); _epg_object_set_updated(episode); _epg_object_putref(episode); } size_t epg_episode_number_format ( epg_episode_t *episode, char *buf, size_t len, const char *pre, const char *sfmt, const char *sep, const char *efmt, const char *cfmt ) { size_t i = 0; if (!episode || !buf || !len) return 0; epg_episode_num_t num; epg_episode_get_epnum(episode, &num); if ( num.e_num ) { if (pre) i += snprintf(&buf[i], len-i, "%s", pre); if ( sfmt && num.s_num ) { i += snprintf(&buf[i], len-i, sfmt, num.s_num); if ( cfmt && num.s_cnt ) i += snprintf(&buf[i], len-i, cfmt, num.s_cnt); if (sep) i += snprintf(&buf[i], len-i, "%s", sep); } i += snprintf(&buf[i], len-i, efmt, num.e_num); if ( cfmt && num.e_cnt ) i+= snprintf(&buf[i], len-i, cfmt, num.e_cnt); } else if ( num.text ) { strncpy(buf, num.text, len); i = strlen(buf); } return i; } void epg_episode_get_epnum ( epg_episode_t *ee, epg_episode_num_t *num ) { if (!ee || !num) return; *num = ee->epnum; if (ee->season) { num->e_cnt = ee->season->episode_count; num->s_num = ee->season->number; } if (ee->brand) { num->s_cnt = ee->brand->season_count; } } int epg_episode_number_cmp ( epg_episode_num_t *a, epg_episode_num_t *b ) { if (a->s_num != b->s_num) { return a->s_num - b->s_num; } else if (a->e_num != b->e_num) { return a->e_num - b->e_num; } else { return a->p_num - b->p_num; } } // WIBNI: this could do with soem proper matching, maybe some form of // fuzzy string match. I did try a few things, but none of them // were very reliable. int epg_episode_fuzzy_match ( epg_episode_t *episode, const char *uri, const char *title, const char *summary, const char *description ) { if ( !episode ) return 0; if ( uri && episode->uri && !strcmp(episode->uri, uri) ) return 1; if ( title && episode->title && (strstr(title, episode->title) || strstr(episode->title, title)) ) return 1; return 0; } htsmsg_t *epg_episode_serialize ( epg_episode_t *episode ) { epg_genre_t *eg; htsmsg_t *m, *a = NULL; if (!episode || !episode->uri) return NULL; if (!(m = _epg_object_serialize((epg_object_t*)episode))) return NULL; htsmsg_add_str(m, "uri", episode->uri); if (episode->title) htsmsg_add_str(m, "title", episode->title); if (episode->subtitle) htsmsg_add_str(m, "subtitle", episode->subtitle); if (episode->summary) htsmsg_add_str(m, "summary", episode->summary); if (episode->description) htsmsg_add_str(m, "description", episode->description); htsmsg_add_msg(m, "epnum", epg_episode_num_serialize(&episode->epnum)); LIST_FOREACH(eg, &episode->genre, link) { if (!a) a = htsmsg_create_list(); htsmsg_add_u32(a, NULL, eg->code); } if (a) htsmsg_add_msg(m, "genre", a); if (episode->brand) htsmsg_add_str(m, "brand", episode->brand->uri); if (episode->season) htsmsg_add_str(m, "season", episode->season->uri); if (episode->is_bw) htsmsg_add_u32(m, "is_bw", 1); return m; } epg_episode_t *epg_episode_deserialize ( htsmsg_t *m, int create, int *save ) { epg_object_t **skel = _epg_brand_skel(); epg_episode_t *ee; epg_season_t *es; epg_brand_t *eb; const char *str; epg_episode_num_t num; htsmsg_t *sub; htsmsg_field_t *f; if ( !_epg_object_deserialize(m, *skel) ) return NULL; if ( !(ee = epg_episode_find_by_uri((*skel)->uri, create, save)) ) return NULL; if ( (str = htsmsg_get_str(m, "title")) ) *save |= epg_episode_set_title(ee, str); if ( (str = htsmsg_get_str(m, "subtitle")) ) *save |= epg_episode_set_subtitle(ee, str); if ( (str = htsmsg_get_str(m, "summary")) ) *save |= epg_episode_set_summary(ee, str); if ( (str = htsmsg_get_str(m, "description")) ) *save |= epg_episode_set_description(ee, str); if ( (sub = htsmsg_get_map(m, "epnum")) ) { epg_episode_num_deserialize(sub, &num); *save |= epg_episode_set_epnum(ee, &num); if (num.text) free(num.text); } if ( (sub = htsmsg_get_list(m, "genre")) ) { epg_genre_list_t *egl = calloc(1, sizeof(epg_genre_list_t)); HTSMSG_FOREACH(f, sub) { epg_genre_t genre; genre.code = (uint8_t)f->hmf_s64; epg_genre_list_add(egl, &genre); } *save |= epg_episode_set_genre(ee, egl); epg_genre_list_destroy(egl); } if ( (str = htsmsg_get_str(m, "season")) ) if ( (es = epg_season_find_by_uri(str, 0, NULL)) ) *save |= epg_episode_set_season(ee, es); if ( (str = htsmsg_get_str(m, "brand")) ) if ( (eb = epg_brand_find_by_uri(str, 0, NULL)) ) *save |= epg_episode_set_brand(ee, eb); *save |= epg_episode_set_is_bw(ee, htsmsg_get_u32_or_default(m , "is_bw", 0)); return ee; } /* ************************************************************************** * Channel * *************************************************************************/ static void _epg_channel_rem_broadcast ( channel_t *ch, epg_broadcast_t *ebc, epg_broadcast_t *new ) { if (new) dvr_event_replaced(ebc, new); RB_REMOVE(&ch->ch_epg_schedule, ebc, sched_link); _epg_object_putref(ebc); } static void _epg_channel_timer_callback ( void *p ) { time_t next = 0; epg_broadcast_t *ebc, *cur, *nxt; channel_t *ch = (channel_t*)p; /* Clear now/next */ cur = ch->ch_epg_now; nxt = ch->ch_epg_next; ch->ch_epg_now = ch->ch_epg_next = NULL; /* Check events */ while ( (ebc = RB_FIRST(&ch->ch_epg_schedule)) ) { /* Expire */ if ( ebc->stop <= dispatch_clock ) { tvhlog(LOG_DEBUG, "epg", "expire event %"PRIu64" from %s", ebc->id, ch->ch_name); _epg_channel_rem_broadcast(ch, ebc, NULL); continue; // skip to next /* No now */ } else if ( ebc->start > dispatch_clock ) { ch->ch_epg_next = ebc; next = ebc->start; /* Now/Next */ } else { ch->ch_epg_now = ebc; ch->ch_epg_next = RB_NEXT(ebc, sched_link); next = ebc->stop; } break; } /* Change */ if (cur != ch->ch_epg_now || nxt != ch->ch_epg_next) tvhlog(LOG_DEBUG, "epg", "now/next %"PRIu64"/%"PRIu64" set on %s", ch->ch_epg_now ? ch->ch_epg_now->id : 0, ch->ch_epg_next ? ch->ch_epg_next->id : 0, ch->ch_name); /* re-arm */ if ( next ) { tvhlog(LOG_DEBUG, "epg", "arm channel timer @ %"PRItime_t" for %s", next, ch->ch_name); gtimer_arm_abs(&ch->ch_epg_timer, _epg_channel_timer_callback, ch, next); } /* Update HTSP */ if ( cur != ch->ch_epg_now ) { tvhlog(LOG_DEBUG, "epg", "inform HTSP of now event change on %s", ch->ch_name); htsp_channel_update_current(ch); } } static epg_broadcast_t *_epg_channel_add_broadcast ( channel_t *ch, epg_broadcast_t **bcast, int create, int *save ) { int timer = 0; epg_broadcast_t *ebc, *ret; /* Set channel */ (*bcast)->channel = ch; /* Find (only) */ if ( !create ) { return RB_FIND(&ch->ch_epg_schedule, *bcast, sched_link, _ebc_start_cmp); /* Find/Create */ } else { ret = RB_INSERT_SORTED(&ch->ch_epg_schedule, *bcast, sched_link, _ebc_start_cmp); /* New */ if (!ret) { *save = 1; ret = *bcast; *bcast = NULL; _epg_object_create(ret); // Note: sets updated _epg_object_getref(ret); /* No change */ } else if ( ret->stop == (*bcast)->stop ) { return ret; /* Extend in time */ } else { ret->stop = (*bcast)->stop; _epg_object_set_updated(ret); } } /* Changed */ *save |= 1; /* Remove overlapping (before) */ while ( (ebc = RB_PREV(ret, sched_link)) != NULL ) { if ( ebc->stop <= ret->start ) break; if ( ch->ch_epg_now == ebc ) ch->ch_epg_now = NULL; _epg_channel_rem_broadcast(ch, ebc, ret); } /* Remove overlapping (after) */ while ( (ebc = RB_NEXT(ret, sched_link)) != NULL ) { if ( ebc->start >= ret->stop ) break; _epg_channel_rem_broadcast(ch, ebc, ret); } /* Check now/next change */ if ( RB_FIRST(&ch->ch_epg_schedule) == ret ) { timer = 1; } else if ( ch->ch_epg_now && RB_NEXT(ch->ch_epg_now, sched_link) == ret ) { timer = 1; } /* Reset timer */ if (timer) _epg_channel_timer_callback(ch); return ret; } void epg_channel_unlink ( channel_t *ch ) { epg_broadcast_t *ebc; while ( (ebc = RB_FIRST(&ch->ch_epg_schedule)) ) { _epg_channel_rem_broadcast(ch, ebc, NULL); } gtimer_disarm(&ch->ch_epg_timer); } /* ************************************************************************** * Broadcast * *************************************************************************/ static void _epg_broadcast_destroy ( void *eo ) { epg_broadcast_t *ebc = eo; _epg_object_destroy(eo, NULL); if (ebc->episode) _epg_episode_rem_broadcast(ebc->episode, ebc); free(ebc); } static void _epg_broadcast_updated ( void *eo ) { dvr_event_updated(eo); dvr_autorec_check_event(eo); } static epg_broadcast_t **_epg_broadcast_skel ( void ) { static epg_broadcast_t *skel = NULL; if ( !skel ) { skel = calloc(1, sizeof(epg_broadcast_t)); skel->type = EPG_BROADCAST; skel->destroy = _epg_broadcast_destroy; skel->updated = _epg_broadcast_updated; } return &skel; } epg_broadcast_t* epg_broadcast_find_by_time ( channel_t *channel, time_t start, time_t stop, uint16_t eid, int create, int *save ) { epg_broadcast_t **ebc; if ( !channel || !start || !stop ) return NULL; if ( stop <= start ) return NULL; if ( stop <= dispatch_clock ) return NULL; ebc = _epg_broadcast_skel(); (*ebc)->start = start; (*ebc)->stop = stop; return _epg_channel_add_broadcast(channel, ebc, create, save); } epg_broadcast_t *epg_broadcast_find_by_id ( uint64_t id, channel_t *ch ) { // Note: I have left channel_t param, just in case I decide to change // to use it for shorter search return (epg_broadcast_t*)_epg_object_find_by_id(id, EPG_BROADCAST); } epg_broadcast_t *epg_broadcast_find_by_eid ( channel_t *ch, int eid ) { epg_broadcast_t *e; RB_FOREACH(e, &ch->ch_epg_schedule, sched_link) { if (e->dvb_eid == eid) return e; } return NULL; } int epg_broadcast_set_episode ( epg_broadcast_t *broadcast, epg_episode_t *episode ) { int save = 0; if ( !broadcast || !episode ) return 0; if ( broadcast->episode != episode ) { if ( broadcast->episode ) _epg_episode_rem_broadcast(broadcast->episode, broadcast); broadcast->episode = episode; _epg_episode_add_broadcast(episode, broadcast); _epg_object_set_updated(broadcast); save = 1; } return save; } int epg_broadcast_set_is_widescreen ( epg_broadcast_t *b, uint8_t ws ) { if (!b) return 0; return _epg_object_set_u8(b, &b->is_widescreen, ws); } int epg_broadcast_set_is_hd ( epg_broadcast_t *b, uint8_t hd ) { if (!b) return 0; return _epg_object_set_u8(b, &b->is_hd, hd); } int epg_broadcast_set_lines ( epg_broadcast_t *b, uint16_t lines ) { if (!b) return 0; return _epg_object_set_u16(b, &b->lines, lines); } int epg_broadcast_set_aspect ( epg_broadcast_t *b, uint16_t aspect ) { if (!b) return 0; return _epg_object_set_u16(b, &b->aspect, aspect); } int epg_broadcast_set_is_deafsigned ( epg_broadcast_t *b, uint8_t ds ) { if (!b) return 0; return _epg_object_set_u8(b, &b->is_deafsigned, ds); } int epg_broadcast_set_is_subtitled ( epg_broadcast_t *b, uint8_t st ) { if (!b) return 0; return _epg_object_set_u8(b, &b->is_subtitled, st); } int epg_broadcast_set_is_audio_desc ( epg_broadcast_t *b, uint8_t ad ) { if (!b) return 0; return _epg_object_set_u8(b, &b->is_audio_desc, ad); } int epg_broadcast_set_is_new ( epg_broadcast_t *b, uint8_t n ) { if (!b) return 0; return _epg_object_set_u8(b, &b->is_new, n); } int epg_broadcast_set_is_repeat ( epg_broadcast_t *b, uint8_t r ) { if (!b) return 0; return _epg_object_set_u8(b, &b->is_repeat, r); } epg_broadcast_t *epg_broadcast_get_next ( epg_broadcast_t *broadcast ) { if ( !broadcast ) return NULL; return RB_NEXT(broadcast, sched_link); } htsmsg_t *epg_broadcast_serialize ( epg_broadcast_t *broadcast ) { htsmsg_t *m; if (!broadcast) return NULL; if (!broadcast->episode || !broadcast->episode->uri) return NULL; if (!(m = _epg_object_serialize((epg_object_t*)broadcast))) return NULL; htsmsg_add_u32(m, "start", broadcast->start); htsmsg_add_u32(m, "stop", broadcast->stop); htsmsg_add_str(m, "episode", broadcast->episode->uri); if (broadcast->channel) htsmsg_add_u32(m, "channel", broadcast->channel->ch_id); if (broadcast->dvb_eid) htsmsg_add_u32(m, "dvb_eid", broadcast->dvb_eid); if (broadcast->is_widescreen) htsmsg_add_u32(m, "is_widescreen", 1); if (broadcast->is_hd) htsmsg_add_u32(m, "is_hd", 1); if (broadcast->lines) htsmsg_add_u32(m, "lines", broadcast->lines); if (broadcast->aspect) htsmsg_add_u32(m, "aspect", broadcast->aspect); if (broadcast->is_deafsigned) htsmsg_add_u32(m, "is_deafsigned", 1); if (broadcast->is_subtitled) htsmsg_add_u32(m, "is_subtitled", 1); if (broadcast->is_audio_desc) htsmsg_add_u32(m, "is_audio_desc", 1); if (broadcast->is_new) htsmsg_add_u32(m, "is_new", 1); if (broadcast->is_repeat) htsmsg_add_u32(m, "is_repeat", 1); return m; } epg_broadcast_t *epg_broadcast_deserialize ( htsmsg_t *m, int create, int *save ) { channel_t *ch = NULL; epg_broadcast_t *ebc, **skel = _epg_broadcast_skel(); epg_episode_t *ee; const char *str; uint32_t chid, eid, start, stop, u32; if ( htsmsg_get_u32(m, "start", &start) ) return NULL; if ( htsmsg_get_u32(m, "stop", &stop) ) return NULL; if ( !start || !stop ) return NULL; if ( stop <= start ) return NULL; if ( stop <= dispatch_clock ) return NULL; if ( !(str = htsmsg_get_str(m, "episode")) ) return NULL; if ( !(ee = epg_episode_find_by_uri(str, 0, NULL)) ) return NULL; /* Set properties */ _epg_object_deserialize(m, (epg_object_t*)*skel); (*skel)->start = start; (*skel)->stop = stop; /* Get DVB id */ if ( !htsmsg_get_u32(m, "dvb_eid", &eid) ) { (*skel)->dvb_eid = eid; } /* Get channel */ if ( !htsmsg_get_u32(m, "channel", &chid) ) { ch = channel_find_by_identifier(chid); } if (!ch) return NULL; /* Create */ ebc = _epg_channel_add_broadcast(ch, skel, create, save); if (!ebc) return NULL; /* Get metadata */ if (!htsmsg_get_u32(m, "is_widescreen", &u32)) *save |= epg_broadcast_set_is_widescreen(ebc, u32); if (!htsmsg_get_u32(m, "is_hd", &u32)) *save |= epg_broadcast_set_is_hd(ebc, u32); if (!htsmsg_get_u32(m, "lines", &u32)) *save |= epg_broadcast_set_lines(ebc, u32); if (!htsmsg_get_u32(m, "aspect", &u32)) *save |= epg_broadcast_set_aspect(ebc, u32); if (!htsmsg_get_u32(m, "is_deafsigned", &u32)) *save |= epg_broadcast_set_is_deafsigned(ebc, u32); if (!htsmsg_get_u32(m, "is_subtitled", &u32)) *save |= epg_broadcast_set_is_subtitled(ebc, u32); if (!htsmsg_get_u32(m, "is_audio_desc", &u32)) *save |= epg_broadcast_set_is_audio_desc(ebc, u32); if (!htsmsg_get_u32(m, "is_new", &u32)) *save |= epg_broadcast_set_is_new(ebc, u32); if (!htsmsg_get_u32(m, "is_repeat", &u32)) *save |= epg_broadcast_set_is_repeat(ebc, u32); /* Set the episode */ *save |= epg_broadcast_set_episode(ebc, ee); return ebc; } /* ************************************************************************** * Genre * *************************************************************************/ // TODO: make this configurable // FULL(ish) list from EN 300 468, I've excluded the last category // that relates more to broadcast content than what I call a "genre" // these will be handled elsewhere as broadcast metadata static const char *_epg_genre_names[16][16] = { { "" }, { "Movie/Drama", "detective/thriller", "adventure/western/war", "science fiction/fantasy/horror", "comedy", "soap/melodrama/folkloric", "romance", "serious/classical/religious/historical movie/drama", "adult movie/drama", "adult movie/drama", "adult movie/drama", "adult movie/drama", "adult movie/drama", "adult movie/drama", }, { "News/Current affairs", "news/weather report", "news magazine", "documentary", "discussion/interview/debate", "discussion/interview/debate", "discussion/interview/debate", "discussion/interview/debate", "discussion/interview/debate", "discussion/interview/debate", "discussion/interview/debate", "discussion/interview/debate", "discussion/interview/debate", "discussion/interview/debate", }, { "Show/Game show", "game show/quiz/contest", "variety show", "talk show", "talk show", "talk show", "talk show", "talk show", "talk show", "talk show", "talk show", "talk show", "talk show", "talk show", }, { "Sports", "special events (Olympic Games, World Cup, etc.)", "sports magazines", "football/soccer", "tennis/squash", "team sports (excluding football)", "athletics", "motor sport", "water sport", }, { "Children's/Youth programmes", "pre-school children's programmes", "entertainment programmes for 6 to14", "entertainment programmes for 10 to 16", "informational/educational/school programmes", "cartoons/puppets", "cartoons/puppets", "cartoons/puppets", "cartoons/puppets", "cartoons/puppets", "cartoons/puppets", "cartoons/puppets", "cartoons/puppets", "cartoons/puppets", }, { "Music/Ballet/Dance", "rock/pop", "serious music/classical music", "folk/traditional music", "jazz", "musical/opera", "musical/opera", "musical/opera", "musical/opera", "musical/opera", "musical/opera", "musical/opera", "musical/opera", }, { "Arts/Culture (without music)", "performing arts", "fine arts", "religion", "popular culture/traditional arts", "literature", "film/cinema", "experimental film/video", "broadcasting/press", }, { "Social/Political issues/Economics", "magazines/reports/documentary", "economics/social advisory", "remarkable people", "remarkable people", "remarkable people", "remarkable people", "remarkable people", "remarkable people", "remarkable people", "remarkable people", "remarkable people", "remarkable people", "remarkable people", }, { "Education/Science/Factual topics", "nature/animals/environment", "technology/natural sciences", "medicine/physiology/psychology", "foreign countries/expeditions", "social/spiritual sciences", "further education", "languages", "languages", "languages", "languages", "languages", "languages", "languages", }, { "Leisure hobbies", "tourism/travel", "handicraft", "motoring", "fitness and health", "cooking", "advertisement/shopping", "gardening", "gardening", "gardening", "gardening", "gardening", "gardening", "gardening", } }; // match strings, ignoring case and whitespace // Note: | 0x20 is a cheats (fast) way of lowering case static int _genre_str_match ( const char *a, const char *b ) { int i = 0, j = 0; if (!a || !b) return 0; while (a[i] != '\0' || b[j] != '\0') { while (a[i] == ' ') i++; while (b[j] == ' ') j++; if ((a[i] | 0x20) != (b[j] | 0x20)) return 0; i++; j++; } return (a[i] == '\0' && b[j] == '\0'); // end of string(both) } static uint8_t _epg_genre_find_by_name ( const char *name ) { uint8_t a, b; for ( a = 1; a < 11; a++ ) { for ( b = 0; b < 16; b++ ) { if (_genre_str_match(name, _epg_genre_names[a][b])) return (a << 4) | b; } } return 0; // undefined } uint8_t epg_genre_get_eit ( const epg_genre_t *genre ) { if (!genre) return 0; return genre->code; } size_t epg_genre_get_str ( const epg_genre_t *genre, int major_only, int major_prefix, char *buf, size_t len ) { int maj, min; size_t ret = 0; if (!genre || !buf) return 0; maj = (genre->code >> 4) & 0xf; if (!_epg_genre_names[maj][0]) return 0; min = major_only ? 0 : (genre->code & 0xf); if (!min || major_prefix ) { ret = snprintf(buf, len, "%s", _epg_genre_names[maj][0]); if (min) ret += snprintf(buf+ret, len-ret, " : "); } if (min && _epg_genre_names[maj][min]) { ret += snprintf(buf+ret, len-ret, "%s", _epg_genre_names[maj][min]); } return ret; } int epg_genre_list_add ( epg_genre_list_t *list, epg_genre_t *genre ) { epg_genre_t *g1, *g2; if (!list || !genre || !genre->code) return 0; g1 = LIST_FIRST(list); if (!g1) { g2 = calloc(1, sizeof(epg_genre_t)); g2->code = genre->code; LIST_INSERT_HEAD(list, g2, link); } else { while (g1) { /* Already exists */ if (g1->code == genre->code) return 0; /* Update a major only entry */ if (g1->code == (genre->code & 0xF0)) { g1->code = genre->code; break; } /* Insert before */ if (g1->code > genre->code) { g2 = calloc(1, sizeof(epg_genre_t)); g2->code = genre->code; LIST_INSERT_BEFORE(g1, g2, link); break; } /* Insert after (end) */ if (!(g2 = LIST_NEXT(g1, link))) { g2 = calloc(1, sizeof(epg_genre_t)); g2->code = genre->code; LIST_INSERT_AFTER(g1, g2, link); break; } /* Next */ g1 = g2; } } return 1; } int epg_genre_list_add_by_eit ( epg_genre_list_t *list, uint8_t eit ) { epg_genre_t g; g.code = eit; return epg_genre_list_add(list, &g); } int epg_genre_list_add_by_str ( epg_genre_list_t *list, const char *str ) { epg_genre_t g; g.code = _epg_genre_find_by_name(str); return epg_genre_list_add(list, &g); } // Note: if partial=1 and genre is a major only category then all minor // entries will also match int epg_genre_list_contains ( epg_genre_list_t *list, epg_genre_t *genre, int partial ) { uint8_t mask = 0xFF; epg_genre_t *g; if (!list || !genre) return 0; if (partial && !(genre->code & 0x0F)) mask = 0xF0; LIST_FOREACH(g, list, link) { if ((g->code & mask) == genre->code) break; } return g ? 1 : 0; } void epg_genre_list_destroy ( epg_genre_list_t *list ) { epg_genre_t *g; while ((g = LIST_FIRST(list))) { LIST_REMOVE(g, link); free(g); } free(list); } htsmsg_t *epg_genres_list_all ( int major_only, int major_prefix ) { int i, j; htsmsg_t *e, *m; m = htsmsg_create_list(); for (i = 0; i < 16; i++ ) { for (j = 0; j < (major_only ? 1 : 16); j++) { if (_epg_genre_names[i][j]) { e = htsmsg_create_map(); htsmsg_add_u32(e, "code", i << 4 | j); htsmsg_add_str(e, "name", _epg_genre_names[i][j]); // TODO: use major_prefix htsmsg_add_msg(m, NULL, e); } } } return m; } /* ************************************************************************** * Querying * *************************************************************************/ static void _eqr_add ( epg_query_result_t *eqr, epg_broadcast_t *e, epg_genre_t *genre, regex_t *preg, time_t start ) { /* Ignore */ if ( e->stop < start ) return; if ( !e->episode->title ) return; if ( genre && !epg_genre_list_contains(&e->episode->genre, genre, 1) ) return; if ( preg && regexec(preg, e->episode->title, 0, NULL, 0) ) return; /* More space */ if ( eqr->eqr_entries == eqr->eqr_alloced ) { eqr->eqr_alloced = MAX(100, eqr->eqr_alloced * 2); eqr->eqr_array = realloc(eqr->eqr_array, eqr->eqr_alloced * sizeof(epg_broadcast_t)); } /* Store */ eqr->eqr_array[eqr->eqr_entries++] = e; } static void _eqr_add_channel ( epg_query_result_t *eqr, channel_t *ch, epg_genre_t *genre, regex_t *preg, time_t start ) { epg_broadcast_t *ebc; RB_FOREACH(ebc, &ch->ch_epg_schedule, sched_link) { if ( ebc->episode ) _eqr_add(eqr, ebc, genre, preg, start); } } void epg_query0 ( epg_query_result_t *eqr, channel_t *channel, channel_tag_t *tag, epg_genre_t *genre, const char *title ) { time_t now; channel_tag_mapping_t *ctm; regex_t preg0, *preg; time(&now); /* Clear (just incase) */ memset(eqr, 0, sizeof(epg_query_result_t)); /* Setup exp */ if ( title ) { if (regcomp(&preg0, title, REG_ICASE | REG_EXTENDED | REG_NOSUB) ) return; preg = &preg0; } else { preg = NULL; } /* Single channel */ if (channel && !tag) { _eqr_add_channel(eqr, channel, genre, preg, now); /* Tag based */ } else if ( tag ) { LIST_FOREACH(ctm, &tag->ct_ctms, ctm_tag_link) { if(channel == NULL || ctm->ctm_channel == channel) _eqr_add_channel(eqr, ctm->ctm_channel, genre, preg, now); } /* All channels */ } else { RB_FOREACH(channel, &channel_name_tree, ch_name_link) { _eqr_add_channel(eqr, channel, genre, preg, now); } } if (preg) regfree(preg); return; } void epg_query(epg_query_result_t *eqr, const char *channel, const char *tag, epg_genre_t *genre, const char *title) { channel_t *ch = channel ? channel_find_by_name(channel, 0, 0) : NULL; channel_tag_t *ct = tag ? channel_tag_find_by_name(tag, 0) : NULL; epg_query0(eqr, ch, ct, genre, title); } void epg_query_free(epg_query_result_t *eqr) { free(eqr->eqr_array); } static int _epg_sort_start_ascending ( const void *a, const void *b ) { return (*(epg_broadcast_t**)a)->start - (*(epg_broadcast_t**)b)->start; } void epg_query_sort(epg_query_result_t *eqr) { qsort(eqr->eqr_array, eqr->eqr_entries, sizeof(epg_broadcast_t*), _epg_sort_start_ascending); } /* ************************************************************************** * Miscellaneous * *************************************************************************/ /* Hash title/summary/description to form URI */ char *epg_hash ( const char *t, const char *s, const char *d ) { if ( d && strlen(d) > 10 ) return md5sum(d); if ( s && strlen(s) > 10 ) return md5sum(s); if ( t ) return md5sum(t); return NULL; }