123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- /*****************************************************************************
- * VLCMediaDiscoverer.m: VLCKit.framework VLCMediaDiscoverer implementation
- *****************************************************************************
- * Copyright (C) 2007 Pierre d'Herbemont
- * Copyright (C) 2007 the VideoLAN team
- * $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 General Public License as published by
- * the Free Software Foundation; either version 2 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 General Public License for more details.
- *
- * You should have received a copy of the GNU 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.
- *****************************************************************************/
- #import <Cocoa/Cocoa.h>
- #import "VLCMediaDiscoverer.h"
- #import "VLCLibrary.h"
- #import "VLCLibVLCBridging.h"
- #import "VLCEventManager.h"
- #include <vlc/libvlc.h>
- static NSMutableArray * availableMediaDiscoverer = nil; // Global list of media discoverers
- /**
- * Declares call back functions to be used with libvlc event callbacks.
- */
- @interface VLCMediaDiscoverer (Private)
- /**
- * TODO: Documention
- */
- - (void)mediaDiscovererStarted;
- /**
- * TODO: Documention
- */
- - (void)mediaDiscovererEnded;
- @end
- /* libvlc event callback */
- static void HandleMediaDiscovererStarted(const libvlc_event_t * event, void * user_data)
- {
- NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
- id self = user_data;
- [[VLCEventManager sharedManager] callOnMainThreadObject:self
- withMethod:@selector(mediaDiscovererStarted)
- withArgumentAsObject:nil];
- [pool release];
- }
- static void HandleMediaDiscovererEnded( const libvlc_event_t * event, void * user_data)
- {
- NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
- id self = user_data;
- [[VLCEventManager sharedManager] callOnMainThreadObject:self
- withMethod:@selector(mediaDiscovererEnded)
- withArgumentAsObject:nil];
- [pool release];
- }
-
- @implementation VLCMediaDiscoverer
- + (NSArray *)availableMediaDiscoverer
- {
- if( !availableMediaDiscoverer )
- {
- availableMediaDiscoverer = [[NSArray arrayWithObjects:
- [[[VLCMediaDiscoverer alloc] initWithName:@"sap"] autorelease],
- [[[VLCMediaDiscoverer alloc] initWithName:@"shoutcast"] autorelease],
- [[[VLCMediaDiscoverer alloc] initWithName:@"shoutcasttv"] autorelease], nil] retain];
- }
- return availableMediaDiscoverer;
- }
- - (id)initWithName:(NSString *)aServiceName
- {
- if (self = [super init])
- {
- libvlc_exception_t ex;
- libvlc_exception_init( &ex );
- localizedName = nil;
- discoveredMedia = nil;
- mdis = libvlc_media_discoverer_new_from_name( [VLCLibrary sharedInstance],
- [aServiceName UTF8String],
- &ex );
- catch_exception( &ex );
- libvlc_event_manager_t * p_em = libvlc_media_discoverer_event_manager(mdis);
- libvlc_event_attach(p_em, libvlc_MediaDiscovererStarted, HandleMediaDiscovererStarted, self, NULL);
- libvlc_event_attach(p_em, libvlc_MediaDiscovererEnded, HandleMediaDiscovererEnded, self, NULL);
- running = libvlc_media_discoverer_is_running(mdis);
- }
- return self;
- }
- - (void)release
- {
- @synchronized(self)
- {
- if([self retainCount] <= 1)
- {
- /* We must make sure we won't receive new event after an upcoming dealloc
- * We also may receive a -retain in some event callback that may occcur
- * Before libvlc_event_detach. So this can't happen in dealloc */
- libvlc_event_manager_t * p_em = libvlc_media_list_event_manager(mdis, NULL);
- libvlc_event_detach(p_em, libvlc_MediaDiscovererStarted, HandleMediaDiscovererStarted, self, NULL);
- libvlc_event_detach(p_em, libvlc_MediaDiscovererEnded, HandleMediaDiscovererEnded, self, NULL);
- }
- [super release];
- }
- }
- - (void)dealloc
- {
- [localizedName release];
- [discoveredMedia release];
- libvlc_media_discoverer_release( mdis );
- [super dealloc];
- }
- - (VLCMediaList *) discoveredMedia
- {
- if( discoveredMedia )
- return discoveredMedia;
- libvlc_media_list_t * p_mlist = libvlc_media_discoverer_media_list( mdis );
- VLCMediaList * ret = [VLCMediaList mediaListWithLibVLCMediaList:p_mlist];
- libvlc_media_list_release( p_mlist );
- discoveredMedia = [ret retain];
- return discoveredMedia;
- }
- - (NSString *)localizedName
- {
- if ( localizedName )
- return localizedName;
-
- char * name = libvlc_media_discoverer_localized_name( mdis );
- if (name)
- {
- localizedName = [[NSString stringWithUTF8String:name] retain];
- free( name );
- }
- return localizedName;
- }
- - (BOOL)isRunning
- {
- return running;
- }
- @end
- @implementation VLCMediaDiscoverer (Private)
- - (void)mediaDiscovererStarted
- {
- [self willChangeValueForKey:@"running"];
- running = YES;
- [self didChangeValueForKey:@"running"];
- }
- - (void)mediaDiscovererEnded
- {
- [self willChangeValueForKey:@"running"];
- running = NO;
- [self didChangeValueForKey:@"running"];
- }
- @end
|