branches/gmyth-0.1b/src/gmyth_uri.h
author rosfran
Fri Feb 02 22:04:00 2007 +0000 (2007-02-02)
branchtrunk
changeset 322 eb6b0b1409b5
permissions -rwxr-xr-x
[svn r324] Added function to request how many recorders are available.
renatofilho@320
     1
/**
renatofilho@320
     2
 * GMyth Library
renatofilho@320
     3
 *
renatofilho@320
     4
 * @file gmyth/gmyth_uri.h
renatofilho@320
     5
 * 
renatofilho@320
     6
 * @brief <p> GMythURI utils
renatofilho@320
     7
 *  - Extracts and parses a URI char string, in according with the RFC 2396 
renatofilho@320
     8
 *    [http://www.ietf.org/rfc/rfc2396.txt]
renatofilho@320
     9
 * 
renatofilho@320
    10
 * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
renatofilho@320
    11
 * @author Rosfran Borges <rosfran.borges@indt.org.br>
renatofilho@320
    12
 *
renatofilho@320
    13
 *//*
renatofilho@320
    14
 * 
renatofilho@320
    15
 * This program is free software; you can redistribute it and/or modify
renatofilho@320
    16
 * it under the terms of the GNU Lesser General Public License as published by
renatofilho@320
    17
 * the Free Software Foundation; either version 2 of the License, or
renatofilho@320
    18
 * (at your option) any later version.
renatofilho@320
    19
 *
renatofilho@320
    20
 * This program is distributed in the hope that it will be useful,
renatofilho@320
    21
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
renatofilho@320
    22
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
renatofilho@320
    23
 * GNU General Public License for more details.
renatofilho@320
    24
 *
renatofilho@320
    25
 * You should have received a copy of the GNU Lesser General Public License
renatofilho@320
    26
 * along with this program; if not, write to the Free Software
renatofilho@320
    27
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
renatofilho@320
    28
 */
renatofilho@320
    29
renatofilho@320
    30
#ifndef _GMYTH_URI_H_
renatofilho@320
    31
#define _GMYTH_URI_H_
renatofilho@320
    32
renatofilho@320
    33
#include <glib.h>
renatofilho@320
    34
#include <glib-object.h>
renatofilho@320
    35
renatofilho@320
    36
#include <stdlib.h>
renatofilho@320
    37
#include <stdio.h>
renatofilho@320
    38
#include <string.h>
renatofilho@320
    39
renatofilho@320
    40
G_BEGIN_DECLS
renatofilho@320
    41
renatofilho@320
    42
#define GMYTH_URI_TYPE               (gmyth_uri_get_type ())
renatofilho@320
    43
#define GMYTH_URI(obj)          		 (G_TYPE_CHECK_INSTANCE_CAST ((obj), GMYTH_URI_TYPE, GMythURI))
renatofilho@320
    44
#define GMYTH_URI_CLASS(klass)       (G_TYPE_CHECK_CLASS_CAST ((klass), GMYTH_URI_TYPE, GMythURIClass))
renatofilho@320
    45
#define IS_GMYTH_URI(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GMYTH_URI_TYPE))
renatofilho@320
    46
#define IS_GMYTH_URI_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GMYTH_URI_TYPE))
renatofilho@320
    47
#define GMYTH_URI_GET_CLASS(obj)     (G_TYPE_INSTANCE_GET_CLASS ((obj), GMYTH_URI_TYPE, GMythURIClass))
renatofilho@320
    48
renatofilho@320
    49
typedef struct _GMythURI         GMythURI;
renatofilho@320
    50
typedef struct _GMythURIClass    GMythURIClass;
renatofilho@320
    51
renatofilho@320
    52
/****************************************
renatofilho@320
    53
* Define
renatofilho@320
    54
****************************************/
renatofilho@320
    55
renatofilho@320
    56
#define GMYTH_URI_KNKOWN_PORT 				(-1)
renatofilho@320
    57
#define GMYTH_URI_DEFAULT_HTTP_PORT 	80
renatofilho@320
    58
#define GMYTH_URI_DEFAULT_FTP_PORT 		21
renatofilho@320
    59
#define GMYTH_URI_DEFAULT_PATH 				"/"
renatofilho@320
    60
#define GMYTH_URI_MAXLEN 							256
renatofilho@320
    61
renatofilho@320
    62
#define GMYTH_URI_PROTOCOL_DELIM 			"://"
renatofilho@320
    63
