upnp_cc.cpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:8k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * upnp_cc.cpp :  UPnP discovery module
  3.  *****************************************************************************
  4.  * Copyright (C) 2004-2005 the VideoLAN team
  5.  * $Id: aed508ba66a720f2d593176f5c4f7f392346c89a $
  6.  *
  7.  * Authors: Rémi Denis-Courmont <rem # videolan.org>
  8.  *
  9.  * Based on original wxWindows patch for VLC, and dependent on CyberLink
  10.  * UPnP library from :
  11.  *          Satoshi Konno <skonno@cybergarage.org>
  12.  *
  13.  * This program is free software; you can redistribute it and/or modify
  14.  * it under the terms of the GNU 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.
  17.  *
  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.
  22.  *
  23.  * You should have received a copy of the GNU General Public License
  24.  * along with this program; if not, write to the Free Software
  25.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  26.  *****************************************************************************/
  27. /*****************************************************************************
  28.  * Includes
  29.  *****************************************************************************/
  30. #include <cybergarage/upnp/media/player/MediaPlayer.h>
  31. #undef PACKAGE_NAME
  32. #ifdef HAVE_CONFIG_H
  33. # include "config.h"
  34. #endif
  35. #include <vlc_common.h>
  36. #include <vlc_plugin.h>
  37. #include <vlc_playlist.h>
  38. #include <vlc_services_discovery.h>
  39. /* FIXME: thread-safety ?? */
  40. /* FIXME: playlist locking */
  41. /************************************************************************
  42.  * Macros and definitions
  43.  ************************************************************************/
  44. using namespace std;
  45. using namespace CyberLink;
  46. /*****************************************************************************
  47.  * Module descriptor
  48.  *****************************************************************************/
  49. /* Callbacks */
  50.     static int  Open ( vlc_object_t * );
  51.     static void Close( vlc_object_t * );
  52. vlc_module_begin ()
  53.     set_shortname( "UPnP")
  54.     set_description( N_("Universal Plug'n'Play discovery") )
  55.     set_category( CAT_PLAYLIST )
  56.     set_subcategory( SUBCAT_PLAYLIST_SD )
  57.     set_capability( "services_discovery", 0 )
  58.     set_callbacks( Open, Close )
  59. vlc_module_end ()
  60. /*****************************************************************************
  61.  * Run: main UPnP thread
  62.  *****************************************************************************
  63.  * Processes UPnP events
  64.  *****************************************************************************/
  65. class UPnPHandler : public MediaPlayer, public DeviceChangeListener,
  66.                     /*public EventListener,*/ public SearchResponseListener
  67. {
  68.     private:
  69.         services_discovery_t *p_sd;
  70.         Device *GetDeviceFromUSN( const string& usn )
  71.         {
  72.             return getDevice( usn.substr( 0, usn.find( "::" ) ).c_str() );
  73.         }
  74.         playlist_item_t *FindDeviceNode( Device *dev )
  75.         {
  76.             return playlist_ChildSearchName( p_sd->p_cat, dev->getFriendlyName() );
  77.         }
  78.         playlist_item_t *FindDeviceNode( const string &usn )
  79.         {
  80.             return FindDeviceNode( GetDeviceFromUSN( usn ) );
  81.         }
  82.         playlist_item_t *AddDevice( Device *dev );
  83.         void AddDeviceContent( Device *dev );
  84.         void AddContent( playlist_item_t *p_parent, ContentNode *node );
  85.         void RemoveDevice( Device *dev );
  86.         /* CyberLink callbacks */
  87.         virtual void deviceAdded( Device *dev );
  88.         virtual void deviceRemoved( Device *dev );
  89.         virtual void deviceSearchResponseReceived( SSDPPacket *packet );
  90.         /*virtual void eventNotifyReceived( const char *uuid, long seq,
  91.                                           const char *name,
  92.                                           const char *value );*/
  93.     public:
  94.         UPnPHandler( services_discovery_t *p_this )
  95.             : p_sd( p_this )
  96.         {
  97.             addDeviceChangeListener( this );
  98.             addSearchResponseListener( this );
  99.             //addEventListener( this );
  100.         }
  101. };
  102. /*****************************************************************************
  103.  * Open: initialize and create stuff
  104.  *****************************************************************************/
  105. static int Open( vlc_object_t *p_this )
  106. {
  107.     services_discovery_t *p_sd = ( services_discovery_t* )p_this;
  108.     UPnPHandler *u = new UPnPHandler( p_sd );
  109.     u->start( );
  110.     msg_Dbg( p_sd, "upnp discovery started" );
  111.     p_sd->p_private = u;
  112.     return VLC_SUCCESS;
  113. }
  114. /*****************************************************************************
  115.  * Close:
  116.  *****************************************************************************/
  117. static void Close( vlc_object_t *p_this )
  118. {
  119.     UPnPHandler *u = (UPnPHandler *)p_this->p_private;
  120.     u->stop( );
  121.     msg_Dbg( p_this, "upnp discovery started" );
  122. }
  123. playlist_item_t *UPnPHandler::AddDevice( Device *dev )
  124. {
  125.     if( dev == NULL )
  126.         return NULL;
  127.     /* We are not interested in IGD devices or whatever (at the moment) */
  128.     if ( !dev->isDeviceType( MediaServer::DEVICE_TYPE ) )
  129.         return NULL;
  130.     playlist_item_t *p_item = FindDeviceNode( dev );
  131.     if ( p_item != NULL )
  132.         return p_item;
  133.     /* FIXME:
  134.      * Maybe one day, VLC API will make sensible use of the const keyword;
  135.      * That day, you will no longer need this strdup().
  136.      */
  137.     char *str = strdup( dev->getFriendlyName( ) );
  138.     p_item = playlist_NodeCreate( p_playlist, str, p_sd->p_cat, 0, NULL );
  139.     p_item->i_flags &= ~PLAYLIST_SKIP_FLAG;
  140.     msg_Dbg( p_sd, "device %s added", str );
  141.     free( str );
  142.     return p_item;
  143. }
  144. void UPnPHandler::AddDeviceContent( Device *dev )
  145. {
  146.     playlist_item_t *p_devnode = AddDevice( dev );
  147.     if( p_devnode == NULL )
  148.         return;
  149.     AddContent( p_devnode, getContentDirectory( dev ) );
  150. }
  151. void UPnPHandler::AddContent( playlist_item_t *p_parent, ContentNode *node )
  152. {
  153.     if( node == NULL )
  154.         return;
  155.     const char *title = node->getTitle();
  156.     if( title == NULL )
  157.         return;
  158.     msg_Dbg( p_sd, "title = %s", title );
  159.     if ( node->isItemNode() )
  160.     {
  161.         ItemNode *iNode = (ItemNode *)node;
  162.         input_item_t *p_input = input_item_New( p_sd, iNode->getResource(), title );
  163.         /* FIXME: playlist_AddInput() can fail */
  164.         playlist_BothAddInput( p_playlist, p_input, p_parent,
  165.                                PLAYLIST_APPEND, PLAYLIST_END, NULL, NULL,
  166.                                false );
  167.         vlc_gc_decref( p_input );
  168.     } else if ( node->isContainerNode() )
  169.     {
  170.         ContainerNode *conNode = (ContainerNode *)node;
  171.         char* p_name = strdup(title); /* See other comment on strdup */
  172.         playlist_item_t* p_node = playlist_NodeCreate( p_playlist, p_name,
  173.                                                        p_parent, 0, NULL );
  174.         free(p_name);
  175.         unsigned nContentNodes = conNode->getNContentNodes();
  176.         for( unsigned n = 0; n < nContentNodes; n++ )
  177.            AddContent( p_node, conNode->getContentNode( n ) );
  178.     }
  179. }
  180. void UPnPHandler::RemoveDevice( Device *dev )
  181. {
  182.     playlist_item_t *p_item = FindDeviceNode( dev );
  183.     if( p_item != NULL )
  184.         playlist_NodeDelete( p_playlist, p_item, true, true );
  185. }
  186. void UPnPHandler::deviceAdded( Device *dev )
  187. {
  188.     msg_Dbg( p_sd, "adding device" );
  189.     AddDeviceContent( dev );
  190. }
  191. void UPnPHandler::deviceRemoved( Device *dev )
  192. {
  193.     msg_Dbg( p_sd, "removing device" );
  194.     RemoveDevice( dev );
  195. }
  196. void UPnPHandler::deviceSearchResponseReceived( SSDPPacket *packet )
  197. {
  198.     if( !packet->isRootDevice() )
  199.         return;
  200.     string usn, nts, nt, udn;
  201.     packet->getUSN( usn );
  202.     packet->getNT( nt );
  203.     packet->getNTS( nts );
  204.     udn = usn.substr( 0, usn.find( "::" ) );
  205.     /* Remove existing root device before adding updated one */
  206.     Device *dev = GetDeviceFromUSN( usn );
  207.     RemoveDevice( dev );
  208.     if( !packet->isByeBye() )
  209.         AddDeviceContent( dev );
  210. }
  211. /*void UPnPHandler::eventNotifyReceived( const char *uuid, long seq,
  212.                                        const char *name, const char *value )
  213. {
  214.     msg_Dbg( p_sd, "event notify received" );
  215.     msg_Dbg( p_sd, "uuid = %s, name = %s, value = %s", uuid, name, value );
  216. }*/