1 /*****************************************************************************
2 * upnp_cc.cpp : UPnP discovery module
3 *****************************************************************************
4 * Copyright (C) 2004-2005 the VideoLAN team
7 * Authors: RĂ©mi Denis-Courmont <rem # videolan.org>
9 * Based on original wxWindows patch for VLC, and dependent on CyberLink
11 * Satoshi Konno <skonno@cybergarage.org>
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.
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.
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 *****************************************************************************/
28 /*****************************************************************************
30 *****************************************************************************/
32 #include <cybergarage/upnp/media/player/MediaPlayer.h>
39 #include <vlc_common.h>
40 #include <vlc_plugin.h>
41 #include <vlc_playlist.h>
43 /* FIXME: thread-safety ?? */
44 /* FIXME: playlist locking */
46 /************************************************************************
47 * Macros and definitions
48 ************************************************************************/
50 using namespace CyberLink
;
52 /*****************************************************************************
54 *****************************************************************************/
57 static int Open ( vlc_object_t
* );
58 static void Close( vlc_object_t
* );
61 set_shortname( "UPnP");
62 set_description( N_("Universal Plug'n'Play discovery") );
63 set_category( CAT_PLAYLIST
);
64 set_subcategory( SUBCAT_PLAYLIST_SD
);
66 set_capability( "services_discovery", 0 );
67 set_callbacks( Open
, Close
);
71 /*****************************************************************************
73 *****************************************************************************/
76 static void Run ( services_discovery_t
*p_sd
);
78 /*****************************************************************************
79 * Open: initialize and create stuff
80 *****************************************************************************/
81 static int Open( vlc_object_t
*p_this
)
83 services_discovery_t
*p_sd
= ( services_discovery_t
* )p_this
;
87 services_discovery_SetLocalizedName( p_sd
, _("Devices") );
93 /*****************************************************************************
95 *****************************************************************************/
96 static void Close( vlc_object_t
*p_this
)
100 /*****************************************************************************
101 * Run: main UPnP thread
102 *****************************************************************************
103 * Processes UPnP events
104 *****************************************************************************/
105 class UPnPHandler
: public MediaPlayer
, public DeviceChangeListener
,
106 /*public EventListener,*/ public SearchResponseListener
109 services_discovery_t
*p_sd
;
111 Device
*GetDeviceFromUSN( const string
& usn
)
113 return getDevice( usn
.substr( 0, usn
.find( "::" ) ).c_str() );
116 playlist_item_t
*FindDeviceNode( Device
*dev
)
118 return playlist_ChildSearchName( p_sd
->p_cat
, dev
->getFriendlyName() );
121 playlist_item_t
*FindDeviceNode( const string
&usn
)
123 return FindDeviceNode( GetDeviceFromUSN( usn
) );
126 playlist_item_t
*AddDevice( Device
*dev
);
127 void AddDeviceContent( Device
*dev
);
128 void AddContent( playlist_item_t
*p_parent
, ContentNode
*node
);
129 void RemoveDevice( Device
*dev
);
131 /* CyberLink callbacks */
132 virtual void deviceAdded( Device
*dev
);
133 virtual void deviceRemoved( Device
*dev
);
135 virtual void deviceSearchResponseReceived( SSDPPacket
*packet
);
136 /*virtual void eventNotifyReceived( const char *uuid, long seq,
138 const char *value );*/
141 UPnPHandler( services_discovery_t
*p_this
)
144 addDeviceChangeListener( this );
145 addSearchResponseListener( this );
146 //addEventListener( this );
151 static void Run( services_discovery_t
*p_sd
)
153 UPnPHandler
u( p_sd
);
157 msg_Dbg( p_sd
, "UPnP discovery started" );
158 /* read SAP packets */
159 while( vlc_object_alive (p_sd
) )
165 msg_Dbg( p_sd
, "UPnP discovery stopped" );
169 playlist_item_t
*UPnPHandler::AddDevice( Device
*dev
)
174 /* We are not interested in IGD devices or whatever (at the moment) */
175 if ( !dev
->isDeviceType( MediaServer::DEVICE_TYPE
) )
178 playlist_item_t
*p_item
= FindDeviceNode( dev
);
179 if ( p_item
!= NULL
)
183 * Maybe one day, VLC API will make sensible use of the const keyword;
184 * That day, you will no longer need this strdup().
186 char *str
= strdup( dev
->getFriendlyName( ) );
188 p_item
= playlist_NodeCreate( p_playlist
, str
, p_sd
->p_cat
, 0, NULL
);
189 p_item
->i_flags
&= ~PLAYLIST_SKIP_FLAG
;
190 msg_Dbg( p_sd
, "device %s added", str
);
196 void UPnPHandler::AddDeviceContent( Device
*dev
)
198 playlist_item_t
*p_devnode
= AddDevice( dev
);
200 if( p_devnode
== NULL
)
203 AddContent( p_devnode
, getContentDirectory( dev
) );
206 void UPnPHandler::AddContent( playlist_item_t
*p_parent
, ContentNode
*node
)
211 const char *title
= node
->getTitle();
215 msg_Dbg( p_sd
, "title = %s", title
);
217 if ( node
->isItemNode() )
219 ItemNode
*iNode
= (ItemNode
*)node
;
220 input_item_t
*p_input
= input_item_New( p_sd
, iNode
->getResource(), title
);
221 /* FIXME: playlist_AddInput() can fail */
222 playlist_BothAddInput( p_playlist
, p_input
, p_parent
,
223 PLAYLIST_APPEND
, PLAYLIST_END
, NULL
, NULL
,
225 vlc_gc_decref( p_input
);
226 } else if ( node
->isContainerNode() )
228 ContainerNode
*conNode
= (ContainerNode
*)node
;
230 char* p_name
= strdup(title
); /* See other comment on strdup */
231 playlist_item_t
* p_node
= playlist_NodeCreate( p_playlist
, p_name
,
235 unsigned nContentNodes
= conNode
->getNContentNodes();
237 for( unsigned n
= 0; n
< nContentNodes
; n
++ )
238 AddContent( p_node
, conNode
->getContentNode( n
) );
243 void UPnPHandler::RemoveDevice( Device
*dev
)
245 playlist_item_t
*p_item
= FindDeviceNode( dev
);
248 playlist_NodeDelete( p_playlist
, p_item
, true, true );
252 void UPnPHandler::deviceAdded( Device
*dev
)
254 msg_Dbg( p_sd
, "adding device" );
255 AddDeviceContent( dev
);
259 void UPnPHandler::deviceRemoved( Device
*dev
)
261 msg_Dbg( p_sd
, "removing device" );
266 void UPnPHandler::deviceSearchResponseReceived( SSDPPacket
*packet
)
268 if( !packet
->isRootDevice() )
271 string usn
, nts
, nt
, udn
;
273 packet
->getUSN( usn
);
275 packet
->getNTS( nts
);
276 udn
= usn
.substr( 0, usn
.find( "::" ) );
278 /* Remove existing root device before adding updated one */
280 Device
*dev
= GetDeviceFromUSN( usn
);
283 if( !packet
->isByeBye() )
284 AddDeviceContent( dev
);
287 /*void UPnPHandler::eventNotifyReceived( const char *uuid, long seq,
288 const char *name, const char *value )
290 msg_Dbg( p_sd, "event notify received" );
291 msg_Dbg( p_sd, "uuid = %s, name = %s, value = %s", uuid, name, value );