1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
|
/* This file is part of Strigi Desktop Search, ported from code of:
* Copyright (C) 2007 Shane Wright <me@shanewright.co.uk>
* Matthias Lechner <matthias@lmme.de>
*
* Copyright (C) 2007 Flavio Castelli <flavio.castelli@gmail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "icothroughanalyzer.h"
#include <strigi/textutils.h>
#include <strigi/strigiconfig.h>
#include <strigi/analysisresult.h>
#include <strigi/fieldtypes.h>
#include <cstring>
using namespace std;
using namespace Strigi;
// AnalyzerFactory
void
IcoThroughAnalyzerFactory::registerFields(FieldRegister& reg) {
widthField = reg.registerField(
"http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#width");
heightField = reg.registerField(
"http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#height");
numberField = reg.registerField(
"http://strigi.sf.net/ontologies/homeless#documentImageCount");
bitsPerPixelField = reg.registerField(
"http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#colorDepth");
colorCountField = reg.registerField(
"http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#colorCount");
typeField = reg.typeField;
addField(widthField);
addField(heightField);
addField(numberField);
addField(bitsPerPixelField);
addField(colorCountField);
addField(typeField);
}
// Analyzer
void
IcoThroughAnalyzer::setIndexable(AnalysisResult* i) {
analysisResult = i;
}
InputStream*
IcoThroughAnalyzer::connectInputStream(InputStream* in) {
if( !in )
return in;
const char *c;
int32_t n;
// Remember: ICO files are little-endian
// read the beginning of the stream and make sure it looks ok
n = in->read(c, 6, 6);
if (n != 6) {
in->reset(0); // rewind to the start of the stream
return in;
}
uint16_t ico_reserved = readLittleEndianUInt16(c);
uint16_t ico_type = readLittleEndianUInt16(c+2);
uint16_t ico_count = readLittleEndianUInt16(c+4);
if ((ico_reserved != 0) || (ico_type != 1) || (ico_count < 1)) {
in->reset(0);
return in;
}
// now loop through each of the icon entries
n = in->read(c, 1, 1);
if (n != 1) {
in->reset(0); // rewind to the start of the stream
return in;
}
uint8_t icoe_width = (uint8_t)*c;
n = in->read(c, 1, 1);
if (n != 1) {
in->reset(0); // rewind to the start of the stream
return in;
}
uint8_t icoe_height = (uint8_t)*c;
n = in->read(c, 1, 1);
if (n != 1) {
in->reset(0); // rewind to the start of the stream
return in;
}
uint8_t icoe_colorcount = (uint8_t)*c;
n = in->read(c, 1, 1);
if (n != 1) {
in->reset(0); // rewind to the start of the stream
return in;
}
//uint8_t icoe_reserved = (uint8_t)*c;
n = in->read(c, 2, 2);
if (n != 2) {
in->reset(0); // rewind to the start of the stream
return in;
}
/*uint16_t icoe_planes =*/ readLittleEndianUInt16(c);
n = in->read(c, 2, 2);
if (n != 2) {
in->reset(0); // rewind to the start of the stream
return in;
}
uint16_t icoe_bitcount = readLittleEndianUInt16(c);
n = in->read(c, 4, 4);
if (n != 4) {
in->reset(0); // rewind to the start of the stream
return in;
}
/*uint32_t icoe_bytesinres =*/ readLittleEndianUInt32(c);
n = in->read(c, 4, 4);
if (n != 4) {
in->reset(0); // rewind to the start of the stream
return in;
}
/*uint32_t icoe_imageoffset =*/ readLittleEndianUInt32(c);
// read the data on the 1st icon
//FIXME: either get rid of this or replace with NIE equivalent
//analysisResult->addValue( factory->numberField, ico_count );
analysisResult->addValue( factory->typeField, "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#RasterImage" );
analysisResult->addValue( factory->widthField, icoe_width );
analysisResult->addValue( factory->heightField, icoe_height );
if (icoe_bitcount > 0)
analysisResult->addValue( factory->bitsPerPixelField, icoe_bitcount );
if (icoe_colorcount > 0)
analysisResult->addValue( factory->colorCountField, icoe_colorcount );
else if (icoe_bitcount > 0)
analysisResult->addValue( factory->colorCountField, 2 ^ icoe_bitcount );
in->reset(0); // rewind to the start of the stream
return in;
}
bool
IcoThroughAnalyzer::isReadyWithStream() {
return true;
}
//Factory
class Factory : public AnalyzerFactoryFactory {
public:
list<StreamThroughAnalyzerFactory*>
streamThroughAnalyzerFactories() const {
list<StreamThroughAnalyzerFactory*> af;
af.push_back(new IcoThroughAnalyzerFactory());
return af;
}
};
STRIGI_ANALYZER_FACTORY(Factory)
|