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
|
/* This file is part of Strigi Desktop Search
*
* Copyright (C) 2006 Jos van den Oever <jos@vandenoever.info>
*
* 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 "deblineanalyzer.h"
#include <strigi/analysisresult.h>
#include <strigi/streamendanalyzer.h>
#include <strigi/strigiconfig.h>
#include <strigi/fieldtypes.h>
#include <iostream>
#include <cstring>
using namespace Strigi;
using namespace std;
void
DebLineAnalyzerFactory::registerFields(FieldRegister& r) {
nameField = r.registerField(
"http://www.semanticdesktop.org/ontologies/2007/01/19/nie#title");
versionField = r.registerField(
"http://www.semanticdesktop.org/ontologies/2007/01/19/nie#version");
summaryField = r.registerField(
"http://www.semanticdesktop.org/ontologies/2007/01/19/nie#description");
maintainerField = r.registerField(
"http://www.semanticdesktop.org/ontologies/2007/01/19/nie#keyword");
sectionField = r.registerField(
"http://www.semanticdesktop.org/ontologies/2007/01/19/nie#keyword");
dependsField = r.registerField(
"http://www.semanticdesktop.org/ontologies/2007/01/19/nie#depends");
typeField = r.typeField;
addField(nameField);
addField(versionField);
addField(summaryField);
addField(maintainerField);
addField(sectionField);
addField(dependsField);
addField(typeField);
}
void
DebLineAnalyzer::startAnalysis(AnalysisResult* res) {
// let's assume that it is not .deb file and set isReadyWithStream() to true
finished=6;
if (res->fileName()!="control") return;
res=res->parent();
if (!res) return;
if (res->fileName()!="control.tar.gz") return;
res=res->parent();
if (!res) return;
if (strcmp(res->endAnalyzer()->name(),"ArEndAnalyzer")) return ;
// it is .deb file after all
result=res;
finished=0;
result->addValue(factory->typeField, "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Software");
}
void
DebLineAnalyzer::endAnalysis(bool complete) {
}
void
DebLineAnalyzer::handleLine(const char* data, uint32_t length)
{
string line(data,length);
if (line.find("Package: ",0)==0) { result->addValue(factory->nameField, line.substr(9,line.size())); finished++; }
if (line.find("Description: ",0)==0) { result->addValue(factory->summaryField, line.substr(13,line.size())); finished++; }
if (line.find("Version: ")==0) { result->addValue(factory->versionField, line.substr(9,line.size())); finished++; }
if (line.find("Maintainer: ")==0) { result->addValue(factory->maintainerField, line.substr(12,line.size())); finished++; }
if (line.find("Section: ")==0) { result->addValue(factory->sectionField, line.substr(9,line.size())); finished++; }
if (line.find("Depends: ")==0) {
size_t start=9;
size_t end;
do {
end=line.find(", ",start);
if (end==string::npos) end=length;
result->addValue(factory->dependsField, line.substr(start, end-start));
start=end+2;
} while (start<length);
finished++;
}
}
bool
DebLineAnalyzer::isReadyWithStream()
{
// analysis is finished after all 6 fields were found (name, summary, version, deps, maintainer, section)
return finished==6;
}
class Factory : public AnalyzerFactoryFactory {
public:
list<StreamLineAnalyzerFactory*>
streamLineAnalyzerFactories() const {
list<StreamLineAnalyzerFactory*> af;
af.push_back(new DebLineAnalyzerFactory());
return af;
}
};
STRIGI_ANALYZER_FACTORY(Factory)
|