123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585 |
- /*****************************************************************************
- * VLCMedia.m: VLC.framework VLCMedia 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 "VLCMedia.h"
- #import "VLCMediaList.h"
- #import "VLCEventManager.h"
- #import "VLCLibrary.h"
- #import "VLCLibVLCBridging.h"
- #include <vlc/libvlc.h>
- /* Meta Dictionary Keys */
- NSString *VLCMetaInformationTitle = @"title";
- NSString *VLCMetaInformationArtist = @"artist";
- NSString *VLCMetaInformationGenre = @"genre";
- NSString *VLCMetaInformationCopyright = @"copyright";
- NSString *VLCMetaInformationAlbum = @"album";
- NSString *VLCMetaInformationTrackNumber = @"trackNumber";
- NSString *VLCMetaInformationDescription = @"description";
- NSString *VLCMetaInformationRating = @"rating";
- NSString *VLCMetaInformationDate = @"date";
- NSString *VLCMetaInformationSetting = @"setting";
- NSString *VLCMetaInformationURL = @"url";
- NSString *VLCMetaInformationLanguage = @"language";
- NSString *VLCMetaInformationNowPlaying = @"nowPlaying";
- NSString *VLCMetaInformationPublisher = @"publisher";
- NSString *VLCMetaInformationEncodedBy = @"encodedBy";
- NSString *VLCMetaInformationArtworkURL = @"artworkURL";
- NSString *VLCMetaInformationArtwork = @"artwork";
- NSString *VLCMetaInformationTrackID = @"trackID";
- /* Notification Messages */
- NSString *VLCMediaMetaChanged = @"VLCMediaMetaChanged";
- //NSString *VLCMediaSubItemAdded = @"VLCMediaSubItemAdded";
- //NSString *VLCMediaSubItemDeleted = @"VLCMediaSubItemDeleted";
- /* libvlc event callback */
- //static void HandleMediaSubItemAdded(const libvlc_event_t *event, void *self)
- //{
- // [[VLCEventManager sharedManager] callOnMainThreadObject:self
- // withMethod:@selector(subItemAdded:)
- // withArgumentAsObject:(id)event->u.media_descriptor_subitem_added.new_child];
- //}
- //
- //static void HandleMediaSubItemDeleted(const libvlc_event_t *event, void *self)
- //{
- // [[VLCEventManager sharedManager] callOnMainThreadObject:self
- // withMethod:@selector(subItemDeleted)
- // withArgumentAsObject:nil];
- //}
- static void HandleMediaMetaChanged(const libvlc_event_t *event, void *self)
- {
- NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
-
- [[VLCEventManager sharedManager] callOnMainThreadObject:self
- withMethod:@selector(metaChanged:)
- withArgumentAsObject:[NSNumber numberWithInt:(int)event->u.media_descriptor_meta_changed.meta_type]];
- [pool release];
- }
- static void HandleMediaDurationChanged(const libvlc_event_t *event, void *self)
- {
- NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
-
- //[[VLCEventManager sharedManager] callOnMainThreadObject:self
- // withMethod:@selector(setLength:)
- // withArgumentAsObject:[VLCTime timeWithNumber:
- // [NSNumber numberWithLongLong:event->u.media_descriptor_duration_changed.new_duration]]];
- [pool release];
- }
- // TODO: Documentation
- @interface VLCMedia (Private)
- /* Statics */
- + (libvlc_meta_t)stringToMetaType:(NSString *)string;
- + (NSString *)metaTypeToString:(libvlc_meta_t)type;
- /* Initializers */
- - (void)initInternalMediaDescriptor;
- /* Operations */
- - (BOOL)setMetaValue:(char *)value forKey:(NSString *)key;
- - (void)fetchMetaInformation;
- - (void)fetchMetaInformationForArtWorkWithURL:(NSString *)anURL;
- - (void)notifyChangeForKey:(NSString *)key withOldValue:(id)oldValue;
- /* Callback Methods */
- //- (void)subItemAdded:(libvlc_media_descriptor_t *)child;
- //- (void)subItemRemoved:(libvlc_media_descriptor_t *)child;
- - (void)metaChanged:(NSNumber *)metaType;
- @end
- @implementation VLCMedia
- + (id)mediaWithURL:(NSString *)aURL;
- {
- // For some unknown reason, compiler kept shooting me a warning saying:
- // warning: passing argument 1 of 'initWithURL:' from distinct Objective-C type
- // Research on the net shows that the error means that the argument passed
- // is not compatible with the expected argument. Doesn't make sense, however
- // the warning goes away when it is casted it with "id".
- return [[[VLCMedia alloc] initWithURL:(id)aURL] autorelease];
- }
- - (id)initWithURL:(NSString *)aURL
- {
- // Parse the URL
- NSString *scheme; // Everything before ://, defaults to file if not present
- NSString *path; // Everything after ://
- NSRange range;
-
- range = [aURL rangeOfString:@"://"];
- if (range.length > 0)
- {
- scheme = [aURL substringToIndex:range.location];
- }
- else
- {
- scheme = @"file";
- range.location = 0;
- }
- path = [aURL substringFromIndex:NSMaxRange(range)];
-
- if ([scheme isEqualToString:@"file"])
- {
- BOOL isDirectory;
- path = [path stringByExpandingTildeInPath];
-
- // Check to see if it's a file or url
- NSString *videoTSPath = path;
- if ([[NSFileManager defaultManager] fileExistsAtPath:videoTSPath isDirectory:&isDirectory] && isDirectory)
- {
- if ([[videoTSPath lastPathComponent] compare:@"VIDEO_TS"] != NSOrderedSame)
- videoTSPath = [videoTSPath stringByAppendingPathComponent:@"VIDEO_TS/"];
- videoTSPath = [videoTSPath stringByAppendingPathComponent:@"VIDEO_TS.VOB"];
-
- // The url is a directory should we check for a DVD directory structure?
- if ([[NSFileManager defaultManager] fileExistsAtPath:videoTSPath isDirectory:&isDirectory] && !isDirectory)
- /* do nothing because this is a DVD */;
- else
- // TODO: Should we search for playable items?
- // This is not a playable file
- return nil;
- }
- }
-
- if (self = [super init])
- {
- url = [[NSString stringWithFormat:@"%@://%@", scheme, path] retain];
-
- libvlc_exception_t ex;
- libvlc_exception_init(&ex);
-
- p_md = libvlc_media_descriptor_new([VLCLibrary sharedInstance],
- [url cString],
- &ex);
- quit_on_exception(&ex);
-
- delegate = nil;
- metaDictionary = nil;
-
- // This value is set whenever the demuxer figures out what the length is.
- // TODO: Easy way to tell the length of the movie without having to instiate the demuxer. Maybe cached info?
- length = nil;
- [self initInternalMediaDescriptor];
- }
- 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_descriptor_event_manager(p_md, NULL);
- // libvlc_event_detach(p_em, libvlc_MediaDescriptorSubItemAdded, HandleMediaSubItemAdded, self, NULL);
- // libvlc_event_detach(p_em, libvlc_MediaDescriptorSubItemDeleted, HandleMediaSubItemAdded, self, NULL);
- // libvlc_event_detach(p_em, libvlc_MediaDescriptorMetaChanged, HandleMediaMetaChanged, self, NULL);
- // libvlc_event_detach(p_em, libvlc_MediaDescriptorDurationChanged, HandleMediaDurationChanged, self, NULL);
- }
- [super release];
- }
- }
- - (void)dealloc
- {
- // Testing to see if the pointer exists is not required, if the pointer is null
- // then the release message is not sent to it.
- [self setDelegate:nil];
- [self setLength:nil];
- [url release];
- [subitems release];
- [metaDictionary release];
-
- libvlc_media_descriptor_release( p_md );
- [super dealloc];
- }
- - (NSString *)description
- {
- NSString *result = nil;
- if (metaDictionary)
- result = [metaDictionary objectForKey:VLCMetaInformationTitle];
- return (result ? result : url);
- }
- - (NSComparisonResult)compare:(VLCMedia *)media
- {
- if (self == media)
- return NSOrderedSame;
- else if (!media)
- return NSOrderedDescending;
- else
- return [[self url] compare:[media url]];
- }
- - (NSString *)url
- {
- return [[url copy] autorelease];
- }
- - (VLCMediaList *)subitems
- {
- return subitems;
- }
- - (VLCTime *)length
- {
- if (!length)
- {
- // Try figuring out what the length is
- long long duration = libvlc_media_descriptor_get_duration( p_md, NULL );
- if (duration > -1)
- {
- [self setLength:[VLCTime timeWithNumber:[NSNumber numberWithLongLong:duration]]];
- return [[length retain] autorelease];
- }
- }
- return [VLCTime nullTime];
- }
- - (VLCTime *)lengthWaitUntilDate:(NSDate *)aDate
- {
- #define CLOCK_FREQ 1000000
- #define THREAD_SLEEP ((long long)(0.010*CLOCK_FREQ))
- if (![url hasPrefix:@"file://"])
- return [self length];
- else if (!length)
- {
- while (!length && ![self isPreparsed] && [aDate timeIntervalSinceNow] > 0)
- {
- usleep( THREAD_SLEEP );
- }
-
- // So we're done waiting, but sometimes we trap the fact that the parsing
- // was done before the length gets assigned, so lets go ahead and assign
- // it ourselves.
- if (!length)
- return [self length];
- }
- #undef CLOCK_FREQ
- #undef THREAD_SLEEP
- return [[length retain] autorelease];
- }
- - (BOOL)isPreparsed
- {
- return libvlc_media_descriptor_is_preparsed( p_md, NULL );
- }
- - (NSDictionary *)metaDictionary
- {
- return metaDictionary;
- }
- - (void)setDelegate:(id)value
- {
- delegate = value;
- }
- - (id)delegate
- {
- return delegate;
- }
- @end
- @implementation VLCMedia (LibVLCBridging)
- + (id)mediaWithLibVLCMediaDescriptor:(void *)md
- {
- libvlc_exception_t ex;
- libvlc_exception_init( &ex );
-
- VLCMedia *media = (VLCMedia *)libvlc_media_descriptor_get_user_data( md, &ex );
- if (!media || libvlc_exception_raised( &ex ))
- {
- libvlc_exception_clear( &ex );
- return [[[VLCMedia alloc] initWithLibVLCMediaDescriptor:md] autorelease];
- }
- else
- {
- return media;
- }
- }
- - (id)initWithLibVLCMediaDescriptor:(void *)md
- {
- libvlc_exception_t ex;
- libvlc_exception_init( &ex );
- // Core hacks that allows for native objects to be paired with core objects. Otherwise, a native object
- // would be recreated every time we want to address the media descriptor. This eliminates the need
- // for maintaining local copies of core objects.
- if ((self = (id)libvlc_media_descriptor_get_user_data(md, &ex)) && !libvlc_exception_raised(&ex))
- {
- return [self retain];
- }
- libvlc_exception_clear( &ex ); // Just in case an exception was raised, lets release it
-
- if (self = [super init])
- {
- char * p_url;
-
- p_url = libvlc_media_descriptor_get_mrl( md, &ex );
- quit_on_exception( &ex );
-
- url = [NSString stringWithCString:p_url];
-
- libvlc_media_descriptor_retain( md );
- p_md = md;
-
- [self initInternalMediaDescriptor];
- }
- return self;
- }
- - (void *)libVLCMediaDescriptor
- {
- return p_md;
- }
- @end
- @implementation VLCMedia (Private)
- + (libvlc_meta_t)stringToMetaType:(NSString *)string
- {
- #define VLCStringToMeta( name, string ) if ([VLCMetaInformation##name compare:string] == NSOrderedSame) return libvlc_meta_##name;
- VLCStringToMeta(Title, string);
- VLCStringToMeta(Artist, string);
- VLCStringToMeta(Genre, string);
- VLCStringToMeta(Copyright, string);
- VLCStringToMeta(Album, string);
- VLCStringToMeta(TrackNumber, string);
- VLCStringToMeta(Description, string);
- VLCStringToMeta(Rating, string);
- VLCStringToMeta(Date, string);
- VLCStringToMeta(Setting, string);
- VLCStringToMeta(URL, string);
- VLCStringToMeta(Language, string);
- VLCStringToMeta(NowPlaying, string);
- VLCStringToMeta(Publisher, string);
- VLCStringToMeta(ArtworkURL, string);
- VLCStringToMeta(TrackID, string);
- #undef VLCStringToMeta
- return -1;
- }
- + (NSString *)metaTypeToString:(libvlc_meta_t)type
- {
- #define VLCMetaToString( name, type ) if (libvlc_meta_##name == type) return VLCMetaInformation##name;
- VLCMetaToString(Title, type);
- VLCMetaToString(Artist, type);
- VLCMetaToString(Genre, type);
- VLCMetaToString(Copyright, type);
- VLCMetaToString(Album, type);
- VLCMetaToString(TrackNumber, type);
- VLCMetaToString(Description, type);
- VLCMetaToString(Rating, type);
- VLCMetaToString(Date, type);
- VLCMetaToString(Setting, type);
- VLCMetaToString(URL, type);
- VLCMetaToString(Language, type);
- VLCMetaToString(NowPlaying, type);
- VLCMetaToString(Publisher, type);
- VLCMetaToString(ArtworkURL, type);
- VLCMetaToString(TrackID, type);
- #undef VLCMetaToString
- return nil;
- }
- - (void)initInternalMediaDescriptor
- {
- libvlc_exception_t ex;
- libvlc_exception_init( &ex );
- libvlc_media_descriptor_set_user_data( p_md, (void*)self, &ex );
- quit_on_exception( &ex );
-
- // TODO: Should these events be caught by VLCMediaList's notification hooks?
- libvlc_event_manager_t *p_em = libvlc_media_descriptor_event_manager( p_md, &ex );
- // libvlc_event_attach(p_em, libvlc_MediaDescriptorSubItemAdded, HandleMediaSubItemAdded, self, &ex);
- // libvlc_event_attach(p_em, libvlc_MediaDescriptorSubItemRemoved, HandleMediaSubItemRemoved, self, &ex);
- // libvlc_event_attach(p_em, libvlc_MediaDescriptorMetaChanged, HandleMediaMetaChanged, self, &ex);
- // libvlc_event_attach(p_em, libvlc_MediaDescriptorDurationChanged, HandleMediaDurationChanged, self, &ex);
- quit_on_exception( &ex );
-
- libvlc_media_list_t *p_mlist = libvlc_media_descriptor_subitems( p_md, NULL );
- if (!p_mlist)
- subitems = nil;
- else
- {
- [subitems release];
- subitems = [[VLCMediaList medialistWithLibVLCMediaList:p_mlist] retain];
- libvlc_media_list_release( p_mlist );
- }
- [self fetchMetaInformation];
- }
- - (BOOL)setMetaValue:(char *)value forKey:(NSString *)key
- {
- BOOL result = NO;
-
- NSString *oldValue = [metaDictionary valueForKey:key];
- if ((!oldValue && value) || (oldValue && !value) || (oldValue && value && [oldValue compare:[NSString stringWithCString:value]] != NSOrderedSame))
- {
- if (!metaDictionary)
- metaDictionary = [[NSMutableDictionary alloc] initWithCapacity:3];
- if (value)
- [metaDictionary setValue:[NSString stringWithCString:value] forKeyPath:key];
- else
- [metaDictionary setValue:nil forKeyPath:key];
-
- if ([key compare:VLCMetaInformationArtworkURL] == NSOrderedSame)
- {
- if ([metaDictionary valueForKey:VLCMetaInformationArtworkURL])
- {
- // Initialize a new thread
- [NSThread detachNewThreadSelector:@selector(fetchMetaInformationForArtWorkWithURL:)
- toTarget:self
- withObject:[metaDictionary valueForKey:VLCMetaInformationArtworkURL]];
- }
- }
- result = YES;
- }
- free( value );
- return result;
- }
- - (void)fetchMetaInformation
- {
- // TODO: Only fetch meta data that has been requested. Just don't fetch
- // it, just because.
-
- [self setMetaValue:libvlc_media_descriptor_get_meta( p_md, libvlc_meta_Title, NULL ) forKey:[VLCMedia metaTypeToString:libvlc_meta_Title]];
- [self setMetaValue:libvlc_media_descriptor_get_meta( p_md, libvlc_meta_Artist, NULL ) forKey:[VLCMedia metaTypeToString:libvlc_meta_Artist]];
- [self setMetaValue:libvlc_media_descriptor_get_meta( p_md, libvlc_meta_ArtworkURL, NULL ) forKey:[VLCMedia metaTypeToString:libvlc_meta_ArtworkURL]];
- }
- - (void)fetchMetaInformationForArtWorkWithURL:(NSString *)anURL
- {
- NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
- @try
- {
- // Go ahead and load up the art work
- NSURL *artUrl = [NSURL URLWithString:[anURL stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
- NSImage *art = [[[NSImage alloc] initWithContentsOfURL:artUrl] autorelease];
-
- // If anything was found, lets save it to the meta data dictionary
- if (art)
- {
- @synchronized(metaDictionary)
- {
- [metaDictionary setObject:art forKey:VLCMetaInformationArtwork];
- }
-
- // Let the world know that there is new art work available
- [self notifyChangeForKey:VLCMetaInformationArtwork withOldValue:nil];
- }
- }
- @finally
- {
- [pool release];
- }
- }
- - (void)notifyChangeForKey:(NSString *)key withOldValue:(id)oldValue
- {
- // Send out a formal notification
- [[NSNotificationCenter defaultCenter] postNotificationName:VLCMediaMetaChanged
- object:self
- userInfo:[NSDictionary dictionaryWithObjectsAndKeys:
- key, @"key",
- oldValue, @"oldValue",
- nil]];
-
- // Now notify the delegate
- if (delegate && [delegate respondsToSelector:@selector(media:metaValueChangedFrom:forKey:)])
- [delegate media:self metaValueChangedFrom:oldValue forKey:key];
- }
- //- (void)subItemAdded:(libvlc_media_descriptor_t *)child
- //{
- // // TODO: SubItemAdded Notification
- //// if (!subitems)
- //// {
- //// subitems = [[VLCMediaList alloc] initWithLibVLCMediaList:];
- //// }
- //}
- //
- //- (void)subItemRemoved:(libvlc_media_descriptor_t *)child
- //{
- // // TODO: SubItemAdded Notification
- // // if (!subitems)
- // // {
- // // subitems = [[VLCMediaList alloc] initWithLibVLCMediaList:];
- // // }
- //}
- - (void)metaChanged:(NSNumber *)metaType
- {
- // TODO: Only retrieve the meta that was changed
- // Can we figure out what piece was changed instead of retreiving everything?
- NSString *key = [VLCMedia metaTypeToString:[metaType intValue]];
- id oldValue = (metaDictionary ? [metaDictionary valueForKey:key] : nil);
- // Update the meta data
- if ([self setMetaValue:libvlc_media_descriptor_get_meta(p_md, [metaType intValue], NULL) forKey:key])
- // There was actually a change, send out the notifications
- [self notifyChangeForKey:key withOldValue:oldValue];
- }
- @end
- @implementation VLCMedia (VLCMediaPlayerBridging)
- - (void)setLength:(VLCTime *)value
- {
- if (length != value)
- {
- if (length && value && [length compare:value] == NSOrderedSame)
- return;
-
- [self willChangeValueForKey:@"length"];
- if (length) {
- [length release];
- length = nil;
- }
-
- if (value)
- length = [value retain];
- [self didChangeValueForKey:@"length"];
- }
- }
- @end
|