You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
506 lines
18 KiB
506 lines
18 KiB
/*****************************************************************************
|
|
* media_discoverer.c: libvlc new API media discoverer functions
|
|
*****************************************************************************
|
|
* Copyright (C) 2007 VLC authors and VideoLAN
|
|
* $Id$
|
|
*
|
|
* Authors: Pierre d'Herbemont <pdherbemont # videolan.org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation; either version 2.1 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
|
|
*****************************************************************************/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
|
|
#include <assert.h>
|
|
|
|
#include <vlc/libvlc.h>
|
|
#include <vlc/libvlc_media.h>
|
|
#include <vlc/libvlc_media_list.h>
|
|
#include <vlc/libvlc_media_discoverer.h>
|
|
#include <vlc/libvlc_events.h>
|
|
|
|
#include <vlc_services_discovery.h>
|
|
|
|
#include "libvlc_internal.h"
|
|
#include "media_internal.h" // libvlc_media_new_from_input_item()
|
|
#include "media_list_internal.h" // libvlc_media_list_internal_add_media()
|
|
|
|
struct libvlc_media_discoverer_t
|
|
{
|
|
libvlc_event_manager_t * p_event_manager;
|
|
libvlc_instance_t * p_libvlc_instance;
|
|
services_discovery_t * p_sd;
|
|
libvlc_media_list_t * p_mlist;
|
|
bool running;
|
|
vlc_dictionary_t catname_to_submedialist;
|
|
};
|
|
|
|
/*
|
|
* Private functions
|
|
*/
|
|
|
|
/**************************************************************************
|
|
* services_discovery_item_added (Private) (VLC event callback)
|
|
**************************************************************************/
|
|
|
|
static void services_discovery_item_added( const vlc_event_t * p_event,
|
|
void * user_data )
|
|
{
|
|
input_item_t * p_item = p_event->u.services_discovery_item_added.p_new_item;
|
|
const char * psz_cat = p_event->u.services_discovery_item_added.psz_category;
|
|
libvlc_media_t * p_md;
|
|
libvlc_media_discoverer_t * p_mdis = user_data;
|
|
libvlc_media_list_t * p_mlist = p_mdis->p_mlist;
|
|
|
|
p_md = libvlc_media_new_from_input_item( p_mdis->p_libvlc_instance,
|
|
p_item );
|
|
|
|
/* If we have a category, that mean we have to group the items having
|
|
* that category in a media_list. */
|
|
if( psz_cat )
|
|
{
|
|
p_mlist = vlc_dictionary_value_for_key( &p_mdis->catname_to_submedialist, psz_cat );
|
|
|
|
if( p_mlist == kVLCDictionaryNotFound )
|
|
{
|
|
libvlc_media_t * p_catmd;
|
|
p_catmd = libvlc_media_new_as_node( p_mdis->p_libvlc_instance, psz_cat );
|
|
p_mlist = libvlc_media_subitems( p_catmd );
|
|
p_mlist->b_read_only = true;
|
|
|
|
/* Insert the newly created mlist in our dictionary */
|
|
vlc_dictionary_insert( &p_mdis->catname_to_submedialist, psz_cat, p_mlist );
|
|
|
|
/* Insert the md into the root list */
|
|
libvlc_media_list_lock( p_mdis->p_mlist );
|
|
libvlc_media_list_internal_add_media( p_mdis->p_mlist, p_catmd );
|
|
libvlc_media_list_unlock( p_mdis->p_mlist );
|
|
|
|
/* We don't release the mlist cause the dictionary
|
|
* doesn't retain the object. But we release the md. */
|
|
libvlc_media_release( p_catmd );
|
|
}
|
|
}
|
|
|
|
libvlc_media_list_lock( p_mlist );
|
|
libvlc_media_list_internal_add_media( p_mlist, p_md );
|
|
libvlc_media_list_unlock( p_mlist );
|
|
|
|
libvlc_media_release( p_md );
|
|
}
|
|
|
|
/**************************************************************************
|
|
* services_discovery_item_removed (Private) (VLC event callback)
|
|
**************************************************************************/
|
|
|
|
static void services_discovery_item_removed( const vlc_event_t * p_event,
|
|
void * user_data )
|
|
{
|
|
input_item_t * p_item = p_event->u.services_discovery_item_added.p_new_item;
|
|
libvlc_media_t * p_md;
|
|
libvlc_media_discoverer_t * p_mdis = user_data;
|
|
|
|
int i, count = libvlc_media_list_count( p_mdis->p_mlist );
|
|
libvlc_media_list_lock( p_mdis->p_mlist );
|
|
for( i = 0; i < count; i++ )
|
|
{
|
|
p_md = libvlc_media_list_item_at_index( p_mdis->p_mlist, i );
|
|
if( p_md->p_input_item == p_item )
|
|
{
|
|
libvlc_media_list_internal_remove_index( p_mdis->p_mlist, i );
|
|
break;
|
|
}
|
|
}
|
|
libvlc_media_list_unlock( p_mdis->p_mlist );
|
|
}
|
|
|
|
/**************************************************************************
|
|
* services_discovery_removeall (Private) (VLC event callback)
|
|
**************************************************************************/
|
|
static void services_discovery_removeall( const vlc_event_t * p_event,
|
|
void * user_data )
|
|
{
|
|
VLC_UNUSED(p_event);
|
|
libvlc_media_discoverer_t * p_mdis = user_data;
|
|
|
|
libvlc_media_list_lock( p_mdis->p_mlist );
|
|
for( int i = 0; i < libvlc_media_list_count( p_mdis->p_mlist ); i++ )
|
|
{
|
|
libvlc_media_list_internal_remove_index( p_mdis->p_mlist, i );
|
|
}
|
|
libvlc_media_list_unlock( p_mdis->p_mlist );
|
|
}
|
|
|
|
/**************************************************************************
|
|
* services_discovery_started (Private) (VLC event callback)
|
|
**************************************************************************/
|
|
|
|
static void services_discovery_started( const vlc_event_t * p_event,
|
|
void * user_data )
|
|
{
|
|
VLC_UNUSED(p_event);
|
|
libvlc_media_discoverer_t * p_mdis = user_data;
|
|
libvlc_event_t event;
|
|
p_mdis->running = true;
|
|
event.type = libvlc_MediaDiscovererStarted;
|
|
libvlc_event_send( p_mdis->p_event_manager, &event );
|
|
}
|
|
|
|
/**************************************************************************
|
|
* services_discovery_ended (Private) (VLC event callback)
|
|
**************************************************************************/
|
|
|
|
static void services_discovery_ended( const vlc_event_t * p_event,
|
|
void * user_data )
|
|
{
|
|
VLC_UNUSED(p_event);
|
|
libvlc_media_discoverer_t * p_mdis = user_data;
|
|
libvlc_media_list_t * p_mlist = p_mdis->p_mlist;
|
|
libvlc_event_t event;
|
|
|
|
p_mdis->running = false;
|
|
|
|
libvlc_media_list_lock( p_mlist );
|
|
libvlc_media_list_internal_end_reached( p_mlist );
|
|
libvlc_media_list_unlock( p_mlist );
|
|
|
|
event.type = libvlc_MediaDiscovererEnded;
|
|
libvlc_event_send( p_mdis->p_event_manager, &event );
|
|
}
|
|
|
|
/*
|
|
* Public libvlc functions
|
|
*/
|
|
|
|
/**************************************************************************
|
|
* new (Public)
|
|
**************************************************************************/
|
|
libvlc_media_discoverer_t *
|
|
libvlc_media_discoverer_new( libvlc_instance_t * p_inst, const char * psz_name )
|
|
{
|
|
/* podcast SD is a hack and only works with custom playlist callbacks. */
|
|
if( !strncasecmp( psz_name, "podcast", 7 ) )
|
|
return NULL;
|
|
|
|
libvlc_media_discoverer_t *p_mdis = malloc(sizeof(*p_mdis));
|
|
if( unlikely(!p_mdis) )
|
|
{
|
|
libvlc_printerr( "Not enough memory" );
|
|
return NULL;
|
|
}
|
|
|
|
p_mdis->p_libvlc_instance = p_inst;
|
|
p_mdis->p_mlist = libvlc_media_list_new( p_inst );
|
|
p_mdis->p_mlist->b_read_only = true;
|
|
p_mdis->running = false;
|
|
|
|
vlc_dictionary_init( &p_mdis->catname_to_submedialist, 0 );
|
|
|
|
p_mdis->p_event_manager = libvlc_event_manager_new( p_mdis );
|
|
if( unlikely(p_mdis->p_event_manager == NULL) )
|
|
{
|
|
free( p_mdis );
|
|
return NULL;
|
|
}
|
|
|
|
p_mdis->p_sd = vlc_sd_Create( (vlc_object_t*)p_inst->p_libvlc_int,
|
|
psz_name );
|
|
if( unlikely(p_mdis->p_sd == NULL) )
|
|
{
|
|
libvlc_printerr( "%s: no such discovery module found", psz_name );
|
|
libvlc_media_list_release( p_mdis->p_mlist );
|
|
libvlc_event_manager_release( p_mdis->p_event_manager );
|
|
free( p_mdis );
|
|
return NULL;
|
|
}
|
|
|
|
vlc_event_attach( services_discovery_EventManager( p_mdis->p_sd ),
|
|
vlc_ServicesDiscoveryItemAdded,
|
|
services_discovery_item_added,
|
|
p_mdis );
|
|
vlc_event_attach( services_discovery_EventManager( p_mdis->p_sd ),
|
|
vlc_ServicesDiscoveryItemRemoved,
|
|
services_discovery_item_removed,
|
|
p_mdis );
|
|
vlc_event_attach( services_discovery_EventManager( p_mdis->p_sd ),
|
|
vlc_ServicesDiscoveryStarted,
|
|
services_discovery_started,
|
|
p_mdis );
|
|
vlc_event_attach( services_discovery_EventManager( p_mdis->p_sd ),
|
|
vlc_ServicesDiscoveryEnded,
|
|
services_discovery_ended,
|
|
p_mdis );
|
|
vlc_event_attach( services_discovery_EventManager( p_mdis->p_sd ),
|
|
vlc_ServicesDiscoveryItemRemoveAll,
|
|
services_discovery_removeall,
|
|
p_mdis );
|
|
|
|
libvlc_retain( p_inst );
|
|
return p_mdis;
|
|
}
|
|
|
|
/**************************************************************************
|
|
* start (Public)
|
|
**************************************************************************/
|
|
LIBVLC_API int
|
|
libvlc_media_discoverer_start( libvlc_media_discoverer_t * p_mdis )
|
|
{
|
|
/* Here we go */
|
|
return vlc_sd_Start( p_mdis->p_sd ) ? 0 : -1;
|
|
}
|
|
|
|
/**************************************************************************
|
|
* stop (Public)
|
|
**************************************************************************/
|
|
LIBVLC_API void
|
|
libvlc_media_discoverer_stop( libvlc_media_discoverer_t * p_mdis )
|
|
{
|
|
return vlc_sd_Stop( p_mdis->p_sd );
|
|
}
|
|
|
|
/**************************************************************************
|
|
* new_from_name (Public)
|
|
*
|
|
* \deprecated Use libvlc_media_discoverer_new and libvlc_media_discoverer_start
|
|
**************************************************************************/
|
|
libvlc_media_discoverer_t *
|
|
libvlc_media_discoverer_new_from_name( libvlc_instance_t * p_inst,
|
|
const char * psz_name )
|
|
{
|
|
libvlc_media_discoverer_t *p_mdis = libvlc_media_discoverer_new( p_inst, psz_name );
|
|
|
|
if( !p_mdis )
|
|
return NULL;
|
|
|
|
if( libvlc_media_discoverer_start( p_mdis ) != 0)
|
|
{
|
|
libvlc_media_discoverer_release( p_mdis );
|
|
return NULL;
|
|
}
|
|
|
|
return p_mdis;
|
|
}
|
|
|
|
/**************************************************************************
|
|
* release (Public)
|
|
**************************************************************************/
|
|
void
|
|
libvlc_media_discoverer_release( libvlc_media_discoverer_t * p_mdis )
|
|
{
|
|
int i;
|
|
|
|
vlc_event_detach( services_discovery_EventManager( p_mdis->p_sd ),
|
|
vlc_ServicesDiscoveryItemAdded,
|
|
services_discovery_item_added,
|
|
p_mdis );
|
|
vlc_event_detach( services_discovery_EventManager( p_mdis->p_sd ),
|
|
vlc_ServicesDiscoveryItemRemoved,
|
|
services_discovery_item_removed,
|
|
p_mdis );
|
|
vlc_event_detach( services_discovery_EventManager( p_mdis->p_sd ),
|
|
vlc_ServicesDiscoveryStarted,
|
|
services_discovery_started,
|
|
p_mdis );
|
|
vlc_event_detach( services_discovery_EventManager( p_mdis->p_sd ),
|
|
vlc_ServicesDiscoveryEnded,
|
|
services_discovery_ended,
|
|
p_mdis );
|
|
vlc_event_detach( services_discovery_EventManager( p_mdis->p_sd ),
|
|
vlc_ServicesDiscoveryItemRemoveAll,
|
|
services_discovery_removeall,
|
|
p_mdis );
|
|
|
|
libvlc_media_list_release( p_mdis->p_mlist );
|
|
|
|
if( p_mdis->running )
|
|
vlc_sd_Stop( p_mdis->p_sd );
|
|
|
|
vlc_sd_Destroy( p_mdis->p_sd );
|
|
|
|
/* Free catname_to_submedialist and all the mlist */
|
|
char ** all_keys = vlc_dictionary_all_keys( &p_mdis->catname_to_submedialist );
|
|
for( i = 0; all_keys[i]; i++ )
|
|
{
|
|
libvlc_media_list_t * p_catmlist = vlc_dictionary_value_for_key( &p_mdis->catname_to_submedialist, all_keys[i] );
|
|
libvlc_media_list_release( p_catmlist );
|
|
free( all_keys[i] );
|
|
}
|
|
free( all_keys );
|
|
|
|
vlc_dictionary_clear( &p_mdis->catname_to_submedialist, NULL, NULL );
|
|
libvlc_event_manager_release( p_mdis->p_event_manager );
|
|
libvlc_release( p_mdis->p_libvlc_instance );
|
|
|
|
free( p_mdis );
|
|
}
|
|
|
|
/**************************************************************************
|
|
* localized_name (Public)
|
|
**************************************************************************/
|
|
char *
|
|
libvlc_media_discoverer_localized_name( libvlc_media_discoverer_t * p_mdis )
|
|
{
|
|
return services_discovery_GetLocalizedName( p_mdis->p_sd );
|
|
}
|
|
|
|
/**************************************************************************
|
|
* media_list (Public)
|
|
**************************************************************************/
|
|
libvlc_media_list_t *
|
|
libvlc_media_discoverer_media_list( libvlc_media_discoverer_t * p_mdis )
|
|
{
|
|
libvlc_media_list_retain( p_mdis->p_mlist );
|
|
return p_mdis->p_mlist;
|
|
}
|
|
|
|
/**************************************************************************
|
|
* event_manager (Public)
|
|
**************************************************************************/
|
|
libvlc_event_manager_t *
|
|
libvlc_media_discoverer_event_manager( libvlc_media_discoverer_t * p_mdis )
|
|
{
|
|
return p_mdis->p_event_manager;
|
|
}
|
|
|
|
|
|
/**************************************************************************
|
|
* running (Public)
|
|
**************************************************************************/
|
|
int
|
|
libvlc_media_discoverer_is_running( libvlc_media_discoverer_t * p_mdis )
|
|
{
|
|
return p_mdis->running;
|
|
}
|
|
|
|
void
|
|
libvlc_media_discoverer_list_release( libvlc_media_discoverer_description **pp_services,
|
|
unsigned int i_count )
|
|
{
|
|
if( i_count > 0 )
|
|
{
|
|
for( unsigned int i = 0; i < i_count; ++i )
|
|
{
|
|
free( pp_services[i]->psz_name );
|
|
free( pp_services[i]->psz_longname );
|
|
}
|
|
free( *pp_services );
|
|
free( pp_services );
|
|
}
|
|
}
|
|
|
|
unsigned int
|
|
libvlc_media_discoverer_list_get( libvlc_instance_t *p_inst,
|
|
libvlc_media_discoverer_category i_cat,
|
|
libvlc_media_discoverer_description ***ppp_services )
|
|
{
|
|
assert( p_inst != NULL && ppp_services != NULL );
|
|
|
|
int i_core_cat;
|
|
switch( i_cat )
|
|
{
|
|
case libvlc_media_discoverer_devices:
|
|
i_core_cat = SD_CAT_DEVICES;
|
|
break;
|
|
case libvlc_media_discoverer_lan:
|
|
i_core_cat = SD_CAT_LAN;
|
|
break;
|
|
case libvlc_media_discoverer_podcasts:
|
|
i_core_cat = SD_CAT_INTERNET;
|
|
break;
|
|
case libvlc_media_discoverer_localdirs:
|
|
i_core_cat = SD_CAT_MYCOMPUTER;
|
|
break;
|
|
default:
|
|
vlc_assert_unreachable();
|
|
*ppp_services = NULL;
|
|
return 0;
|
|
}
|
|
|
|
/* Fetch all sd names, longnames and categories */
|
|
char **ppsz_names, **ppsz_longnames;
|
|
int *p_categories;
|
|
ppsz_names = vlc_sd_GetNames( p_inst->p_libvlc_int, &ppsz_longnames,
|
|
&p_categories );
|
|
|
|
if( ppsz_names == NULL )
|
|
{
|
|
*ppp_services = NULL;
|
|
return 0;
|
|
}
|
|
|
|
/* Count the number of sd matching our category (i_cat/i_core_cat) */
|
|
unsigned int i_nb_services = 0;
|
|
char **ppsz_name = ppsz_names;
|
|
int *p_category = p_categories;
|
|
for( ; *ppsz_name != NULL; ppsz_name++, p_category++ )
|
|
{
|
|
if( *p_category == i_core_cat )
|
|
i_nb_services++;
|
|
}
|
|
|
|
libvlc_media_discoverer_description **pp_services = NULL, *p_services = NULL;
|
|
if( i_nb_services > 0 )
|
|
{
|
|
/* Double alloc here, so that the caller iterates through pointers of
|
|
* struct instead of structs. This allows us to modify the struct
|
|
* without breaking the API. */
|
|
|
|
pp_services = malloc( i_nb_services
|
|
* sizeof(libvlc_media_discoverer_description *) );
|
|
p_services = malloc( i_nb_services
|
|
* sizeof(libvlc_media_discoverer_description) );
|
|
if( pp_services == NULL || p_services == NULL )
|
|
{
|
|
free( pp_services );
|
|
free( p_services );
|
|
pp_services = NULL;
|
|
p_services = NULL;
|
|
i_nb_services = 0;
|
|
/* Even if alloc fails, the next loop must be run in order to free
|
|
* names returned by vlc_sd_GetNames */
|
|
}
|
|
}
|
|
|
|
/* Fill output pp_services or free unused name, longname */
|
|
char **ppsz_longname = ppsz_longnames;
|
|
ppsz_name = ppsz_names;
|
|
p_category = p_categories;
|
|
unsigned int i_service_idx = 0;
|
|
libvlc_media_discoverer_description *p_service = p_services;
|
|
for( ; *ppsz_name != NULL; ppsz_name++, ppsz_longname++, p_category++,
|
|
p_service++ )
|
|
{
|
|
if( pp_services != NULL && *p_category == i_core_cat )
|
|
{
|
|
p_service->psz_name = *ppsz_name;
|
|
p_service->psz_longname = *ppsz_longname;
|
|
p_service->i_cat = i_cat;
|
|
pp_services[i_service_idx++] = p_service;
|
|
}
|
|
else
|
|
{
|
|
free( *ppsz_name );
|
|
free( *ppsz_longname );
|
|
}
|
|
}
|
|
free( ppsz_names );
|
|
free( ppsz_longnames );
|
|
free( p_categories );
|
|
|
|
*ppp_services = pp_services;
|
|
return i_nb_services;
|
|
}
|
|
|