[svn r337] Changed the g_object_unref's in the do_get_file_info.
4 * @file gmyth/gmyth_util.c
6 * @brief <p> This component provides utility functions.
8 * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
9 * @author Hallyson Luiz de Morais Melo <hallyson.melo@indt.org.br>
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU Lesser General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU Lesser General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
33 #define _XOPEN_SOURCE_EXTENDED
37 #include <glib/gprintf.h>
40 #include <sys/timex.h>
44 #if !GLIB_CHECK_VERSION (2, 10, 0)
46 g_time_val_to_iso8601 (GTimeVal *time_);
48 g_time_val_from_iso8601 (const gchar *iso_date,
51 g_date_set_time_val (GDate *date,
56 static GStaticMutex mutex = G_STATIC_MUTEX_INIT;
58 /** Converts a time_t struct in a GString at ISO standard format
59 * (e.g. 2006-07-20T09:56:41).
61 * The returned GString memory should be deallocated from
62 * the calling function.
64 * @param time_value the time value to be converted
65 * @return GString* the converted isoformat string
68 gmyth_util_time_to_isoformat (time_t time_value)
73 g_static_mutex_lock ( &mutex );
75 if (localtime_r(&time_value, &tm_time) == NULL) {
76 g_static_mutex_unlock ( &mutex );
77 g_warning ("gmyth_util_time_to_isoformat convertion error!\n");
81 result = g_string_sized_new(20);
82 g_string_printf(result, "%04d-%02d-%02dT%02d:%02d:%02d",
83 tm_time.tm_year + 1900, tm_time.tm_mon + 1, tm_time.tm_mday,
84 tm_time.tm_hour, tm_time.tm_min, tm_time.tm_sec);
86 gmyth_debug( "Result (ISO 8601) = %s", result->str );
88 g_static_mutex_unlock ( &mutex );
93 /** Converts a time_t struct in a GString at ISO standard format
94 * (e.g. 2006-07-20T09:56:41).
96 * The returned GString memory should be deallocated from
97 * the calling function.
99 * @param time_value the GTimeValue to be converted
100 * @return GString* the converted isoformat string
103 gmyth_util_time_to_isoformat_from_time_val_fmt ( const gchar *fmt_string, const GTimeVal* time_val )
105 gchar *result = NULL;
106 struct tm *tm_time = NULL;
110 g_return_val_if_fail( fmt_string != NULL, NULL );
112 g_return_val_if_fail( time_val != NULL, NULL );
114 time_t time = time_val->tv_sec;// + (gint)( time_val->tv_usec / G_USEC_PER_SEC );
116 tm_time = g_malloc0( sizeof(struct tm) );
118 g_static_mutex_lock ( &mutex );
120 if ( NULL == localtime_r( &time, tm_time ) ) {
121 g_warning ("gmyth_util_time_to_isoformat convertion error!\n");
123 // we first check the return of strftime to allocate a buffer of the correct size
124 buffer_len = strftime( NULL, SSIZE_MAX, fmt_string, tm_time );
125 if ( buffer_len > 0 ) {
126 result = g_malloc0( buffer_len + 1 );
127 if( result == NULL ){
128 g_static_mutex_unlock ( &mutex );
129 g_warning ("gmyth_util_time_to_isoformat convertion error!\n");
132 strftime( result, buffer_len + 1, fmt_string, tm_time );
133 gmyth_debug( "Dateline (ISO result): %s", result );
138 gmyth_debug( "Result (strftime) = %s", result );
140 //strptime( result, "%Y-%m-%dT%H:%M:%SZ", tm_time );
142 //strftime( result, strlen(result), fmt_string, tm_time );
144 g_static_mutex_unlock ( &mutex );
146 gmyth_debug( "Result (ISO 8601) = %s", result );
152 /** Converts a time_t struct in a GString at ISO standard format
153 * (e.g. 2006-07-20 09:56:41).
155 * The returned GString memory should be deallocated from
156 * the calling function.
158 * @param time_value the GTimeValue to be converted
159 * @return GString* the converted isoformat string
162 gmyth_util_time_to_isoformat_from_time_val ( const GTimeVal* time )
164 gchar *result = gmyth_util_time_to_isoformat_from_time_val_fmt( "%Y-%m-%d %H:%M:%S", time );
166 //result[ strlen(result) - 1] = '\0';
171 /** Converts a time_t struct in a GString at ISO standard format 2
172 * (e.g. 2006-07-20T09:56:41).
174 * The returned GString memory should be deallocated from
175 * the calling function.
177 * @param time_value the GTimeValue to be converted
178 * @return GString* the converted isoformat string
181 gmyth_util_time_to_mythformat_from_time_val ( const GTimeVal* time )
183 gchar *result = gmyth_util_time_to_isoformat_from_time_val_fmt( "%Y-%m-%dT%H:%M:%S", time );
187 /** Converts a time_t struct in a GString at ISO standard format
188 * (e.g. 2006-07-20T09:56:41).
190 * The returned GString memory should be deallocated from
191 * the calling function.
193 * @param time_value the GTimeValue to be converted
194 * @return GString* the converted isoformat string
197 gmyth_util_time_to_string_only_date ( const GTimeVal* time )
199 gchar *result = gmyth_util_time_to_isoformat_from_time_val_fmt( "%Y-%m-%d", time );
201 //result[ strlen(result) - 1] = '\0';
205 /** Converts a time_t struct in a GString at ISO standard format
206 * (e.g. 2006-07-20T09:56:41).
208 * The returned GString memory should be deallocated from
209 * the calling function.
211 * @param time_value the GTimeValue to be converted
212 * @return GString* the converted isoformat string
215 gmyth_util_time_to_string_only_time ( const GTimeVal* time )
217 gchar *result = gmyth_util_time_to_isoformat_from_time_val_fmt( "%H:%M:%S", time );
219 //result[ strlen(result) - 1] = '\0';
223 /** Converts a time_t struct in a GString to the following
224 * format (e.g. 2006-07-20 09:56:41).
226 * The returned GString memory should be deallocated from
227 * the calling function.
229 * @param time_value the time value to be converted
230 * @return GString* the converted string
233 gmyth_util_time_to_string (time_t time_value)
235 GString *result = gmyth_util_time_to_isoformat (time_value);
236 result->str[10] = ' ';
237 result->str[ strlen(result->str) - 1] = '\0';
242 /** Converts a time_t struct in a GString to the following
243 * format (e.g. 2006-07-20 09:56:41).
245 * The returned GString memory should be deallocated from
246 * the calling function.
248 * @param time_value the time value to be converted
249 * @return GString* the converted string
252 gmyth_util_time_to_string_from_time_val ( const GTimeVal *time_val )
254 gchar *result = gmyth_util_time_to_isoformat_from_time_val_fmt ( "%Y-%m-%d %H:%M:%S", time_val );
260 /** Converts a GString in the following format
261 * (e.g. 2006-07-20 09:56:41) to a time_t struct.
263 * @param time_str the string to be converted
264 * @return time_t the time converted value
267 gmyth_util_string_to_time (GString* time_str)
269 gint year, month, day, hour, min, sec;
271 gmyth_debug( "[%s] time_str = %s. [%s]", __FUNCTION__, time_str != NULL ?
272 time_str->str : "[time string is NULL!]", time_str->str );
274 if ( sscanf (time_str->str, "%04d-%02d-%02d %02d:%02d:%02d",
275 &year, &month, &day, &hour, &min, &sec) < 3 ) {
276 g_warning ("GMythUtil: isoformat_to_time converter error!\n");
280 g_static_mutex_lock ( &mutex );
282 struct tm* tm_time = g_malloc0( sizeof(struct tm) );
283 tm_time->tm_year = year - 1900;
284 tm_time->tm_mon = month - 1;
285 tm_time->tm_mday = day;
286 tm_time->tm_hour = hour;
287 tm_time->tm_min = min;
288 tm_time->tm_sec = sec;
290 g_static_mutex_unlock ( &mutex );
292 return mktime( tm_time );
295 /** Converts a GString in the following format
296 * (e.g. 2006-07-20 09:56:41) to a time_t struct.
298 * @param time_str the string to be converted
299 * @return time_t the time converted value
302 gmyth_util_time_val_to_date ( const GTimeVal* time )
304 struct tm *date = g_malloc0( sizeof( struct tm ) );
305 time_t time_micros = time->tv_sec;// + (gint)( time->tv_usec / G_USEC_PER_SEC );
307 if ( NULL == date ) {
308 g_warning ( "GMythUtil: GDate *gmyth_util_time_val_to_date (GTimeVal* time) - converter error!\n" );
312 if ( NULL == localtime_r( &time_micros, date ) ) {
313 g_warning ( "gmyth_util_time_to_isoformat convertion error!\n" );
317 gmyth_debug( "Converted from GTimeVal == %s to GDate", asctime( date ) );
322 /** Converts a GString in the following format
323 * (e.g. 2006-07-20 09:56:41) to a time_t struct.
325 * @param time_str the string to be converted
326 * @return time_t the time converted value
329 gmyth_util_string_to_time_val_fmt ( const gchar *fmt_string, const gchar* time_str )
331 GTimeVal *time = g_new0( GTimeVal, 1 );
332 struct tm* tm_time = NULL;
336 gmyth_debug( "[%s] time_str = %s. [%s]", time_str, time_str != NULL ?
337 time_str : "[time string is NULL!]", time_str );
339 if ( NULL == time_str )
341 g_warning ("GMythUtil: isoformat_to_time converter error!\n");
345 g_static_mutex_lock ( &mutex );
347 tm_time = g_malloc0( sizeof(struct tm) );
349 /* we first check the return of strftime to allocate a buffer of the correct size */
350 result = strptime( time_str, "%Y-%m-%dT%H:%M:%S", tm_time );
351 if ( NULL == result ) {
352 /* we first check the return of strftime to allocate a buffer of the correct size */
353 result = strptime( time_str, "%Y-%m-%dT%H:%M:%SZ", tm_time );
354 if ( NULL == result ) {
355 /* we first check the return of strftime to allocate a buffer of the correct size */
356 result = strptime( time_str, "%Y-%m-%d %H:%M:%S", tm_time );
357 if ( NULL == result ) {
358 g_static_mutex_unlock ( &mutex );
359 gmyth_debug( "Dateline (ISO result): %s", result );
366 time_micros = mktime( tm_time );
368 time->tv_sec = time_micros; // + (gint)( time_val->tv_usec / G_USEC_PER_SEC );
370 gmyth_debug( "After mktime call... = %s", asctime(tm_time) );
372 g_static_mutex_unlock ( &mutex );
377 /** Converts a GString in the following format
378 * (e.g. 2006-07-20 09:56:41) to a time_t struct.
380 * @param time_str the string to be converted
381 * @return time_t the time converted value
384 gmyth_util_string_to_time_val ( const gchar* time_str )
386 GTimeVal *time = gmyth_util_string_to_time_val_fmt ( "%Y-%m-%d %H:%M:%S", time_str );
391 /** Decodes a long long variable from the string list
392 * format of the myhtprotocol.
394 * @param strlist the string list of mythprotocol values
395 * @param offset the list node offset of the long long variable
396 * @return gint64 the long long converted value
399 gmyth_util_decode_long_long(GMythStringList *strlist, guint offset)
402 gint64 ret_value = 0LL;
404 g_return_val_if_fail( strlist != NULL, ret_value );
406 if ( offset > gmyth_string_list_length( strlist ))
407 g_printerr( "[%s] Offset is greater than the Stringlist (offset = %d)!\n",
408 __FUNCTION__, offset );
410 g_return_val_if_fail( offset < gmyth_string_list_length( strlist ), ret_value );
412 gint l1 = gmyth_string_list_get_int( strlist, offset );
413 gint l2 = gmyth_string_list_get_int( strlist, offset + 1 );
415 ret_value = (l2 /*& 0xffffffffLL*/) | ( (gint64)l1 << 32 );
422 gmyth_util_file_exists (GMythBackendInfo *backend_info, const gchar* filename)
427 socket = gmyth_socket_new ();
428 res = gmyth_socket_connect_to_backend (socket, backend_info->hostname,
429 backend_info->port, TRUE);
432 GMythStringList *slist;
433 GMythProgramInfo *program = NULL;
435 program = gmyth_program_info_new();
436 program->pathname = g_string_new (filename);
438 slist = gmyth_string_list_new ();
439 gmyth_string_list_append_char_array (slist, "QUERY_CHECKFILE");
441 gmyth_program_info_to_string_list (program, slist);
443 gmyth_socket_sendreceive_stringlist (socket, slist);
445 res = (gmyth_string_list_get_int (slist, 0) == 1);
447 g_object_unref (program);
449 g_object_unref (slist);
451 gmyth_socket_close_connection (socket);
453 g_object_unref (socket);
458 #if !GLIB_CHECK_VERSION (2, 10, 0)
460 /* Hacked from glib 2.10 <gtime.c> */
463 mktime_utc (struct tm *tm)
468 static const gint days_before[] =
470 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334
475 if (tm->tm_mon < 0 || tm->tm_mon > 11)
478 retval = (tm->tm_year - 70) * 365;
479 retval += (tm->tm_year - 68) / 4;
480 retval += days_before[tm->tm_mon] + tm->tm_mday - 1;
482 if (tm->tm_year % 4 == 0 && tm->tm_mon < 2)
485 retval = ((((retval * 24) + tm->tm_hour) * 60) + tm->tm_min) * 60 + tm->tm_sec;
487 retval = timegm (tm);
488 #endif /* !HAVE_TIMEGM */
494 g_time_val_from_iso8601 (const gchar *iso_date,
500 g_return_val_if_fail (iso_date != NULL, FALSE);
501 g_return_val_if_fail (time_ != NULL, FALSE);
503 val = strtoul (iso_date, (char **)&iso_date, 10);
504 if (*iso_date == '-')
507 tm.tm_year = val - 1900;
509 tm.tm_mon = strtoul (iso_date, (char **)&iso_date, 10) - 1;
511 if (*iso_date++ != '-')
514 tm.tm_mday = strtoul (iso_date, (char **)&iso_date, 10);
519 tm.tm_mday = val % 100;
520 tm.tm_mon = (val % 10000) / 100 - 1;
521 tm.tm_year = val / 10000 - 1900;
524 if (*iso_date++ != 'T')
527 val = strtoul (iso_date, (char **)&iso_date, 10);
528 if (*iso_date == ':')
533 tm.tm_min = strtoul (iso_date, (char **)&iso_date, 10);
535 if (*iso_date++ != ':')
538 tm.tm_sec = strtoul (iso_date, (char **)&iso_date, 10);
543 tm.tm_sec = val % 100;
544 tm.tm_min = (val % 10000) / 100;
545 tm.tm_hour = val / 10000;
548 time_->tv_sec = mktime_utc (&tm);
551 if (*iso_date == '.')
552 time_->tv_usec = strtoul (iso_date + 1, (char **)&iso_date, 10);
554 if (*iso_date == '+' || *iso_date == '-')
556 gint sign = (*iso_date == '+') ? -1 : 1;
558 val = 60 * strtoul (iso_date + 1, (char **)&iso_date, 10);
560 if (*iso_date == ':')
561 val = 60 * val + strtoul (iso_date + 1, NULL, 10);
563 val = 60 * (val / 100) + (val % 100);
565 time_->tv_sec += (time_t) (val * sign);
573 g_time_val_to_iso8601 (GTimeVal *time_)
577 g_return_val_if_fail (time_->tv_usec >= 0 && time_->tv_usec < G_USEC_PER_SEC, NULL);
579 #define ISO_8601_LEN 21
580 #define ISO_8601_FORMAT "%Y-%m-%dT%H:%M:%SZ"
581 retval = g_new0 (gchar, ISO_8601_LEN + 1);
583 strftime (retval, ISO_8601_LEN,
585 gmtime (&(time_->tv_sec)));
591 /* Hacked from glib 2.10 <gdate.c> */
594 g_date_set_time_t (GDate *date,
599 g_return_if_fail (date != NULL);
601 #ifdef HAVE_LOCALTIME_R
602 localtime_r (&timet, &tm);
605 struct tm *ptm = localtime (&timet);
609 /* Happens at least in Microsoft's C library if you pass a
610 * negative time_t. Use 2000-01-01 as default date.
612 #ifndef G_DISABLE_CHECKS
613 g_return_if_fail_warning (G_LOG_DOMAIN, "g_date_set_time", "ptm != NULL");
621 memcpy ((void *) &tm, (void *) ptm, sizeof(struct tm));
625 date->julian = FALSE;
627 date->month = tm.tm_mon + 1;
628 date->day = tm.tm_mday;
629 date->year = tm.tm_year + 1900;
631 g_return_if_fail (g_date_valid_dmy (date->day, date->month, date->year));
638 g_date_set_time_val (GDate *date,
641 g_date_set_time_t (date, (time_t) timeval->tv_sec);