libextractor

GNU libextractor
Log | Files | Refs | Submodules | README | LICENSE

commit 6fe942b7c8dbecee57bff49c8299d894b8050fb3
parent f0ab17a55685e6a988094cf5ac950153175f911d
Author: Toni Ruottu <toni.ruottu@helsinki.fi>
Date:   Sun, 10 Aug 2008 21:50:11 +0000

Added it support.

Diffstat:
MAUTHORS | 1+
MChangeLog | 3+++
MNEWS | 2++
Msrc/main/extractor.c | 3++-
Msrc/plugins/Makefile.am | 8++++++++
Asrc/plugins/itextractor.c | 107+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
6 files changed, 123 insertions(+), 1 deletion(-)

diff --git a/AUTHORS b/AUTHORS @@ -40,6 +40,7 @@ nsf - Toni Ruottu <toni.ruottu@iki.fi> sid - Toni Ruottu <toni.ruottu@iki.fi> nsfe - Toni Ruottu <toni.ruottu@iki.fi> applefile - Heikki Lindholm +it - Toni Ruottu <toni.ruottu@iki.fi> General contributors: Yuri N. Sedunov <aris@altlinux.ru> diff --git a/ChangeLog b/ChangeLog @@ -1,3 +1,6 @@ +Mon Aug 11 00:43:46 EEST 2008 + Added an IT (Impulse Tracker) plugin. + Tue Jul 22 02:51:33 MDT 2008 Changed RPM extractor to use librpm. Fixed crash in OpenOffice extractor. diff --git a/NEWS b/NEWS @@ -1,3 +1,5 @@ + Added an IT (Impulse Tracker) plugin. + Mon Jun 23 19:05:07 EET 2008 Fixed concurrency issues in plugin (un-)loading by adding locking around libltdl functions. diff --git a/src/main/extractor.c b/src/main/extractor.c @@ -263,7 +263,8 @@ libextractor_oo:\ libextractor_asf:\ libextractor_sid:\ libextractor_nsfe:\ -libextractor_nsf" +libextractor_nsf:\ +libextractor_it" #define DEFAULT_LIBRARIES MPEGSO EXSO OLESO OGGSO FLACSO QTSO DEFSO diff --git a/src/plugins/Makefile.am b/src/plugins/Makefile.am @@ -98,6 +98,7 @@ plugin_LTLIBRARIES = $(pdfplugin) \ libextractor_id3v2.la \ libextractor_id3v24.la \ libextractor_id3v23.la \ + libextractor_it.la \ libextractor_jpeg.la \ libextractor_lower.la \ libextractor_man.la \ @@ -198,6 +199,13 @@ libextractor_id3v24_la_LDFLAGS = \ libextractor_id3v24_la_LIBADD = \ libconvert.la +libextractor_it_la_SOURCES = \ + itextractor.c +libextractor_it_la_LDFLAGS = \ + $(PLUGINFLAGS) $(retaincommand) +libextractor_it_la_LIBADD = \ + $(top_builddir)/src/main/libextractor.la + libextractor_dvi_la_SOURCES = \ dviextractor.c libextractor_dvi_la_LDFLAGS = \ diff --git a/src/plugins/itextractor.c b/src/plugins/itextractor.c @@ -0,0 +1,107 @@ +/* + * This file is part of libextractor. + * (C) 2008 Toni Ruottu + * + * libextractor 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, or (at your + * option) any later version. + * + * libextractor 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 libextractor; see the file COPYING. If not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + * + */ + +#include "platform.h" +#include "extractor.h" +#include "convert.h" + +#define HEADER_SIZE 0xD0 + +struct header +{ + char magicid[4]; + char title[26]; + char hilight[2]; + char orders[2]; + char instruments[2]; + char samples[2]; + char patterns[2]; + char version[2]; + char compatible[2]; + char flags[2]; + char special[2]; +}; + + +static struct EXTRACTOR_Keywords *addkword + (EXTRACTOR_KeywordList * oldhead, + const char *phrase, EXTRACTOR_KeywordType type) +{ + EXTRACTOR_KeywordList *keyword; + + keyword = malloc (sizeof (EXTRACTOR_KeywordList)); + keyword->next = oldhead; + keyword->keyword = strdup (phrase); + keyword->keywordType = type; + return (keyword); +} + + +/* "extract" keyword from an Impulse Tracker module + * + * ITTECH.TXT as taken from IT 2.14p5 was used, + * while this piece of software was originally + * written. + * + */ +struct EXTRACTOR_Keywords *libextractor_it_extract + (const char *filename, + char *data, size_t size, struct EXTRACTOR_Keywords *prev) +{ + char title[26]; + char itversion[8]; + struct header *head; + + /* Check header size */ + + if (size < HEADER_SIZE) + { + return (prev); + } + + head = (struct header *) data; + + /* Check "magic" id bytes */ + + if (memcmp (head->magicid, "IMPM", 4)) + { + return (prev); + } + + /* Mime-type */ + + prev = addkword (prev, "audio/x-it", EXTRACTOR_MIMETYPE); + + + /* Version of Tracker */ + + sprintf (itversion, "%d.%d", (head->version[0]& 0x01),head->version[1]); + prev = addkword (prev, itversion, EXTRACTOR_FORMAT_VERSION); + + /* Song title */ + + memcpy (&title, head->title, 26); + title[26] = '\0'; + prev = addkword (prev, title, EXTRACTOR_TITLE); + + return (prev); + +}