gmyth-upnp/src/gmyth_upnp.c
author rosfran
Wed May 23 21:49:19 2007 +0100 (2007-05-23)
branchtrunk
changeset 704 5b6a77d85cf7
parent 700 9ade4c5e5db8
child 706 5cc97240e238
permissions -rw-r--r--
[svn r710] Fixed verification of the MythTV UPnP service.
melunko@250
     1
/**
melunko@250
     2
 * GMyth Library
melunko@250
     3
 *
melunko@250
     4
 * @file gmyth/gmyth_upnp.c
melunko@250
     5
 * 
melunko@250
     6
 * @brief <p> GMythUPnP allows that a MythTV frontend discovers a 
melunko@250
     7
 * MythTV backend, using the UPnP architecture.
melunko@250
     8
 *
melunko@250
     9
 * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
melunko@250
    10
 * @author Rosfran Lins Borges <rosfran.borges@indt.org.br>
melunko@250
    11
 *
melunko@250
    12
 *//*
melunko@250
    13
 * 
melunko@250
    14
 * This program is free software; you can redistribute it and/or modify
melunko@250
    15
 * it under the terms of the GNU Lesser General Public License as published by
melunko@250
    16
 * the Free Software Foundation; either version 2 of the License, or
melunko@250
    17
 * (at your option) any later version.
melunko@250
    18
 *
melunko@250
    19
 * This program is distributed in the hope that it will be useful,
melunko@250
    20
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
melunko@250
    21
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
melunko@250
    22
 * GNU General Public License for more details.
melunko@250
    23
 *
melunko@250
    24
 * You should have received a copy of the GNU Lesser General Public License
melunko@250
    25
 * along with this program; if not, write to the Free Software
melunko@250
    26
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
melunko@250
    27
 *   
melunko@250
    28
 */
melunko@250
    29
melunko@250
    30
#ifdef HAVE_CONFIG_H
melunko@250
    31
#include "config.h"
melunko@250
    32
#endif
melunko@250
    33
melunko@250
    34
#include "gmyth_upnp.h"
rosfran@696
    35
#include "gmyth_upnp_marshal.h"
melunko@250
    36
melunko@250
    37
#include <arpa/inet.h>
melunko@250
    38
#include <sys/types.h>
melunko@250
    39
#include <sys/socket.h>
melunko@250
    40
#include <netdb.h>
melunko@250
    41
#include <errno.h>
melunko@250
    42
#include <stdlib.h>
melunko@250
    43
rosfran@260
    44
#include <gmyth/gmyth_backendinfo.h>
rosfran@260
    45
#include <gmyth/gmyth_socket.h>
rosfran@260
    46
#include <gmyth/gmyth_uri.h>
rosfran@260
    47
#include <gmyth/gmyth_debug.h>
melunko@250
    48
rosfran@696
    49
/* Maximum number of searches in the synchronized search */
melunko@250
    50
#define GMYTH_UPNP_MAX_SEARCHS		10
melunko@250
    51
rosfran@696
    52
#define GMYTH_UPNP_GET_PRIVATE(obj) \
rosfran@696
    53
    (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GMYTH_UPNP_TYPE, GMythUPnPPrivate))
rosfran@696
    54
rosfran@696
    55
struct _GMythUPnPPrivate {
rosfran@696
    56
	GHashTable *mythtv_servers;
rosfran@696
    57
	GMythUPnPDeviceStatus last_status;
rosfran@696
    58
	gboolean upnp_dev_found;
rosfran@696
    59
	gchar *udn;
rosfran@696
    60
	GMutex *mutex;
rosfran@696
    61
};
rosfran@696
    62
melunko@250
    63
static void gmyth_upnp_class_init          (GMythUPnPClass *klass);
melunko@250
    64
static void gmyth_upnp_init                (GMythUPnP *object);
melunko@250
    65
melunko@250
    66
static void gmyth_upnp_dispose  (GObject *object);
melunko@250
    67
static void gmyth_upnp_finalize (GObject *object);
melunko@250
    68
