cog/Plugins/Dumb/DumbMetadataReader.m

55 lines
1.0 KiB
Matlab
Raw Normal View History

2007-10-13 02:26:28 +00:00
//
// DumbMetadataReader.m
// Dumb
//
// Created by Vincent Spader on 10/12/07.
// Copyright 2007 __MyCompanyName__. All rights reserved.
//
#import "DumbMetadataReader.h"
#import "DumbDecoder.h"
#import <Dumb/dumb.h>
@implementation DumbMetadataReader
+ (NSArray *)fileTypes
{
return [DumbDecoder fileTypes];
}
2007-10-14 18:56:23 +00:00
+ (NSArray *)mimeTypes
{
return [DumbDecoder mimeTypes];
}
2007-10-13 02:26:28 +00:00
+ (NSDictionary *)metadataForURL:(NSURL *)url
{
if (![url isFileURL])
return nil;
dumb_register_stdfiles();
DUH *duh;
NSString *ext = [[[url path] pathExtension] lowercaseString];
2013-09-28 03:24:23 +00:00
duh = dumb_load_any_quick([[url path] UTF8String], [ext isEqualToString:@"mod"] ? 0 : 1, 0);
2007-10-13 02:26:28 +00:00
if (!duh)
{
NSLog(@"Failed to create duh");
return nil;
}
//Some titles are all spaces?!
NSString *title = [[NSString stringWithUTF8String: duh_get_tag(duh, "TITLE")] stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
unload_duh(duh);
if (title == nil) {
title = @"";
}
2007-10-13 02:26:28 +00:00
return [NSDictionary dictionaryWithObject:title forKey:@"title"];
}
@end