concordia-library/concordia/concordia_index.hpp

46 lines
931 B
C++
Raw Normal View History

2013-11-14 20:36:34 +01:00
#ifndef CONCORDIA_INDEX_HDR
#define CONCORDIA_INDEX_HDR
2013-11-20 17:43:29 +01:00
#include <divsufsort.h>
2013-11-14 20:36:34 +01:00
#include <boost/shared_ptr.hpp>
2013-11-20 17:43:29 +01:00
#include <fstream>
#include <iostream>
#include <sstream>
2013-11-14 20:36:34 +01:00
#include "concordia/hash_generator.hpp"
#include "concordia/concordia_exception.hpp"
/*!
Class for creating and maintaining the index.
*/
using namespace std;
class ConcordiaIndex {
public:
2013-11-28 16:47:57 +01:00
explicit ConcordiaIndex(const string & wordMapFilePath,
const string & hashedIndexFilePath,
const string & suffixArrayFilePath)
2013-11-14 20:36:34 +01:00
throw(ConcordiaException);
/*! Destructor.
*/
virtual ~ConcordiaIndex();
void addSentence(const string & sentence);
void serializeWordMap();
void generateSuffixArray();
private:
boost::shared_ptr<HashGenerator> _hashGenerator;
2013-11-20 17:43:29 +01:00
2013-11-28 16:47:57 +01:00
string _hashedIndexFilePath;
2013-11-20 17:43:29 +01:00
2013-11-28 16:47:57 +01:00
string _suffixArrayFilePath;
2013-11-14 20:36:34 +01:00
};
#endif