rosfran@700
    69
static void _mythtv_device_found ( GMythUPnP *gmyth_upnp, GMythUPnPDeviceStatus status, gchar *dev );
rosfran@696
    70
static void _clinkc_mythtv_device_found ( gchar *udn, GMythUPnPDeviceStatus status );
melunko@250
    71
rosfran@696
    72
static gboolean gmyth_upnp_initialize ( GMythUPnP *gmyth_upnp, GMythBackendInfo *gmyth_backend_info,
rosfran@696
    73
		GMythUPnPDeviceListener listener);
rosfran@696
    74
rosfran@696
    75
static gboolean gmyth_upnp_got_mythtv_service( CgUpnpControlPoint* controlPt, gchar **udn, 
rosfran@696
    76
						GHashTable **mythtv_servers_lst );
melunko@250
    77
melunko@250
    78
G_DEFINE_TYPE(GMythUPnP, gmyth_upnp, G_TYPE_OBJECT)
melunko@250
    79
rosfran@696
    80
static GMythUPnP *gmyth_upnp_static = NULL;
melunko@250
    81
melunko@250
    82
static void
melunko@250
    83
gmyth_upnp_class_init (GMythUPnPClass *klass)
melunko@250
    84
{
melunko@250
    85
	GObjectClass *gobject_class;
rosfran@696
    86
	GMythUPnPClass *gupnp_class;
melunko@250
    87
melunko@250
    88
	gobject_class = (GObjectClass *) klass;
rosfran@696
    89
	gupnp_class = (GMythUPnPClass*) gobject_class;
melunko@250
    90
melunko@250
    91
	gobject_class->dispose  = gmyth_upnp_dispose;
rosfran@696
    92
	gobject_class->finalize = gmyth_upnp_finalize;
rosfran@696
    93
	
rosfran@696
    94
	g_type_class_add_private( gobject_class, sizeof( GMythUPnPPrivate ) );
rosfran@696
    95
rosfran@696
    96
	gupnp_class->device_found_handler = _mythtv_device_found;
rosfran@696
    97
rosfran@696
    98
	gupnp_class->device_found_handler_signal_id =
rosfran@696
    99
		g_signal_new ("device-found",
rosfran@696
   100
				G_TYPE_FROM_CLASS (gupnp_class),
rosfran@696
   101
				G_SIGNAL_RUN_LAST | G_SIGNAL_NO_RECURSE |
rosfran@696
   102
				G_SIGNAL_NO_HOOKS, 0, NULL, NULL,
rosfran@696
   103
				gmyth_upnp_marshal_VOID__INT_STRING, G_TYPE_NONE, 2,
rosfran@696
   104
				G_TYPE_INT, G_TYPE_STRING);
rosfran@696
   105
melunko@250
   106
}
melunko@250
   107
melunko@250
   108
static void
melunko@250
   109
gmyth_upnp_init ( GMythUPnP *gmyth_upnp )
melunko@250
   110
{
rosfran@696
   111
rosfran@696
   112
	gmyth_upnp->backend_info = NULL;
rosfran@696
   113
melunko@250
   114
	gmyth_upnp->control_point = NULL;
rosfran@696
   115
rosfran@696
   116
	gmyth_upnp->priv = GMYTH_UPNP_GET_PRIVATE(gmyth_upnp);
rosfran@696
   117
	gmyth_upnp->priv->mutex = g_mutex_new ();
rosfran@696
   118
	gmyth_upnp->priv->upnp_dev_found = FALSE;
rosfran@696
   119
rosfran@696
   120
	g_signal_connect (G_OBJECT (gmyth_upnp), "device-found",
rosfran@696
   121
			(GCallback) (GMYTH_UPNP_GET_CLASS (gmyth_upnp)->
rosfran@696
   122
				device_found_handler), NULL);
rosfran@696
   123
rosfran@696
   124
	gmyth_upnp_static = gmyth_upnp;
rosfran@696
   125
melunko@250
   126
}
melunko@250
   127
