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
|
/* This file is part of Strigi Desktop Search
*
* Copyright (C) 2007 Vincent Ricard <magic@magicninja.org>
*
* 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 "xpmlineanalyzer.h"
#include <strigi/strigiconfig.h>
#include <strigi/analysisresult.h>
#include <strigi/fieldtypes.h>
#include <cstring>
using namespace std;
using namespace Strigi;
// AnalyzerFactory
void
XpmLineAnalyzerFactory::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");
numberOfColorsField = reg.registerField(
"http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#colorCount");
typeField = reg.typeField;
addField(widthField);
addField(heightField);
addField(numberOfColorsField);
addField(typeField);
}
// Analyzer
void
XpmLineAnalyzer::startAnalysis(AnalysisResult* i) {
analysisResult = i;
ready = false;
line = 0;
}
void
XpmLineAnalyzer::handleLine(const char* data, uint32_t length) {
if (ready) return;
++line;
if (line == 1 && (length < 9 || strncmp(data, "/* XPM */", 9))) {
// this is not an xpm file
ready = true;
return;
} else if (length == 0 || data[0] != '"') {
return;
}
uint32_t i = 0;
// we have found the line which should contain the information we want
ready = true;
// read the width
uint32_t propertyValue = 0;
i++;
while (i < length && isdigit(data[i])) {
propertyValue = (propertyValue * 10) + data[i] - '0';
i++;
}
if (i >= length || data[i] != ' ')
return;
analysisResult->addValue(factory->widthField, propertyValue);
// read the height
propertyValue = 0;
i++;
while (i < length && isdigit(data[i])) {
propertyValue = (propertyValue * 10) + data[i] - '0';
i++;
}
if (i >= length || data[i] != ' ')
return;
analysisResult->addValue(factory->heightField, propertyValue);
// read the number of colors
propertyValue = 0;
i++;
while (i < length && isdigit(data[i])) {
propertyValue = (propertyValue * 10) + data[i] - '0';
i++;
}
if (i >= length || data[i] != ' ')
return;
analysisResult->addValue(factory->numberOfColorsField, propertyValue);
analysisResult->addValue(factory->typeField, "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#RasterImage");
}
bool
XpmLineAnalyzer::isReadyWithStream() {
return ready;
}
//Factory
class Factory : public AnalyzerFactoryFactory {
public:
list<StreamLineAnalyzerFactory*>
streamLineAnalyzerFactories() const {
list<StreamLineAnalyzerFactory*> af;
af.push_back(new XpmLineAnalyzerFactory());
return af;
}
};
STRIGI_ANALYZER_FACTORY(Factory)
|