Cog/Plugins/Dumb/DumbMetadataReader.m

55 lines
1 KiB
Mathematica
Raw Normal View History

2007-10-12 22:26:28 -04: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 15:56:23 -03:00
+ (NSArray *)mimeTypes
{
return [DumbDecoder mimeTypes];
}
2007-10-12 22:26:28 -04:00
+ (NSDictionary *)metadataForURL:(NSURL *)url
{
if (![url isFileURL])
return nil;
dumb_register_stdfiles();
DUH *duh;
NSString *ext = [[[url path] pathExtension] lowercaseString];
2013-09-28 00:24:23 -03:00
duh = dumb_load_any_quick([[url path] UTF8String], [ext isEqualToString:@"mod"] ? 0 : 1, 0);
2007-10-12 22:26:28 -04: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-12 22:26:28 -04:00
return [NSDictionary dictionaryWithObject:title forKey:@"title"];
}
@end