melunko@250
   128
/** Creates a new instance of GMythUPnP.
melunko@250
   129
 * 
melunko@250
   130
 * @return a new instance of GMythUPnP. 
melunko@250
   131
 */
melunko@250
   132
GMythUPnP *
rosfran@696
   133
gmyth_upnp_new ( GMythBackendInfo *gmyth_backend_info, GMythUPnPDeviceListener handler ) 
melunko@250
   134
{
melunko@250
   135
    GMythUPnP *gmyth_upnp = GMYTH_UPNP (g_object_new (GMYTH_UPNP_TYPE, NULL));
melunko@250
   136
    
rosfran@696
   137
    g_object_ref( gmyth_backend_info );
rosfran@696
   138
rosfran@696
   139
    gmyth_upnp->backend_info = gmyth_backend_info;
rosfran@696
   140
rosfran@696
   141
    if ( !gmyth_upnp_initialize ( gmyth_upnp, gmyth_backend_info, handler ) )
rosfran@696
   142
    {
rosfran@696
   143
    	gmyth_debug( "Error initializing the GMythUPnP!!!" );
rosfran@696
   144
    }
melunko@250
   145
    
melunko@250
   146
    return gmyth_upnp;
melunko@250
   147
}
melunko@250
   148
melunko@250
   149
static void
melunko@250
   150
gmyth_upnp_dispose  (GObject *object)
melunko@250
   151
{
melunko@250
   152
	GMythUPnP *gmyth_upnp = GMYTH_UPNP(object);
melunko@250
   153
melunko@250
   154
	if ( gmyth_upnp->control_point != NULL ) {
melunko@250
   155
		cg_upnp_controlpoint_stop( gmyth_upnp->control_point );
melunko@250
   156
		cg_upnp_controlpoint_delete( gmyth_upnp->control_point );
melunko@250
   157
		gmyth_upnp->control_point = NULL;
melunko@250
   158
	}
rosfran@696
   159
	
rosfran@696
   160
	if ( gmyth_upnp->priv->mythtv_servers != NULL )	{
rosfran@696
   161
		g_hash_table_destroy( gmyth_upnp->priv->mythtv_servers );
rosfran@696
   162
		gmyth_upnp->priv->mythtv_servers = NULL;
rosfran@696
   163
	}
melunko@250
   164
rosfran@696
   165
	if ( gmyth_upnp->backend_info != NULL )	{
rosfran@696
   166
		g_object_unref( gmyth_upnp->backend_info );
rosfran@696
   167
		gmyth_upnp->backend_info = NULL;
melunko@250
   168
	}
rosfran@696
   169
melunko@250
   170
	G_OBJECT_CLASS (gmyth_upnp_parent_class)->dispose (object);
melunko@250
   171
}
melunko@250
   172
melunko@250
   173
static void
melunko@250
   174
gmyth_upnp_finalize (GObject *object)
melunko@250
   175
{
melunko@250
   176
	g_signal_handlers_destroy (object);
melunko@250
   177
melunko@250
   178
	G_OBJECT_CLASS (gmyth_upnp_parent_class)->finalize (object);
melunko@250
   179
}
melunko@250
   180
melunko@250
   181
/**
rosfran@696
   182
 * GObject's signal handler
rosfran@696
   183
 */ 
rosfran@696
   184
static void
rosfran@700
   185
_mythtv_device_found( GMythUPnP *gmyth_upnp, GMythUPnPDeviceStatus status, gchar* udn )
rosfran@696
   186
{
rosfran@696
   187
	g_debug( "status = %d, UDN = %s\n", status, udn );
rosfran@696
   188
}
rosfran@696
   189
rosfran@696
   190
/**
rosfran@696
   191
 * GObject's signal handler
rosfran@696
   192
 */
rosfran@696
   193
static void 
rosfran@696
   194