#define GMYTH_URI_USER_DELIM 					"@"
renatofilho@320
    64
#define GMYTH_URI_COLON_DELIM 				":"
renatofilho@320
    65
#define GMYTH_URI_SLASH_DELIM 				"/"
renatofilho@320
    66
#define GMYTH_URI_SBLACET_DELIM 			"["
renatofilho@320
    67
#define GMYTH_URI_EBLACET_DELIM 			"]"
renatofilho@320
    68
#define GMYTH_URI_SHARP_DELIM 				"#"
renatofilho@320
    69
#define GMYTH_URI_QUESTION_DELIM 			"?"
renatofilho@320
    70
#define GMYTH_URI_E_DELIM 						"&"
renatofilho@320
    71
#define GMYTH_URI_ESCAPING_CHAR 			"%"
renatofilho@320
    72
renatofilho@320
    73
#define GMYTH_URI_PROTOCOL_MYTH 			"myth"
renatofilho@320
    74
#define GMYTH_URI_PROTOCOL_HTTP 			"http"
renatofilho@320
    75
#define GMYTH_URI_PROTOCOL_FTP 				"ftp"
renatofilho@320
    76
renatofilho@320
    77
/****************************************
renatofilho@320
    78
* Data Type
renatofilho@320
    79
****************************************/
renatofilho@320
    80
renatofilho@320
    81
struct _GMythURIClass
renatofilho@320
    82
{
renatofilho@320
    83
  GObjectClass parent_class;
renatofilho@320
    84
renatofilho@320
    85
  /* callbacks */
renatofilho@320
    86
  /* no one for now */
renatofilho@320
    87
};
renatofilho@320
    88
renatofilho@320
    89
struct _GMythURI {
renatofilho@320
    90
	
renatofilho@320
    91
	GObject parent;
renatofilho@320
    92
	
renatofilho@320
    93
	GString *uri;
renatofilho@320
    94
	GString *host;
renatofilho@320
    95
	gint port;
renatofilho@320
    96
	GString *protocol;
renatofilho@320
    97
	GString *path;
renatofilho@320
    98
	GString *fragment;
renatofilho@320
    99
	GString *user;
renatofilho@320
   100
	GString *password;
renatofilho@320
   101
	GString *query;
renatofilho@320
   102
	
renatofilho@320
   103
};
renatofilho@320
   104
renatofilho@320
   105
GType       gmyth_uri_get_type (void);
renatofilho@320
   106
GMythURI*   gmyth_uri_new (void);
renatofilho@320
   107
GMythURI*   gmyth_uri_new_with_value (const gchar *value);
renatofilho@320
   108
gboolean 		gmyth_uri_is_equals ( GMythURI* uri1, GMythURI* uri2 );
renatofilho@320
   109
gboolean		gmyth_uri_is_livetv ( GMythURI* uri );
renatofilho@320
   110
gint				gmyth_uri_get_channel_num( GMythURI* uri );
renatofilho@320
   111
gchar*			gmyth_uri_get_channel_name( GMythURI* uri );
renatofilho@320
   112
renatofilho@320
   113
renatofilho@320
   114
#define 		gmyth_uri_get_host(urip) 			( urip->host != NULL ? urip->host->str : "" )
renatofilho@320
   115
#define 		gmyth_uri_get_port(urip) 			( urip->port )
renatofilho@320
   116
#define 		gmyth_uri_get_protocol(urip) 	( urip->protocol != NULL ? urip->protocol->str : "" )
renatofilho@320
   117
#define 		gmyth_uri_get_path(urip) 			( urip->path != NULL ? urip->path->str : "" )
renatofilho@320
   118
#define 		gmyth_uri_get_user(urip) 			( urip->user != NULL ? urip->user->str : "" )
renatofilho@320
   119
#define    	gmyth_uri_get_password(urip) 	( urip->password != NULL ? urip->password->str : "" )
renatofilho@320
   120
#define 		gmyth_uri_get_fragment(urip) 	( urip->fragment != NULL ? urip->fragment->str : "" )
renatofilho@320
   121
#define 		gmyth_uri_get_query(urip) 		( urip->query != NULL ? urip->query->str : "" )
renatofilho@320
   122
renatofilho@320
   123
G_END_DECLS
renatofilho@320
   124
renatofilho@320
   125
#endif /* _GMYTH_URI_H_ */