2013-11-28 16:47:57 +01:00
|
|
|
#include "concordia/index_searcher.hpp"
|
|
|
|
|
2013-12-06 22:29:25 +01:00
|
|
|
#include "concordia/common/utils.hpp"
|
2013-11-28 16:47:57 +01:00
|
|
|
#include <boost/filesystem.hpp>
|
|
|
|
|
2013-12-14 15:23:17 +01:00
|
|
|
IndexSearcher::IndexSearcher() {
|
2013-11-28 16:47:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
IndexSearcher::~IndexSearcher() {
|
|
|
|
}
|
|
|
|
|
2013-12-14 15:23:17 +01:00
|
|
|
boost::shared_ptr<vector<saidx_t> > IndexSearcher::simpleSearch(
|
|
|
|
boost::shared_ptr<HashGenerator> hashGenerator,
|
|
|
|
boost::shared_ptr<std::vector<sauchar_t> > T,
|
|
|
|
boost::shared_ptr<std::vector<saidx_t> > SA,
|
|
|
|
const string & pattern) throw(ConcordiaException) {
|
|
|
|
boost::shared_ptr<vector<saidx_t> > result =
|
|
|
|
boost::shared_ptr<vector<saidx_t> >(new vector<saidx_t>());
|
2013-11-28 16:47:57 +01:00
|
|
|
|
|
|
|
int left;
|
2013-12-14 15:23:17 +01:00
|
|
|
boost::shared_ptr<vector<INDEX_CHARACTER_TYPE> > hash =
|
|
|
|
hashGenerator->generateHash(pattern);
|
|
|
|
saidx_t patternLength = hash->size()*sizeof(INDEX_CHARACTER_TYPE);
|
2013-12-06 22:29:25 +01:00
|
|
|
sauchar_t * patternArray = Utils::indexVectorToSaucharArray(hash);
|
2013-12-14 15:23:17 +01:00
|
|
|
int size = sa_search(T->data(), (saidx_t) T->size(),
|
|
|
|
(const sauchar_t *) patternArray, patternLength,
|
|
|
|
SA->data(), (saidx_t) T->size(), &left);
|
2013-12-06 22:29:25 +01:00
|
|
|
for (int i = 0; i < size; ++i) {
|
2013-12-14 15:23:17 +01:00
|
|
|
saidx_t result_pos = SA->at(left + i);
|
2013-12-06 22:29:25 +01:00
|
|
|
if (result_pos % sizeof(INDEX_CHARACTER_TYPE) == 0) {
|
|
|
|
// As we are looking for a pattern in an array of higher
|
|
|
|
// resolution than the hashed index file, we might
|
|
|
|
// obtain accidental results exceeding the boundaries
|
|
|
|
// of characters in hashed index. The above check
|
|
|
|
// removes these accidental results.
|
2013-12-14 15:23:17 +01:00
|
|
|
result->push_back(result_pos / sizeof(INDEX_CHARACTER_TYPE));
|
2013-12-06 22:29:25 +01:00
|
|
|
}
|
2013-11-28 16:47:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
delete[] patternArray;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|