_clinkc_mythtv_device_found ( gchar *udn, GMythUPnPDeviceStatus status )
rosfran@696
   195
{
rosfran@699
   196
	if ( gmyth_upnp_static != NULL && udn != NULL )
rosfran@696
   197
		g_signal_emit ( gmyth_upnp_static, 
rosfran@696
   198
			GMYTH_UPNP_GET_CLASS (gmyth_upnp_static)->device_found_handler_signal_id, 0, /* details */
rosfran@696
   199
			status, udn );
rosfran@696
   200
}
rosfran@696
   201
rosfran@696
   202
/**
melunko@250
   203
 * Create a control point and start it.
melunko@250
   204
 */
melunko@250
   205
static gboolean
rosfran@696
   206
gmyth_upnp_initialize ( GMythUPnP *gmyth_upnp, GMythBackendInfo *gmyth_backend_info, 
rosfran@696
   207
	GMythUPnPDeviceListener device_found_handler )
melunko@250
   208
{
rosfran@696
   209
	gboolean ret = TRUE;
rosfran@696
   210
melunko@250
   211
	g_return_val_if_fail( gmyth_backend_info != NULL, FALSE );
rosfran@696
   212
melunko@250
   213
	/* Create the cybergarage control point */
melunko@250
   214
	gmyth_upnp->control_point = cg_upnp_controlpoint_new();
rosfran@696
   215
rosfran@696
   216
	if ( device_found_handler != NULL )
rosfran@696
   217
	{
rosfran@696
   218
		GMYTH_UPNP_GET_CLASS(gmyth_upnp)->device_found_handler = device_found_handler; 
rosfran@696
   219
rosfran@696
   220
		cg_upnp_controlpoint_setdevicelistener( gmyth_upnp->control_point, _clinkc_mythtv_device_found );
rosfran@696
   221
	}
rosfran@696
   222
melunko@250
   223
	/* Start the control point */
rosfran@696
   224
	if ( cg_upnp_controlpoint_start( gmyth_upnp->control_point ) == FALSE)
melunko@250
   225
	{
rosfran@696
   226
		gmyth_debug( "Unable to start UPnP control point!!!" );
rosfran@696
   227
		ret = FALSE;
rosfran@696
   228
		goto done;
rosfran@696
   229
	}
melunko@250
   230
	else
melunko@250
   231
	{
rosfran@696
   232
		gmyth_debug( "Control point started." );
melunko@250
   233
	}
rosfran@696
   234
rosfran@696
   235
done:
rosfran@696
   236
rosfran@696
   237
	return ret;
rosfran@696
   238
}
rosfran@696
   239
rosfran@696
   240
static void
rosfran@696
   241
_gmyth_foreach_key_value( gchar *udn, gchar *dev, GList *upnp_servers_list )
rosfran@696
   242
{
rosfran@696
   243
	GMythUPnPDevice *gmyth_upnp = g_malloc0( sizeof( GMythUPnPDevice ) );
rosfran@696
   244
rosfran@696
   245
	GMythURI* uri = NULL;
rosfran@696
   246
	gmyth_upnp->uri = (gchar*) (dev);
rosfran@696
   247
	uri = gmyth_uri_new_with_value( gmyth_upnp->uri );
rosfran@696
   248
rosfran@696
   249
	gmyth_upnp->host = gmyth_uri_get_host( uri );
rosfran@696
   250
	gmyth_upnp->port = gmyth_uri_get_port( uri );
rosfran@696
   251
	gmyth_upnp->protocol = gmyth_uri_get_protocol( uri );
rosfran@696
   252
rosfran@696
   253
	upnp_servers_list = g_list_append( upnp_servers_list, gmyth_upnp );
rosfran@696
   254
rosfran@696
   255
	if ( uri != NULL )
rosfran@696
   256
	{
rosfran@696
   257
		g_object_unref( uri );
rosfran@696
   258
		uri = NULL;
rosfran@696
   259
	}
rosfran@696
   260
rosfran@696
   261
}
rosfran@696
   262
rosfran@696
   263
GList *
rosfran@696
   264
