1 /*****************************************************************************
2 * VLCMediaDiscoverer.m: VLC.framework VLCMediaDiscoverer implementation
3 *****************************************************************************
4 * Copyright (C) 2007 Pierre d'Herbemont
5 * Copyright (C) 2007 the VideoLAN team
8 * Authors: Pierre d'Herbemont <pdherbemont # videolan.org>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
25 #import <Cocoa/Cocoa.h>
26 #import "VLCMediaDiscoverer.h"
27 #import "VLCLibrary.h"
28 #import "VLCLibVLCBridging.h"
30 #include <vlc/libvlc.h>
32 static NSArray * availableMediaDiscoverer = nil;
34 @implementation VLCMediaDiscoverer
35 + (NSArray *)availableMediaDiscoverer
37 if( !availableMediaDiscoverer )
39 availableMediaDiscoverer = [[NSArray arrayWithObjects:
40 [[[VLCMediaDiscoverer alloc] initWithName:@"sap"] autorelease],
41 [[[VLCMediaDiscoverer alloc] initWithName:@"shoutcast"] autorelease],
42 [[[VLCMediaDiscoverer alloc] initWithName:@"shoutcasttv"] autorelease], nil] retain];
44 return availableMediaDiscoverer;
47 - (id)initWithName:(NSString *)aServiceName
49 if (self = [super init])
51 libvlc_exception_t ex;
52 libvlc_exception_init( &ex );
54 discoveredMedia = nil;
55 mdis = libvlc_media_discoverer_new_from_name( [VLCLibrary sharedInstance],
56 [aServiceName UTF8String],
58 quit_on_exception( &ex );
66 [localizedName release];
68 [discoveredMedia release];
69 libvlc_media_discoverer_release( mdis );
73 - (VLCMediaList *) discoveredMedia
76 return discoveredMedia;
78 libvlc_media_list_t * p_mlist = libvlc_media_discoverer_media_list( mdis );
79 VLCMediaList * ret = [VLCMediaList mediaListWithLibVLCMediaList: p_mlist];
80 libvlc_media_list_release( p_mlist );
84 discoveredMedia = [ret retain];
86 return discoveredMedia;
89 - (NSString *)localizedName
91 NSString * aString = nil;
92 char * name = libvlc_media_discoverer_localized_name( mdis );
99 aString = [NSString stringWithUTF8String:name];
104 localizedName = [aString retain];
106 return localizedName;