renatofilho@320: /**
renatofilho@320: * GMyth Library
renatofilho@320: *
renatofilho@320: * @file gmyth/gmyth_uri.c
renatofilho@320: *
renatofilho@320: * @brief
GMythURI utils
renatofilho@320: * - Extracts and parses a URI char string, in according with the RFC 2396
renatofilho@320: * [http://www.ietf.org/rfc/rfc2396.txt]
renatofilho@320: *
renatofilho@320: * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
renatofilho@320: * @author Rosfran Borges
renatofilho@320: *
renatofilho@320: *//*
renatofilho@320: *
renatofilho@320: * This program is free software; you can redistribute it and/or modify
renatofilho@320: * it under the terms of the GNU Lesser General Public License as published by
renatofilho@320: * the Free Software Foundation; either version 2 of the License, or
renatofilho@320: * (at your option) any later version.
renatofilho@320: *
renatofilho@320: * This program is distributed in the hope that it will be useful,
renatofilho@320: * but WITHOUT ANY WARRANTY; without even the implied warranty of
renatofilho@320: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
renatofilho@320: * GNU General Public License for more details.
renatofilho@320: *
renatofilho@320: * You should have received a copy of the GNU Lesser General Public License
renatofilho@320: * along with this program; if not, write to the Free Software
renatofilho@320: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
renatofilho@320: */
renatofilho@320:
renatofilho@320: #ifdef HAVE_CONFIG_H
renatofilho@320: #include "config.h"
renatofilho@320: #endif
renatofilho@320:
renatofilho@320: #include "gmyth_uri.h"
renatofilho@320:
renatofilho@320: #include
renatofilho@320: #include
renatofilho@320: #include
renatofilho@320:
renatofilho@320: #include "gmyth_debug.h"
renatofilho@320:
renatofilho@320: static void gmyth_uri_class_init (GMythURIClass *klass);
renatofilho@320: static void gmyth_uri_init (GMythURI *object);
renatofilho@320:
renatofilho@320: static void gmyth_uri_dispose (GObject *object);
renatofilho@320: static void gmyth_uri_finalize (GObject *object);
renatofilho@320:
renatofilho@320: G_DEFINE_TYPE(GMythURI, gmyth_uri, G_TYPE_OBJECT)
renatofilho@320:
renatofilho@320: static void
renatofilho@320: gmyth_uri_parser_setup_and_new( GMythURI *uri, const gchar *value );
renatofilho@320:
renatofilho@320: static void
renatofilho@320: gmyth_uri_class_init (GMythURIClass *klass)
renatofilho@320: {
renatofilho@320: GObjectClass *gobject_class;
renatofilho@320:
renatofilho@320: gobject_class = (GObjectClass *) klass;
renatofilho@320:
renatofilho@320: gobject_class->dispose = gmyth_uri_dispose;
renatofilho@320: gobject_class->finalize = gmyth_uri_finalize;
renatofilho@320: }
renatofilho@320:
renatofilho@320: static void
renatofilho@320: gmyth_uri_init (GMythURI *gmyth_uri)
renatofilho@320: {
renatofilho@320: }
renatofilho@320:
renatofilho@320: static void
renatofilho@320: gmyth_uri_dispose (GObject *object)
renatofilho@320: {
renatofilho@320: GMythURI *gmyth_uri = GMYTH_URI(object);
renatofilho@320:
renatofilho@320: if ( gmyth_uri->host != NULL ) {
renatofilho@320: g_string_free( gmyth_uri->host, TRUE );
renatofilho@320: gmyth_uri->host = NULL;
renatofilho@320: }
renatofilho@320:
renatofilho@320: if ( gmyth_uri->protocol != NULL ) {
renatofilho@320: g_string_free( gmyth_uri->protocol, TRUE );
renatofilho@320: gmyth_uri->protocol = NULL;
renatofilho@320: }
renatofilho@320:
renatofilho@320: if ( gmyth_uri->path != NULL ) {
renatofilho@320: g_string_free( gmyth_uri->path, TRUE );
renatofilho@320: gmyth_uri->path = NULL;
renatofilho@320: }
renatofilho@320:
renatofilho@320: if ( gmyth_uri->fragment != NULL ) {
renatofilho@320: g_string_free( gmyth_uri->fragment, TRUE );
renatofilho@320: gmyth_uri->fragment = NULL;
renatofilho@320: }
renatofilho@320:
renatofilho@320: if ( gmyth_uri->user != NULL ) {
renatofilho@320: g_string_free( gmyth_uri->user, TRUE );
renatofilho@320: gmyth_uri->user = NULL;
renatofilho@320: }
renatofilho@320:
renatofilho@320: if ( gmyth_uri->password != NULL ) {
renatofilho@320: g_string_free( gmyth_uri->password, TRUE );
renatofilho@320: gmyth_uri->password = NULL;
renatofilho@320: }
renatofilho@320:
renatofilho@320: if ( gmyth_uri->query != NULL ) {
renatofilho@320: g_string_free( gmyth_uri->query, TRUE );
renatofilho@320: gmyth_uri->query = NULL;
renatofilho@320: }
renatofilho@320:
renatofilho@320: G_OBJECT_CLASS (gmyth_uri_parent_class)->dispose (object);
renatofilho@320: }
renatofilho@320:
renatofilho@320: static void
renatofilho@320: gmyth_uri_finalize (GObject *object)
renatofilho@320: {
renatofilho@320: //GMythURI *gmyth_uri = GMYTH_URI(object);
renatofilho@320:
renatofilho@320: g_signal_handlers_destroy (object);
renatofilho@320:
renatofilho@320: G_OBJECT_CLASS (gmyth_uri_parent_class)->finalize (object);
renatofilho@320: }
renatofilho@320:
renatofilho@320: /** Creates a new instance of GMythURI.
renatofilho@320: *
renatofilho@320: * @return a new instance of GMythURI.
renatofilho@320: */
renatofilho@320: GMythURI *
renatofilho@320: gmyth_uri_new (void)
renatofilho@320: {
renatofilho@320: GMythURI *gmyth_uri = GMYTH_URI (g_object_new (GMYTH_URI_TYPE, NULL));
renatofilho@320:
renatofilho@320: return gmyth_uri;
renatofilho@320: }
renatofilho@320:
renatofilho@320: /** Creates a new instance of GMythURI.
renatofilho@320: *
renatofilho@320: * @return a new instance of GMythURI.
renatofilho@320: */
renatofilho@320: GMythURI *
renatofilho@320: gmyth_uri_new_with_value (const gchar *value)
renatofilho@320: {
renatofilho@320: GMythURI *gmyth_uri = GMYTH_URI (g_object_new (GMYTH_URI_TYPE, NULL));
renatofilho@320:
renatofilho@320: gmyth_uri_parser_setup_and_new (gmyth_uri, value);
renatofilho@320:
renatofilho@320: return gmyth_uri;
renatofilho@320: }
renatofilho@320:
renatofilho@320: static gint
renatofilho@320: gmyth_strstr (const gchar *haystack, const gchar *needle)
renatofilho@320: {
renatofilho@320:
renatofilho@320: gchar *strPos;
renatofilho@320:
renatofilho@320: if (haystack == NULL || needle == NULL)
renatofilho@320: return -1;
renatofilho@320: strPos = strstr(haystack, needle);
renatofilho@320: if (strPos == NULL)
renatofilho@320: return -1;
renatofilho@320:
renatofilho@320: return (strPos - haystack);
renatofilho@320:
renatofilho@320: }
renatofilho@320:
renatofilho@320: static gboolean
renatofilho@320: gmyth_uri_isabsolute (const GMythURI *uri)
renatofilho@320: {
renatofilho@320: gboolean ret = FALSE;
renatofilho@320:
renatofilho@320: g_return_val_if_fail( uri != NULL && uri->uri != NULL && uri->protocol != NULL, FALSE );
renatofilho@320:
renatofilho@320: if ( gmyth_strstr( uri->uri->str, GMYTH_URI_PROTOCOL_DELIM ) == 0 || strlen(uri->protocol->str) > 0 )
renatofilho@320: ret = TRUE;
renatofilho@320:
renatofilho@320: return ret;
renatofilho@320: }
renatofilho@320:
renatofilho@320: static gint
renatofilho@320: gmyth_strrchr( const gchar *str, const gchar *chars, const gint nchars )
renatofilho@320: {
renatofilho@320:
renatofilho@320: gint strLen;
renatofilho@320: gint i, j;
renatofilho@320:
renatofilho@320: if ( str == NULL || chars == NULL )
renatofilho@320: return -1;
renatofilho@320:
renatofilho@320: strLen = strlen( str );
renatofilho@320: for ( i= (strLen-1); 0 <= i; i-- ) {
renatofilho@320: for ( j=0; jstr != NULL && strlen(field->str) > 0 )
renatofilho@320: return field->str;
renatofilho@320: else
renatofilho@320: return "";
renatofilho@320: }
renatofilho@320:
renatofilho@320: static void
renatofilho@320: gmyth_uri_parser_setup_and_new( GMythURI *uri, const gchar *value )
renatofilho@320: {
renatofilho@320:
renatofilho@320: gint uriLen;
renatofilho@320: gint currIdx;
renatofilho@320: gint protoIdx;
renatofilho@320: gint atIdx;
renatofilho@320: gint colonIdx;
renatofilho@320: gint shashIdx;
renatofilho@320: gint eIdx;
renatofilho@320: gchar *host;
renatofilho@320: gint eblacketIdx;
renatofilho@320: gint hostLen;
renatofilho@320: gint sharpIdx;
renatofilho@320: /*
renatofilho@320: gint questionIdx;
renatofilho@320: gint queryLen;
renatofilho@320: */
renatofilho@320:
renatofilho@320: uriLen = strlen(value);
renatofilho@320: uri->uri = g_string_new( value );
renatofilho@320:
renatofilho@320: currIdx = 0;
renatofilho@320:
renatofilho@320: /*** Protocol ****/
renatofilho@320: protoIdx = gmyth_strstr (value, GMYTH_URI_PROTOCOL_DELIM);
renatofilho@320: if (0 < protoIdx) {
renatofilho@320: uri->protocol = g_string_new_len (value, protoIdx);
renatofilho@320: currIdx += protoIdx + strlen( GMYTH_URI_PROTOCOL_DELIM );
renatofilho@320: }
renatofilho@320:
renatofilho@320: /*** User (Password) ****/
renatofilho@320: atIdx = gmyth_strstr( value+currIdx, GMYTH_URI_USER_DELIM );
renatofilho@320: if ( 0 < atIdx ) {
renatofilho@320: colonIdx = gmyth_strstr( value+currIdx, GMYTH_URI_COLON_DELIM );
renatofilho@320:
renatofilho@320: if (0 < colonIdx && colonIdx < atIdx) {
renatofilho@320: uri->user = g_string_new_len (value+currIdx, colonIdx);
renatofilho@320: uri->password = g_string_new_len (value+currIdx+colonIdx+1, atIdx - (colonIdx+1));
renatofilho@320: }
renatofilho@320: else
renatofilho@320: uri->user = g_string_new_len (value+currIdx, atIdx - currIdx);
renatofilho@320: currIdx += atIdx + 1;
renatofilho@320: }
renatofilho@320:
renatofilho@320: /*** Host (Port) ****/
renatofilho@320: shashIdx = gmyth_strstr( value+currIdx, GMYTH_URI_SLASH_DELIM );
renatofilho@320: if (0 < shashIdx)
renatofilho@320: uri->host = g_string_new_len (value+currIdx, shashIdx);
renatofilho@320: else if ( gmyth_uri_isabsolute(uri) == TRUE )
renatofilho@320: uri->host = g_string_new_len (value+currIdx, strlen (value) - currIdx);
renatofilho@320:
renatofilho@320: host = gmyth_uri_get_host(uri);
renatofilho@320: colonIdx = gmyth_strrchr (host, GMYTH_URI_COLON_DELIM, 1);
renatofilho@320: eblacketIdx = gmyth_strrchr (host, GMYTH_URI_EBLACET_DELIM, 1);
renatofilho@320: if ( ( 0 < colonIdx ) && ( eblacketIdx < colonIdx ) ) {
renatofilho@320: GString *portStr = NULL;
renatofilho@320: GString *hostStr = g_string_new (host != NULL ? host : "");
renatofilho@320:
renatofilho@320: hostLen = hostStr->len;
renatofilho@320: /**** host ****/
renatofilho@320: uri->host = g_string_erase (uri->host, 0, hostLen);
renatofilho@320: uri->host = g_string_insert_len (uri->host, 0, hostStr->str, colonIdx);
renatofilho@320: if (0 < hostLen) {
renatofilho@320: if (host[0] == '[' && host[hostLen-1] == ']')
renatofilho@320: uri->host = g_string_new_len (hostStr->str+1, colonIdx-2);
renatofilho@320: }
renatofilho@320: /**** port ****/
renatofilho@320: portStr = g_string_new_len (hostStr->str+colonIdx+1, hostLen-colonIdx-1);
renatofilho@320: uri->port = (gint)g_ascii_strtoull( portStr->str, NULL, 10 );
renatofilho@320: g_string_free (portStr, TRUE);
renatofilho@320: g_string_free (hostStr, TRUE);
renatofilho@320: }
renatofilho@320: else {
renatofilho@320: const gchar* protocol = gmyth_uri_get_protocol(uri);
renatofilho@320: uri->port = GMYTH_URI_KNKOWN_PORT;
renatofilho@320: if ( strcmp(protocol, GMYTH_URI_PROTOCOL_HTTP) == 0 )
renatofilho@320: uri->port = GMYTH_URI_DEFAULT_HTTP_PORT;
renatofilho@320: if ( strcmp(protocol, GMYTH_URI_PROTOCOL_FTP) == 0 )
renatofilho@320: uri->port = GMYTH_URI_DEFAULT_FTP_PORT;
renatofilho@320: }
renatofilho@320:
renatofilho@320: if (shashIdx > 0) currIdx += shashIdx;
renatofilho@320:
renatofilho@320: /*
renatofilho@320: Handle relative URL
renatofilho@320: */
renatofilho@320: if (gmyth_uri_isabsolute(uri) == FALSE)
renatofilho@320: {
renatofilho@320:
renatofilho@320: if (shashIdx != 0)
renatofilho@320: {
renatofilho@320: /* Add slash delimiter at the beginning of the URL,
renatofilho@320: if it doesn't exist
renatofilho@320: */
renatofilho@320: uri->path = g_string_new( GMYTH_URI_SLASH_DELIM );
renatofilho@320: }
renatofilho@320: uri->path = g_string_append( uri->path, value );
renatofilho@320:
renatofilho@320: } else {
renatofilho@320: /* First set path simply to the rest of URI */
renatofilho@320: uri->path = g_string_new_len (value+currIdx, uriLen-currIdx );
renatofilho@320: }
renatofilho@320:
renatofilho@320: gmyth_debug( "uri value: %s", value );
renatofilho@320: uri->query = g_string_new ( g_strstr_len( value, strlen(value), GMYTH_URI_E_DELIM ) );
renatofilho@320:
renatofilho@320: eIdx = gmyth_strstr( value+currIdx, GMYTH_URI_E_DELIM );
renatofilho@320:
renatofilho@320: if ( 0 < eIdx ) {
renatofilho@320: uri->query = g_string_new ( g_strstr_len( value, strlen(value), GMYTH_URI_E_DELIM ) );
renatofilho@320: gmyth_debug( "query = %s", uri->query->str );
renatofilho@320: }
renatofilho@320:
renatofilho@320: /**** Path (Query/Fragment) ****/
renatofilho@320: sharpIdx = gmyth_strstr(value+currIdx, GMYTH_URI_SHARP_DELIM);
renatofilho@320: if (0 < sharpIdx) {
renatofilho@320: uri->path = g_string_append_len( uri->path, value+currIdx, sharpIdx);
renatofilho@320: uri->fragment = g_string_new_len (value+currIdx+sharpIdx+1, uriLen-(currIdx+sharpIdx+1));
renatofilho@320: }
renatofilho@320:
renatofilho@320: gmyth_debug( "[%s] GMythURI: host = %s, port = %d, path = %s, query = %s, fragment = %s, "\
renatofilho@320: "user = %s, password = %s.\n", __FUNCTION__, gmyth_uri_print_field( uri->host ), uri->port,
renatofilho@320: gmyth_uri_print_field( uri->path ), gmyth_uri_print_field( uri->query ), gmyth_uri_print_field( uri->fragment ),
renatofilho@320: gmyth_uri_print_field ( uri->user ), gmyth_uri_print_field( uri->password ) );
renatofilho@320:
renatofilho@320: }
renatofilho@320:
renatofilho@320: gboolean
renatofilho@320: gmyth_uri_is_equals( GMythURI* uri1, GMythURI* uri2 )
renatofilho@320: {
renatofilho@320: return ( g_ascii_strcasecmp( gmyth_uri_get_host( uri1 ), gmyth_uri_get_host( uri2 ) ) == 0 &&
renatofilho@320: gmyth_uri_get_port( uri1 ) == gmyth_uri_get_port( uri2 ) );
renatofilho@320: }
renatofilho@320:
renatofilho@320: gboolean
renatofilho@320: gmyth_uri_is_livetv( GMythURI* uri )
renatofilho@320: {
renatofilho@320: gboolean ret = FALSE;
renatofilho@320:
renatofilho@320: g_return_val_if_fail( uri != NULL && uri->uri != NULL && uri->uri->str != NULL, FALSE );
renatofilho@320:
renatofilho@320: ret = ( g_strstr_len( uri->uri->str, strlen( uri->uri->str ), "/?" ) != NULL );
renatofilho@320:
renatofilho@320: if ( ret )
renatofilho@320: gmyth_debug( "This URI is a LiveTV recording..." );
renatofilho@320:
renatofilho@320: return ret;
renatofilho@320:
renatofilho@320: }
renatofilho@320:
renatofilho@320: gchar*
renatofilho@320: gmyth_uri_get_channel_name( GMythURI* uri )
renatofilho@320: {
renatofilho@320: gchar* channel = NULL;
renatofilho@320:
renatofilho@320: g_return_val_if_fail( uri != NULL && uri->uri != NULL && uri->uri->str != NULL, FALSE );
renatofilho@320:
renatofilho@320: gchar *channel_query = g_strstr_len( gmyth_uri_get_query( uri ), strlen( gmyth_uri_get_query( uri ) ), "channel" );
renatofilho@320:
renatofilho@320: if ( channel_query != NULL )
renatofilho@320: {
renatofilho@320: gmyth_debug( "TV Channel is in the following URI segment: %s", channel_query );
renatofilho@320:
renatofilho@320: gchar **chan_key_value = g_strsplit( gmyth_uri_get_query( uri ), "=", 2 );
renatofilho@320:
renatofilho@320: /* gmyth_debug( "Channel tuple is [ %s, %s ]", chan_key_value[0], chan_key_value[1] ); */
renatofilho@320:
renatofilho@320: if ( chan_key_value[1] != NULL )
renatofilho@320: {
renatofilho@320: channel = g_strdup( chan_key_value[1] );
renatofilho@320: }
renatofilho@320:
renatofilho@320: if ( chan_key_value != NULL )
renatofilho@320: g_strfreev( chan_key_value );
renatofilho@320: }
renatofilho@320:
renatofilho@320: gmyth_debug( "Got channel decimal value from the URI: %s", channel );
renatofilho@320:
renatofilho@320: return channel;
renatofilho@320:
renatofilho@320: }
renatofilho@320:
renatofilho@320: gint
renatofilho@320: gmyth_uri_get_channel_num( GMythURI* uri )
renatofilho@320: {
renatofilho@320: gchar *channel_name = gmyth_uri_get_channel_name( uri );
renatofilho@320:
renatofilho@320: if ( channel_name != NULL )
renatofilho@320: {
renatofilho@320: return g_ascii_strtoull( channel_name, NULL, 10 );
renatofilho@320: }
renatofilho@320:
renatofilho@320: return -1;
renatofilho@320:
renatofilho@320: }