2007-10-16 01:22:57 +00:00
|
|
|
//
|
|
|
|
// ContainedNode.m
|
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 10/15/07.
|
|
|
|
// Copyright 2007 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "ContainedNode.h"
|
2013-10-11 12:45:08 +00:00
|
|
|
#import "CogAudio/AudioMetadataReader.h"
|
2007-10-16 01:22:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
@implementation ContainedNode
|
|
|
|
|
|
|
|
- (BOOL)isLeaf
|
|
|
|
{
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setURL:(NSURL *)u
|
|
|
|
{
|
|
|
|
[super setURL:u];
|
|
|
|
|
|
|
|
if ([u fragment])
|
|
|
|
{
|
2013-10-11 12:45:08 +00:00
|
|
|
NSDictionary *metadata = [AudioMetadataReader metadataForURL:u];
|
|
|
|
NSString *title = nil;
|
|
|
|
NSString *artist = nil;
|
|
|
|
if (metadata)
|
|
|
|
{
|
|
|
|
title = [metadata valueForKey:@"title"];
|
|
|
|
artist = [metadata valueForKey:@"artist"];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (title && [title length])
|
|
|
|
{
|
|
|
|
if (artist && [artist length]) { display = [[u fragment] stringByAppendingFormat:@": %@ - %@", artist, title];}
|
|
|
|
else { display = [[u fragment] stringByAppendingFormat:@": %@", title]; }
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-05-05 20:05:39 +00:00
|
|
|
display = [u fragment];
|
2013-10-11 12:45:08 +00:00
|
|
|
}
|
2007-10-16 01:22:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|