NAME
File::MimeInfo - Determine file type
SYNOPSIS
use File::MimeInfo;
my $mime_type = mimetype($file);
DESCRIPTION
This module can be used to determine the mime type of a file. It tries to implement the freedesktop specification for a shared MIME database.
For this module shared-mime-info-spec 0.11 and basedir-spec 0.5 where used.
This packege only uses the globs file. No real magic checking is used. The File::MimeInfo::Magic package is provided for magic typing.
EXPORT
The method mimetype
is exported by default. The methods inodetype
, globs
and describe
can be exported on demand.
METHODS
new()
-
Simple constructor to allow Object Oriented use of this module. If you want to use this, use the package as
use File::MimeInfo ();
to avoid importing submimetype
. mimetype($file)
-
Returns a mime-type string for
$file
, returns undef on failure.This method bundles
inodetype
andglobs
.If this doesn't work the file is read and the mime-type defaults to 'text/plain' or to 'application/octet-stream' when the first ten chars of the file match ascii control chars (white spaces excluded). If the file doesn't exist or isn't readable
undef
is returned. Returns a mime-type string for$file
, returns undef on failure. inodetype($file)
-
Returns a mimetype in the 'inode' namespace or undef when the file is actually a normal file.
globs($file)
-
Returns a mime-type string for
$file
based on the glob rules, returns undef on failure. The file doesn't need to exist. describe($mimetype)
-
Returns a description of this mimetype as supplied by the mime info database. You can set the global variable
$File::MimeInfo::LANG
to specify a language, this should be the two letter language code used in the xml files. Returns undef when there seems to be no xml file for this mimetype, this could very well mean the mimetype doesn't exist, it could also mean that the language you specified wasn't found.Currently no real xml parsing is done, it trust the xml files are nicely formatted.
rehash()
-
Rehash the data files. Glob information is preparsed when this method is called.
ENVIRONMENT
This module uses the following two environment variables when looking for available data file.
Quoting basedir-spec 0.5 :
- XDG_DATA_HOME
-
Defines the base directory relative to which user specific data files should be stored. If
$XDG_DATA_HOME
is either not set or empty, a default equal to$HOME/.local/share
is used.Mime data could be found in
$XDG_DATA_HOME/mime
. - XDG_DATA_DIRS
-
Defines the preference-ordered set of base directories to search for data files in addition to the
$XDG_DATA_HOME
base directory. The directories in$XDG_DATA_DIRS
should be seperated with a colon ':'. If$XDG_DATA_DIRS
is either not set or empty, a value equal to/usr/local/share/:/usr/share/
should is used.Mime data should be found in the "mime" subdir of one of these dirs. The dir that should be used can be hardcoded with the variable
$File::MimeInfo::DIR
, this is used for testing purposes.
The order of base directories denotes their importance; the first directory listed is the most important. When the same information is defined in multiple places the information defined relative to the more important base directory takes precedent. The base directory defined by $XDG_DATA_HOME
is considered more important than any of the base directories defined by $XDG_DATA_DIRS
.
DIAGNOSTICS
This module throws an exception when it can't find any data files, when it can't open a data file it found for reading or when a subroutine doesn't get enough arguments. In the first case youn either don't have the freedesktop mime info database installed, or your environment variables point to the wrong places, in the second case you have the database installed, but it is broken (the mime info database should logically be world readable).
TODO
Make an option for using some caching mechanism to reduce init time.
Make "describe" do real xml parsing?
BUGS
Non I know of, please mail me when you encounter one.
AUTHOR
Jaap Karssenberg || Pardus [Larus] <pardus@cpan.org<gt>
Copyright (c) 2003 Jaap G Karssenberg. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
SEE ALSO
- freedesktop specifications used
-
http://www.freedesktop.org/standards/shared-mime-info-spec/, http://www.freedesktop.org/standards/basedir-spec/
- freedesktop mime database
- other programs using this mime system
1 POD Error
The following errors were encountered while parsing the POD:
- Around line 319:
=over without closing =back