gmyth_upnp_do_search_sync( GMythUPnP* gmyth_upnp )
rosfran@696
   265
{
rosfran@696
   266
	GList *upnp_servers_list = NULL;
rosfran@696
   267
	guint iter_count = GMYTH_UPNP_MAX_SEARCHS;
rosfran@696
   268
	/* gmyth_upnp->priv = GMYTH_UPNP_GET_PRIVATE( gmyth_upnp ); */
rosfran@696
   269
rosfran@696
   270
	while ( gmyth_upnp->priv->upnp_dev_found == FALSE && ( --iter_count > 0 ) ) {
rosfran@696
   271
melunko@250
   272
		gmyth_debug( "UPnP MythTV Client control point is searching MythTV AV Device server...\n" );
rosfran@696
   273
melunko@250
   274
		if ( gmyth_upnp->control_point != NULL )
melunko@250
   275
			cg_upnp_controlpoint_search ( gmyth_upnp->control_point, 
rosfran@696
   276
					"urn:schemas-upnp-org:service:ContentDirectory:1" );
melunko@250
   277
melunko@250
   278
		/* just to avoid clinkc pthread concurrency faults */
melunko@250
   279
		cg_wait( 1000 );
rosfran@696
   280
melunko@250
   281
		/* discover if it was found */
rosfran@696
   282
		gmyth_upnp->priv->upnp_dev_found = gmyth_upnp_got_mythtv_service( gmyth_upnp->control_point, &gmyth_upnp->priv->udn,
rosfran@696
   283
				&gmyth_upnp->priv->mythtv_servers );
rosfran@696
   284
rosfran@696
   285
	} /* while */
rosfran@696
   286
rosfran@696
   287
	if ( gmyth_upnp->priv->upnp_dev_found ) {
rosfran@696
   288
melunko@250
   289
		gmyth_debug( "Found UPnP MythTV AV Device...\n" );
melunko@250
   290
rosfran@696
   291
		g_hash_table_foreach( gmyth_upnp->priv->mythtv_servers, (GHFunc)_gmyth_foreach_key_value, upnp_servers_list );
melunko@250
   292
rosfran@696
   293
	} /* if - found UPnP device  */
melunko@250
   294
rosfran@696
   295
	return upnp_servers_list;
melunko@250
   296
}
melunko@250
   297
melunko@250
   298
/** 
rosfran@696
   299
 * Checks if got the MythTV service in the Control Point's device list.
melunko@250
   300
 */
melunko@250
   301
static gboolean
rosfran@696
   302
gmyth_upnp_got_mythtv_service( CgUpnpControlPoint* controlPt, gchar **udn, 
rosfran@696
   303
	GHashTable **mythtv_servers_lst )
