branches/gmyth-0.1b/src/gmyth_scheduler.c
author rosfran
Fri Feb 02 22:04:00 2007 +0000 (2007-02-02)
branchtrunk
changeset 322 eb6b0b1409b5
permissions -rw-r--r--
[svn r324] Added function to request how many recorders are available.
     1 /**
     2  * GMyth Library
     3  *
     4  * @file gmyth/gmyth_scheduler.c
     5  * 
     6  * @brief <p> The scheduler encapsulates all functions for browsing, scheduling
     7  * and modifying the recorded content.
     8  *
     9  * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
    10  * @author Alexsandro Jose Virginio dos Santos <alexsandro.santos@indt.org.br>
    11  *
    12  *//*
    13  * 
    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.
    18  *
    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.
    23  *
    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
    27  */
    28  
    29 #ifdef HAVE_CONFIG_H
    30 #include "config.h"
    31 #endif
    32 
    33 #include <assert.h>
    34 
    35 #include <glib/gprintf.h>
    36 
    37 #include "gmyth_scheduler.h"
    38 #include "gmyth_util.h"
    39 #include "gmyth_query.h"
    40 #include "gmyth_socket.h"
    41 #include "gmyth_debug.h"
    42 
    43 static void gmyth_scheduler_class_init  (GMythSchedulerClass *klass);
    44 static void gmyth_scheduler_init        (GMythScheduler *object);
    45 
    46 static void gmyth_scheduler_dispose  (GObject *object);
    47 static void gmyth_scheduler_finalize (GObject *object);
    48 
    49 static gint get_record_id_from_database (GMythScheduler *scheduler);
    50 static void update_backend  (GMythScheduler *scheduler, gint record_id);
    51 
    52 G_DEFINE_TYPE(GMythScheduler, gmyth_scheduler, G_TYPE_OBJECT)
    53     
    54 static void
    55 gmyth_scheduler_class_init (GMythSchedulerClass *klass)
    56 {
    57     GObjectClass *gobject_class;
    58 
    59     gobject_class = (GObjectClass *) klass;
    60 
    61     gobject_class->dispose  = gmyth_scheduler_dispose;
    62     gobject_class->finalize = gmyth_scheduler_finalize;	
    63 }
    64 
    65 static void
    66 gmyth_scheduler_init (GMythScheduler *sched)
    67 {
    68     sched->recordid =0;
    69     sched->type = 0;
    70     sched->search = 0;
    71     sched->profile =  g_string_new("");
    72     
    73     sched->dupin = 0;
    74     sched->dupmethod = 0;
    75     sched->autoexpire = 0;
    76     sched->autotranscode = 0;
    77     sched->transcoder = 0;
    78 
    79     sched->autocommflag = 0;
    80     sched->autouserjob1 = 0;
    81     sched->autouserjob2 = 0;
    82     sched->autouserjob3 = 0;
    83     sched->autouserjob4 = 0;
    84     
    85     sched->startoffset = 0;
    86     sched->endoffset = 0;
    87     sched->maxepisodes = 0;
    88     sched->maxnewest = 0;
    89 
    90     sched->recpriority = 0;
    91     sched->recgroup = 0;
    92     sched->playgroup = 0;
    93     
    94     sched->prefinput = 0;
    95     sched->inactive = 0;
    96     
    97     sched->searchType = g_string_new("");
    98     sched->searchForWhat = g_string_new("");
    99     
   100     sched->msqlquery = gmyth_query_new ();
   101 }
   102 
   103 static void
   104 gmyth_scheduler_dispose  (GObject *object)
   105 {
   106     GMythScheduler *scheduler = GMYTH_SCHEDULER (object);
   107 
   108     if (scheduler->backend_info) { 
   109 	g_object_unref (scheduler->backend_info);
   110 	scheduler->backend_info = NULL;
   111     }
   112 
   113     G_OBJECT_CLASS (gmyth_scheduler_parent_class)->dispose (object);
   114 }
   115 
   116 static void
   117 gmyth_scheduler_finalize (GObject *object)
   118 {
   119     g_signal_handlers_destroy (object);
   120 
   121     G_OBJECT_CLASS (gmyth_scheduler_parent_class)->finalize (object);
   122 }
   123 
   124 /** Creates a new instance of GMythScheduler.
   125  * 
   126  * @return a new instance of GMythScheduler.
   127  */
   128 GMythScheduler*
   129 gmyth_scheduler_new ()
   130 {
   131     GMythScheduler *scheduler = 
   132         GMYTH_SCHEDULER (g_object_new(GMYTH_SCHEDULER_TYPE, NULL));
   133     
   134     return scheduler;
   135 }
   136 
   137 gboolean
   138 gmyth_scheduler_connect (GMythScheduler *scheduler, GMythBackendInfo *backend_info)
   139 {
   140     return gmyth_scheduler_connect_with_timeout (scheduler, backend_info, 0);
   141 }
   142 
   143 /** Connects to the Mysql database in the backend. The backend address
   144  * is loaded from the GMythSettings instance.
   145  * 
   146  * @param scheduler the GMythScheduler instance to be connected.
   147  * @return true if connection was success, false if failed.
   148  */
   149 gboolean
   150 gmyth_scheduler_connect_with_timeout (GMythScheduler *scheduler,
   151 	       GMythBackendInfo *backend_info, guint timeout)
   152 {
   153     assert(scheduler);
   154     g_return_val_if_fail (backend_info != NULL, FALSE);
   155     
   156     g_object_ref (backend_info);
   157     scheduler->backend_info = backend_info;
   158 
   159     if (scheduler->msqlquery == NULL) {
   160         g_warning ("[%s] GMythScheduler db initializing", __FUNCTION__);
   161         scheduler->msqlquery = gmyth_query_new ();		
   162     }
   163 
   164     if (!gmyth_query_connect_with_timeout (scheduler->msqlquery, 
   165 			    scheduler->backend_info, timeout)) {
   166     	g_warning ("[%s] Error while connecting to db", __FUNCTION__);
   167         return FALSE;
   168     }
   169 
   170     return TRUE;
   171 }
   172 
   173 /** Disconnects from the Mysql database in the backend.
   174  * 
   175  * @param scheduler the GMythScheduler instance to be disconnected
   176  * @return true if disconnection was success, false if failed.
   177  */
   178 gboolean
   179 gmyth_scheduler_disconnect (GMythScheduler *scheduler)
   180 {
   181     assert(scheduler);
   182 
   183     if (scheduler->msqlquery != NULL) {
   184         gmyth_query_disconnect (scheduler->msqlquery);
   185         g_object_unref (scheduler->msqlquery);
   186     }
   187 
   188     return TRUE;
   189 }
   190 
   191 /** Retrieves from the backend Mysql database the list of recording schedules.
   192  * 
   193  * @param scheduler The GMythScheduler instance.
   194  * @param schedule_list the GList pointer to be filled with the loaded list of ScheduleInfo items.
   195  * @return The amount of schedules retrieved from database, or -1 if error.
   196  */
   197 gint
   198 gmyth_scheduler_get_schedule_list ( GMythScheduler *scheduler, GList **schedule_list)
   199 {
   200     ScheduleInfo *schedule;
   201     MYSQL_RES *msql_res;
   202     GString *query_str = g_string_new ("");
   203     gchar *date_time = NULL;
   204     
   205     assert(scheduler);
   206     
   207     g_string_printf (query_str, 
   208     	"SELECT recordid,programid,chanid,starttime,startdate,"
   209     	"endtime,enddate,title,subtitle,description,category FROM record;");
   210 
   211     if (scheduler->msqlquery == NULL) {
   212 	g_warning ("[%s] Scheduler db connection not initialized", __FUNCTION__);
   213 	return -1;
   214     }
   215     msql_res = gmyth_query_process_statement (scheduler->msqlquery, query_str->str);
   216 
   217     if (msql_res == NULL) {
   218         g_warning ("DB retrieval of schedule list failed");
   219         return -1;
   220     } else {
   221         MYSQL_ROW row;
   222         *schedule_list = NULL;
   223         
   224         while((row = mysql_fetch_row (msql_res)) != NULL) {
   225         	schedule = g_new0(ScheduleInfo, 1);
   226         	
   227         	schedule->record_id  = g_ascii_strtoull (row[0], NULL, 10);
   228         	schedule->program_id = g_ascii_strtoull (row[1], NULL, 10);
   229             schedule->channel_id = g_ascii_strtoull (row[2], NULL, 10);
   230             
   231             /* generate a time_t from a time and a date db field */
   232             g_sprintf (date_time, "%sT%s", row[4], row[3]);
   233             
   234             schedule->start_time = gmyth_util_string_to_time_val (date_time);
   235             
   236             /* generate a time_t from a time and a date db field */
   237             g_sprintf (date_time, "%sT%s", row[6], row[5]);
   238             
   239             schedule->end_time = gmyth_util_string_to_time_val (date_time);
   240 
   241             schedule->title = g_string_new (row[7]);
   242             schedule->subtitle = g_string_new (row[8]);
   243             schedule->description = g_string_new (row[9]);
   244             schedule->category = g_string_new (row[10]);
   245 
   246            (*schedule_list) = g_list_append (*(schedule_list), schedule);
   247     	}
   248     }
   249 
   250     mysql_free_result (msql_res);
   251     g_string_free(query_str, TRUE);
   252     g_free(date_time);
   253 
   254     return (*schedule_list == NULL) ? 0 : g_list_length (*schedule_list);
   255 }
   256 
   257 /** Retrieves from the backend Mysql database the list of recorded programs.
   258  * 
   259  * @param scheduler The GMythScheduler instance.
   260  * @param recorded_list the GList pointer to be filled with the loaded RecordInfo items.
   261  * @return The amount of recorded retrieved from database, or -1 if error.
   262  */
   263 gint
   264 gmyth_scheduler_get_recorded_list (GMythScheduler *scheduler, GList **recorded_list)
   265 {
   266     RecordedInfo *record;
   267     MYSQL_RES *msql_res;
   268     GString *query_str = g_string_new ("");
   269 	
   270     assert(scheduler);
   271     
   272     g_string_printf (query_str, 
   273     	"SELECT recordid,programid,chanid,starttime,progstart,"
   274     	"endtime,progend,title,subtitle,description,category,filesize,basename FROM recorded WHERE recgroup != 'LiveTV'");
   275 
   276     if (scheduler->msqlquery == NULL) {
   277 	g_warning ("[%s] Scheduler db connection not initialized", __FUNCTION__);
   278 	return -1;
   279     }
   280 
   281     msql_res = gmyth_query_process_statement (scheduler->msqlquery, query_str->str);
   282 
   283     if (msql_res == NULL) {
   284         g_warning ("DB retrieval of recording list failed");
   285         return -1;
   286     } else {
   287         MYSQL_ROW row;
   288         *recorded_list = NULL;
   289         
   290         while((row = mysql_fetch_row (msql_res))!=NULL){
   291        	    record = g_new0(RecordedInfo, 1);
   292             
   293             record->record_id  = (guint) g_ascii_strtoull (row[0], NULL, 10);
   294             record->program_id = (guint) g_ascii_strtoull (row[1], NULL, 10);
   295             record->channel_id = (guint) g_ascii_strtoull (row[2], NULL, 10);
   296             
   297             record->start_time = gmyth_util_string_to_time_val (row[3]);
   298             record->end_time = gmyth_util_string_to_time_val (row[5]);
   299 	
   300             record->title = g_string_new (row[7]);
   301             record->subtitle = g_string_new (row[8]);
   302             record->description = g_string_new (row[9]);
   303             record->category = g_string_new (row[10]);
   304             record->filesize = g_ascii_strtoull (row[11], NULL, 10);
   305             record->basename = g_string_new (row[12]);
   306 
   307  	    *recorded_list = g_list_append (*recorded_list, record);
   308     	}
   309     }
   310     
   311     mysql_free_result (msql_res);
   312     g_string_free(query_str, TRUE);
   313 
   314     return (*recorded_list == NULL) ? 0 : g_list_length (*recorded_list);
   315 }
   316 
   317 /** Requests the Mysql database in the backend to add a new schedule.
   318  * 
   319  * @param scheduler the GMythScheduler instance.
   320  * @param schedule_info the ScheduleInfo with recording schedule information
   321  * to be added. record_id = -1 to add a new schedule, otherwise this
   322  * function will update the schedule in the db
   323  * @return gboolean returns FALSE if some error occurs, TRUE otherwise
   324  */
   325 gboolean
   326 gmyth_scheduler_add_schedule (GMythScheduler *scheduler,
   327                               ScheduleInfo *schedule_info)
   328 {
   329     //GTimeVal *start_tm;
   330     //GTimeVal *end_tm;
   331 
   332     MYSQL_RES *msql_res;
   333     GString *query_str = g_string_new ("");
   334     
   335     gchar *date_time = NULL; 
   336     
   337     assert(scheduler);
   338     
   339     if (scheduler->msqlquery == NULL) {
   340 	g_warning ("[%s] Scheduler db connection not initialized", __FUNCTION__);
   341 	return FALSE;
   342     }
   343 	
   344     //TODO: verify if this funtion realy does what it should do!
   345     g_string_printf (query_str, "REPLACE INTO record "
   346 	    "(recordid, type, chanid, starttime, "
   347 	    "startdate, endtime, enddate, title,"
   348 	    "profile, recpriority, maxnewest, inactive, "
   349 	    "maxepisodes, autoexpire, startoffset, endoffset, "
   350 	    "recgroup, dupmethod, dupin, station, "
   351 	    "autocommflag, findday, findtime, findid, "
   352 	    "search, autotranscode, transcoder, tsdefault, "
   353 	    "autouserjob1, autouserjob2, autouserjob3, autouserjob4) "
   354 	    " values ( %d, 1, %d, \"%s\","	//recordid, type, chanid, starttime
   355 	    " \"%s\", \"%s\", \"%s\", \"%s\","
   356         //startdate, endtime, enddate, title
   357 	    "DEFAULT, 0, 0, 0, "	//profile, recpriority, maxnewest, inactive
   358 	    "0, 1, 0, 0, "			//maxepisodes, autoexpire, startoffset, endoffset
   359 	    "DEFAULT, 6, 15, %d, " 	//recgroup, dupmethod, dupin, station
   360 	    "1, %d, \"%s\", %d, "	//autocommflag, findday, findtime, findid
   361 	    "5, 0, 29, 1, "			//search, autotranscode, transcoder, tsdefault
   362 	    "0, 0, 0, 0 );",		//autouserjob1, autouserjob2, autouserjob3, autouserjob4
   363 	    schedule_info->record_id, schedule_info->channel_id,
   364         gmyth_util_time_to_string_only_time( schedule_info->start_time ),
   365 	    	gmyth_util_time_to_string_only_date( schedule_info->start_time ),
   366         gmyth_util_time_to_string_only_time( schedule_info->end_time ),
   367         gmyth_util_time_to_string_only_date( schedule_info->end_time ), 
   368         schedule_info->title->str, //title
   369     	schedule_info->channel_id,//station
   370     	(gmyth_util_time_val_to_date( schedule_info->start_time ))->tm_wday, //findday
   371    		gmyth_util_time_to_string_only_time( schedule_info->start_time ), //findtime
   372    		(gint)(schedule_info->start_time->tv_sec/60/60/24 + 719528)//findid
   373     );
   374     
   375     gmyth_debug ( "Sending query to MySQL = %s.", query_str->str );
   376 
   377     msql_res = gmyth_query_process_statement (scheduler->msqlquery, query_str->str);
   378     
   379     /* FIXME: currently no way to detect db error in UPDATE, REPLACES!
   380     if (msql_res == NULL) {
   381         g_warning ("DB retrieval of recording list failed");
   382         return -1;
   383 	}*/
   384     
   385     /* TODO: verify record_id = -1 semantics */
   386     if (schedule_info->record_id <= 0)
   387 	    schedule_info->record_id = get_record_id_from_database(scheduler);
   388     
   389     /* Notify the backend of changes */
   390     update_backend(scheduler, schedule_info->record_id);
   391     
   392     /* free allocated memory */
   393     mysql_free_result (msql_res);
   394     g_string_free(query_str, TRUE);
   395     
   396     return 1;
   397 }
   398 
   399 /** Requests the Mysql database in the backend to remove an existing schedule.
   400  * 
   401  * @param scheduler the GMythScheduler instance.
   402  * @param record_id The schedule's record id to be removed
   403  * @return gboolean TRUE if success, FALSE if error
   404  */
   405 gboolean
   406 gmyth_scheduler_delete_schedule (GMythScheduler *scheduler, gint record_id)
   407 {
   408 
   409     MYSQL_RES *msql_res;
   410     GString *query_str = g_string_new ("");
   411 
   412     assert(scheduler);
   413     
   414     if (scheduler->msqlquery == NULL) {
   415 	g_warning ("[%s] Scheduler db connection not initialized", __FUNCTION__);
   416 	return FALSE;
   417     }
   418 
   419     //========================================
   420     g_string_printf (query_str, 
   421     	"DELETE FROM record WHERE recordid=%d", record_id);
   422 
   423     msql_res = gmyth_query_process_statement (scheduler->msqlquery, query_str->str);
   424 
   425     if (msql_res == NULL) {
   426     	g_warning ("[%s] Error while trying to delete a schedule in the database", __FUNCTION__);
   427     	return FALSE;
   428     }
   429 
   430     update_backend(scheduler, record_id);// Notify the backend of the changes
   431     
   432     mysql_free_result (msql_res);
   433     g_string_free(query_str, TRUE);
   434 
   435     return TRUE;
   436 }
   437 
   438 /** Requests the Mysql database in the backend to remove an existing recorded item.
   439  * 
   440  * @param scheduler the GMythScheduler instance.
   441  * @param record_id The recorded item id to be removed
   442  * @return gboolean TRUE if success, FALSE if error
   443  */
   444 gboolean
   445 gmyth_scheduler_delete_recorded (GMythScheduler *scheduler, gint record_id)
   446 {
   447 
   448     MYSQL_RES *msql_res;
   449 
   450     GString *query_str = g_string_new ("");
   451 
   452     assert(scheduler);
   453     
   454 	if (scheduler->msqlquery == NULL) {
   455 		g_warning ("[%s] Scheduler db connection not initialized", __FUNCTION__);
   456 		return FALSE;
   457 	}
   458 
   459     //========================================
   460     g_string_printf (query_str, 
   461     	"DELETE FROM recorded WHERE recordid=%d", record_id);
   462 
   463     msql_res = gmyth_query_process_statement (scheduler->msqlquery, query_str->str);
   464 
   465     update_backend(scheduler, record_id);// Notify the backend of the changes
   466     
   467     mysql_free_result (msql_res);
   468     g_string_free(query_str, TRUE);
   469 
   470     return TRUE;
   471 }
   472 
   473 /** Retrieves an existing recorded item information from database. The information
   474  * is used to fill the returned GMythProgramInfo.
   475  * 
   476  * @param scheduler The GMythScheduler instance.
   477  * @param channel The channel associated to the record
   478  * @param starttime The record start time
   479  * @return A GMythProgramInfo struct with the requested record item
   480  * information, or NULL if error.
   481  */
   482 GMythProgramInfo*
   483 gmyth_scheduler_get_recorded (GMythScheduler *scheduler, 
   484                               GString *channel, GTimeVal* starttime)
   485 {
   486 	MYSQL_RES *msql_res;
   487 	GMythProgramInfo *proginfo = NULL;
   488 	GString *query_str = g_string_new("");
   489 	gchar *time_str = gmyth_util_time_to_string_from_time_val (starttime);
   490 
   491     assert(scheduler);
   492     
   493 	if (scheduler->msqlquery == NULL) {
   494 		g_warning ("[%s] Scheduler db connection not initialized", __FUNCTION__);
   495 		return NULL;
   496 	}
   497 
   498 	g_string_printf (query_str, "SELECT recorded.chanid,starttime,endtime,title, "
   499                   "subtitle,description,channel.channum, "
   500                   "channel.callsign,channel.name,channel.commfree, "
   501                   "channel.outputfilters,seriesid,programid,filesize, "
   502                   "lastmodified,stars,previouslyshown,originalairdate, "
   503                   "hostname,recordid,transcoder,playgroup, "
   504                   "recorded.recpriority,progstart,progend,basename,recgroup "
   505                   "FROM recorded "
   506                   "LEFT JOIN channel "
   507                   "ON recorded.chanid = channel.chanid "
   508                   "WHERE recorded.chanid = \"%s\" "
   509                   "AND starttime = \"%s\" ;",
   510                   channel->str, time_str);
   511 
   512     msql_res = gmyth_query_process_statement (scheduler->msqlquery, query_str->str);
   513 
   514     if (msql_res /*&& query.size() > 0*/) {
   515     	
   516     	MYSQL_ROW msql_row = mysql_fetch_row (msql_res);
   517     	if (msql_row) {
   518 
   519     		proginfo = gmyth_program_info_new();
   520     	
   521 	        proginfo->chanid = g_string_new (msql_row[0]);
   522 	        proginfo->startts = gmyth_util_string_to_time_val (msql_row[23]);
   523 	        proginfo->endts = gmyth_util_string_to_time_val (msql_row[24]);
   524 	        proginfo->recstartts = gmyth_util_string_to_time_val (msql_row[1]);
   525 	        proginfo->recendts = gmyth_util_string_to_time_val (msql_row[2]);
   526 	        proginfo->title = g_string_new (msql_row[3]);
   527 	        proginfo->subtitle = g_string_new (msql_row[4]);
   528 	        proginfo->description = g_string_new (msql_row[5]);
   529 	
   530 	        proginfo->chanstr = g_string_new (msql_row[6]);
   531 	        proginfo->chansign = g_string_new (msql_row[7]);
   532 	        proginfo->channame = g_string_new (msql_row[0]);
   533 	        proginfo->chancommfree = g_ascii_strtoull (msql_row[9], NULL, 10);
   534 	        proginfo->chanOutputFilters = g_string_new (msql_row[10]);
   535 	        proginfo->seriesid = g_string_new (msql_row[11]);
   536 	        proginfo->programid = g_string_new (msql_row[12]);
   537 	        proginfo->filesize = g_ascii_strtoull (msql_row[13], NULL, 10);
   538 	
   539 	        proginfo->lastmodified = gmyth_util_string_to_time_val (msql_row[14]);
   540 	        
   541 	        proginfo->stars = g_ascii_strtod (msql_row[15], NULL);
   542 	        proginfo->repeat = g_ascii_strtoull (msql_row[16], NULL, 10);
   543 	        
   544 	        if (msql_row[17] == NULL) {
   545 	            proginfo->originalAirDate = 0;
   546 	            proginfo->hasAirDate = FALSE;
   547 	        } else {
   548 	            proginfo->originalAirDate = gmyth_util_string_to_time_val (msql_row[17]);
   549 	            proginfo->hasAirDate = TRUE;
   550 	        }
   551 	        
   552 	        proginfo->hostname = g_string_new (msql_row[18]);
   553 	        proginfo->recordid = g_ascii_strtoull (msql_row[19], NULL, 10);
   554 	        proginfo->transcoder = g_ascii_strtoull (msql_row[20], NULL, 10);
   555 	
   556 	        //proginfo->spread = -1;
   557 			//proginfo->programflags = proginfo->getProgramFlags();
   558 	
   559 	        proginfo->recgroup = g_string_new (msql_row[26]);
   560 	        proginfo->playgroup = g_string_new (msql_row[21]);
   561 	        proginfo->recpriority = g_ascii_strtoull (msql_row[22], NULL, 10);
   562 	
   563 	        proginfo->pathname = g_string_new (msql_row[25]);
   564 
   565 	        gmyth_debug ("One program info loaded from mysql database\n");
   566     	}
   567     }
   568 
   569     mysql_free_result (msql_res);
   570     g_string_free(query_str, TRUE);
   571     g_free(time_str);
   572 
   573     return proginfo;
   574 }
   575 
   576 /** Retrieves the next record id.
   577  * 
   578  * @param scheduler The GMythScheduler instance.
   579  * @return gint record_id if success, -1 otherwise 
   580  */
   581 static gint
   582 get_record_id_from_database (GMythScheduler *scheduler)
   583 {
   584     gint record_id;
   585 
   586     assert(scheduler);
   587     
   588 	if (scheduler->msqlquery == NULL) {
   589 		g_warning ("[%s] Scheduler db connection not initialized", __FUNCTION__);
   590 		return 0;
   591 	}
   592 
   593     record_id = mysql_insert_id (scheduler->msqlquery->conn);
   594 
   595 	return record_id;
   596 }	
   597 	
   598 /** Notifies the backend of an update in the db.
   599  * 
   600  * @param record_id the id of the modified recording.
   601  */
   602 static void
   603 update_backend(GMythScheduler *scheduler, gint record_id)//fixme: put void and discovery record_id inside
   604 {
   605     GMythSocket *socket;
   606     GMythStringList *strlist = gmyth_string_list_new ();
   607     GString *datastr = g_string_new ("RESCHEDULE_RECORDINGS ");
   608 
   609     g_string_append_printf (datastr, "%d", record_id);
   610     gmyth_string_list_append_string (strlist, datastr);
   611 
   612     socket = gmyth_socket_new ();
   613     if (gmyth_socket_connect (socket, scheduler->backend_info->hostname,
   614 			    scheduler->backend_info->port)) {
   615         gmyth_socket_sendreceive_stringlist (socket, strlist);
   616     } else {
   617 	g_warning ("[%s] Connection to backend failed!", __FUNCTION__);
   618     }
   619     
   620     g_string_free(datastr, TRUE);
   621     g_object_unref(strlist);
   622 }
   623 
   624 void
   625 gmyth_scheduler_recorded_info_get_preview (RecordedInfo *info, GByteArray* data)
   626 {
   627 }
   628 
   629 void
   630 gmyth_scheduler_recorded_info_free (RecordedInfo *info)
   631 {
   632     if (info->title != NULL)
   633         g_string_free (info->title, TRUE);
   634 
   635     if (info->subtitle != NULL)
   636         g_string_free (info->subtitle, TRUE);
   637 
   638     if (info->description != NULL)
   639         g_string_free (info->description, TRUE);
   640 
   641     if (info->category != NULL)
   642         g_string_free (info->category, TRUE);
   643 
   644     if (info->basename != NULL)
   645         g_string_free (info->basename, TRUE);
   646 
   647     g_free (info);
   648 }
   649 
   650 void
   651 gmyth_scheduler_schedule_info_free (ScheduleInfo *info)
   652 {
   653     if (info->title != NULL)
   654         g_string_free (info->title, TRUE);
   655 
   656     if (info->subtitle != NULL)
   657         g_string_free (info->subtitle, TRUE);
   658 
   659     if (info->description != NULL)
   660         g_string_free (info->description, TRUE);
   661 
   662     if (info->category != NULL)
   663         g_string_free (info->category, TRUE);
   664 
   665     g_free (info);
   666 }
   667