[svn r324] Added function to request how many recorders are available.
4 * @file gmyth/gmyth_epg.c
6 * @brief <p> GMythEPG class provides access to the program and channel data
7 * from the Electronic Program Guide (EPG) of the Mythtv backend.
9 * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
10 * @author Leonardo Sobral Cunha <leonardo.cunha@indt.org.br>
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU Lesser General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
33 #include <mysql/mysql.h>
38 #include "gmyth_epg.h"
39 #include "gmyth_programinfo.h"
40 #include "gmyth_util.h"
41 #include "gmyth_debug.h"
43 static void gmyth_epg_class_init (GMythEPGClass *klass);
44 static void gmyth_epg_init (GMythEPG *object);
46 static void gmyth_epg_dispose (GObject *object);
47 static void gmyth_epg_finalize (GObject *object);
49 G_DEFINE_TYPE(GMythEPG, gmyth_epg, G_TYPE_OBJECT)
52 gmyth_epg_class_init (GMythEPGClass *klass)
54 GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
56 gobject_class->dispose = gmyth_epg_dispose;
57 gobject_class->finalize = gmyth_epg_finalize;
61 gmyth_epg_init (GMythEPG *gmyth_epg)
67 gmyth_epg_dispose (GObject *object)
69 //GMythEPG *gmyth_epg = GMYTH_EPG(object);
71 G_OBJECT_CLASS (gmyth_epg_parent_class)->dispose (object);
75 gmyth_epg_finalize (GObject *object)
77 g_signal_handlers_destroy (object);
79 G_OBJECT_CLASS (gmyth_epg_parent_class)->finalize (object);
83 * Creates a new instance of GMythEPG.
85 * @return a new instance of GMythEPG.
90 GMythEPG *epg = GMYTH_EPG (g_object_new(GMYTH_EPG_TYPE, NULL));
95 /** Connects to the Mysql database in the backend. The backend address
96 * is loaded from the GMythSettings instance.
98 * @param gmyth_epg the GMythEPG instance to be connected.
99 * @return true if connection was success, false if failed.
102 gmyth_epg_connect (GMythEPG *gmyth_epg, GMythBackendInfo *backend_info)
106 if (gmyth_epg->sqlquery == NULL) {
107 gmyth_debug ("[%s] Creating gmyth_query", __FUNCTION__);
108 gmyth_epg->sqlquery = gmyth_query_new ( );
111 if (!gmyth_query_connect(gmyth_epg->sqlquery, backend_info)) {
112 g_warning ("[%s] Error while connecting to db", __FUNCTION__);
119 /** Disconnects from the Mysql database in the backend.
121 * @param gmyth_epg the GMythEPG instance to be disconnected
122 * @return true if disconnection was success, false if failed.
125 gmyth_epg_disconnect (GMythEPG *gmyth_epg)
129 if (gmyth_epg->sqlquery != NULL) {
130 g_object_unref (gmyth_epg->sqlquery);
131 gmyth_epg->sqlquery = NULL;
137 /** Retrieves the available list of channels from the backend Mysql database.
139 * @param gmyth_epg the GMythEPG instance.
140 * @param glist_ptr the GList pointer to be filled with the loaded list address.
141 * @return The amount of channels retrieved from database, or -1 if error.
144 gmyth_epg_get_channel_list (GMythEPG *gmyth_epg, GList **glist_ptr)
150 msql_res = gmyth_query_process_statement (gmyth_epg->sqlquery,
151 "SELECT chanid, channum, name FROM channel;");
155 if (msql_res == NULL) {
156 g_warning ("[%s] msql query returned NULL MYSQL_RES", __FUNCTION__);
160 GMythChannelInfo *channel_info;
162 while ((row = mysql_fetch_row (msql_res)) != NULL){
164 channel_info = g_new0(GMythChannelInfo, 1);
165 channel_info->channel_ID = g_ascii_strtoull (row[0], NULL, 10);
166 channel_info->channel_num = g_string_new (row[1]);
167 channel_info->channel_name = g_string_new (row[2]);
169 gmyth_channel_info_print(channel_info);
171 (*glist_ptr) = g_list_append ((*glist_ptr), channel_info);
174 mysql_free_result (msql_res);
175 return (!(*glist_ptr)) ? 0 : g_list_length (*glist_ptr);
179 * Retrieves the available list of channels from the backend Mysql database.
181 * @param gmyth_epg the GMythEPG instance.
182 * @param proglist the GList pointer to be filled with the loaded list.
183 * @param chan_num the channel num on which to search for program.
184 * @param starttime the start time to search for programs.
185 * @param endtime the end time to search for programs.
186 * @return The amount of channels retrieved from database, or -1 if error.
189 gmyth_epg_get_program_list (GMythEPG *gmyth_epg, GList **proglist,
190 const gint chan_num, GTimeVal *starttime, GTimeVal *endtime)
193 gchar *startts = gmyth_util_time_to_string_from_time_val(starttime);
194 gchar *endts = gmyth_util_time_to_string_from_time_val(endtime);
200 querystr = g_string_new(
201 "SELECT DISTINCT program.chanid, program.starttime, program.endtime, "
202 " program.title, program.subtitle, program.description, "
203 " program.category, channel.channum, channel.callsign, "
204 " channel.name, program.previouslyshown, channel.commfree, "
205 " channel.outputfilters, program.seriesid, program.programid, "
206 " program.airdate, program.stars, program.originalairdate, "
207 " program.category_type, oldrecstatus.recordid, "
208 " oldrecstatus.rectype, oldrecstatus.recstatus, "
209 " oldrecstatus.findid "
211 "LEFT JOIN channel ON program.chanid = channel.chanid "
212 "LEFT JOIN oldrecorded AS oldrecstatus ON "
213 " program.title = oldrecstatus.title AND "
214 " channel.callsign = oldrecstatus.station AND "
215 " program.starttime = oldrecstatus.starttime "
218 g_string_append_printf (querystr,
219 "WHERE program.chanid = %d "
220 " AND program.endtime >= '%s' "
221 " AND program.starttime <= '%s' "
222 " AND program.manualid = 0 ",
223 chan_num, startts, endts);
225 if (!g_strrstr(querystr->str, " GROUP BY "))
226 querystr = g_string_append(querystr,
227 " GROUP BY program.starttime, channel.channum, "
228 " channel.callsign, program.title ");
230 if (!g_strrstr(querystr->str, " LIMIT "))
231 querystr = g_string_append(querystr, " LIMIT 1000 ");
234 gmyth_query_process_statement(gmyth_epg->sqlquery, querystr->str);
236 if (res_set == NULL) {
237 g_warning ("[%s] msql query returned NULL MYSQL_RES", __FUNCTION__);
242 while ((row = mysql_fetch_row (res_set)) != NULL) {
244 GMythProgramInfo *p = gmyth_program_info_new ();
245 p->chanid = g_string_new (row[0]);
247 p->startts = gmyth_util_string_to_time_val (row[1]);
248 p->endts = gmyth_util_string_to_time_val (row[2]);
250 p->recstartts = g_new0 (GTimeVal, 1);
251 p->recstartts->tv_sec = p->startts->tv_sec;
252 p->recstartts->tv_usec = p->startts->tv_usec;
254 p->recendts = g_new0 (GTimeVal, 1);
255 p->recendts->tv_sec = p->endts->tv_sec;
256 p->recendts->tv_usec = p->endts->tv_usec;
258 p->lastmodified = g_new0 (GTimeVal, 1);
259 p->lastmodified->tv_sec = p->startts->tv_sec;
260 p->lastmodified->tv_usec = p->startts->tv_usec;
262 p->title = g_string_new (row[3]);
263 p->subtitle = g_string_new (row[4]);
264 p->description = g_string_new (row[5]);
265 p->category = g_string_new (row[6]);
266 p->chanstr = g_string_new (row[7]);
267 p->chansign = g_string_new (row[8]);
268 p->channame = g_string_new (row[9]);
269 p->repeat = g_ascii_strtoull(row[10], NULL, 10);
270 p->chancommfree = g_ascii_strtoull(row[11], NULL, 10);
271 p->chanOutputFilters = g_string_new (row[12]);
272 p->seriesid = g_string_new (row[13]);
273 p->programid = g_string_new (row[14]);
274 p->year = g_string_new (row[15]);
275 p->stars = g_ascii_strtod(row[16], NULL);
277 if (!row[17] || !strcmp(row[17], "")) {
278 p->originalAirDate = 0;
279 p->hasAirDate = FALSE;
281 p->originalAirDate = gmyth_util_string_to_time_val (row[17]);
282 p->hasAirDate = TRUE;
285 p->catType = g_string_new (row[18]);
287 *proglist = g_list_append((*proglist), p);
290 gmyth_program_info_print(p);
295 mysql_free_result (res_set);
296 g_string_free(querystr, TRUE);