melunko@250
   304
{
melunko@250
   305
	
melunko@250
   306
	g_return_val_if_fail( mythtv_servers_lst != NULL, FALSE );	
melunko@250
   307
	g_return_val_if_fail( controlPt != NULL, FALSE );
rosfran@696
   308
rosfran@696
   309
	*mythtv_servers_lst = g_hash_table_new( g_str_hash, g_str_equal );
melunko@250
   310
	
rosfran@699
   311
	const gchar* mythtvFriendlyName = "Myth";
melunko@250
   312
	/* begin assertion about the size of discovered devices */
melunko@250
   313
	gint numDevices = cg_upnp_controlpoint_getndevices(controlPt);
melunko@250
   314
	gint cntDevs = 0;	
melunko@250
   315
	CgUpnpDevice *childDev;
melunko@250
   316
	gchar *devName = NULL, *dev_url = NULL;
melunko@250
   317
	gboolean upnp_dev_found = FALSE;
melunko@250
   318
	
melunko@250
   319
	gmyth_debug( "UPnP MythTV AV Device list size = %d\n", numDevices );
melunko@250
   320
	
melunko@250
   321
	for ( childDev = cg_upnp_controlpoint_getdevices(controlPt); childDev != NULL; 
melunko@250
   322
			childDev = cg_upnp_device_next(childDev) ) {
melunko@250
   323
		devName = cg_upnp_device_getfriendlyname(childDev);
melunko@250
   324
		dev_url = cg_upnp_device_getlocationfromssdppacket( childDev );
melunko@250
   325
		gmyth_debug( "Device's friendly name = %s, and  device's URL = %s\n", devName, dev_url );
rosfran@704
   326
		if ( ( g_strstr_len( devName, strlen( devName ), mythtvFriendlyName ) != NULL ) == TRUE ) 
melunko@250
   327
		{
rosfran@704
   328
			upnp_dev_found = TRUE;
rosfran@696
   329
			/* stores the last UDN number ID */
melunko@250
   330
			*udn = cg_upnp_device_getudn( childDev );
rosfran@696
   331
			/* *mythtv_servers_lst = g_list_append( *mythtv_servers_lst, dev_url );  */
rosfran@696
   332
			g_hash_table_insert( *mythtv_servers_lst, (gpointer)*udn, (gpointer)dev_url );
melunko@250
   333
		}
melunko@250
   334
		++cntDevs;
melunko@250
   335
	}
melunko@250
   336
	
melunko@250
   337
	if ( upnp_dev_found == TRUE ) {
melunko@250
   338
		gmyth_debug( "MythTV AV Device found, from a total of %d devices.\n", cntDevs );
melunko@250
   339
	} else if ( numDevices == cntDevs ) {
melunko@250
   340
		gmyth_debug( "MythTV AV Device not found, from a total of %d devices.\n", cntDevs );
melunko@250
   341
	} else {
melunko@250
   342
		gmyth_debug( "Control Point's MythTV AV Device count is wrong: iterated over %d devices, but there are %d registered devices.\n", cntDevs, numDevices );
melunko@250
   343
	}
melunko@250
   344
	
melunko@250
   345
	return upnp_dev_found;
melunko@250
   346
melunko@250
   347
}
melunko@250
   348
melunko@250
   349
/** Gets the UPnP AV devices server's list associated to this upnp.
melunko@250
   350
 * 
rosfran@696
   351
 * @return The GHashTable* containing all the URI values for each recognized UPnP device,
melunko@250
   352
 * 			or NULL if it couldn't recognize any MythTV AV device.
melunko@250
   353
 */
rosfran@696
   354
GHashTable*
melunko@250
   355
gmyth_upnp_get_servers ( GMythUPnP *gmyth_upnp )
melunko@250
   356
{
melunko@250
   357
	
rosfran@696
   358
	if ( NULL == gmyth_upnp || NULL == gmyth_upnp->priv->mythtv_servers ) 
melunko@250
   359
	{
melunko@250
   360
		gmyth_debug ("[%s] GMythUPnP has no MythTV servers recognized.\n", __FUNCTION__);
melunko@250
   361
		return NULL;
melunko@250
   362
	}
melunko@250
   363
rosfran@696
   364
	return gmyth_upnp->priv->mythtv_servers;
melunko@250
   365
}
melunko@250
   366
melunko@250
   367
/** Gets the GMythBackendInfo object associated to this upnp.
melunko@250
   368
 * 
melunko@250
   369
 * @return The GMythBackendInfo object currently valid or NULL if the settings
melunko@250
   370
 * were not opened.
melunko@250
   371
 */
melunko@250
   372
GMythBackendInfo*
melunko@250
   373
gmyth_upnp_get_backend_info ( GMythUPnP *gmyth_upnp )
melunko@250
   374
{
melunko@250
   375
	
rosfran@696
   376
	if ( NULL == gmyth_upnp || NULL == gmyth_upnp->backend_info ) 
melunko@250
   377
	{
melunko@250
   378
		gmyth_debug ("[%s] GMythUPnP not initialized\n", __FUNCTION__);
melunko@250
   379
		return NULL;
melunko@250
   380
	}
melunko@250
   381
rosfran@696
   382
	return gmyth_upnp->backend_info;
melunko@250
   383
}
melunko@250
   384