concordia-library/concordia/hash_generator.hpp

46 lines
1.1 KiB
C++
Raw Normal View History

2013-11-12 16:58:31 +01:00
#ifndef HASH_GENERATOR_HDR
#define HASH_GENERATOR_HDR
#include <string>
#include <map>
#include <vector>
2013-11-14 15:44:50 +01:00
#include <boost/shared_ptr.hpp>
#include <boost/algorithm/string/predicate.hpp>
2013-11-14 15:44:50 +01:00
#include "concordia/word_map.hpp"
#include "concordia/common/config.hpp"
#include "concordia/sentence_anonymizer.hpp"
#include "concordia/concordia_config.hpp"
2013-11-12 22:08:37 +01:00
#include "concordia/concordia_exception.hpp"
2013-11-12 16:58:31 +01:00
2013-11-20 17:43:29 +01:00
2013-11-12 16:58:31 +01:00
/*!
Class for generating a sentence hash.
*/
class HashGenerator {
public:
explicit HashGenerator(boost::shared_ptr<ConcordiaConfig> config)
throw(ConcordiaException);
2013-11-14 15:44:50 +01:00
2013-11-12 16:58:31 +01:00
/*! Destructor.
*/
virtual ~HashGenerator();
std::vector<INDEX_CHARACTER_TYPE> generateHash(const std::string & sentence)
throw(ConcordiaException);
2013-11-12 16:58:31 +01:00
std::vector<std::string> generateTokenVector(const std::string & sentence);
2013-11-12 16:58:31 +01:00
void serializeWordMap();
private:
2013-11-14 15:44:50 +01:00
boost::shared_ptr<WordMap> _wordMap;
boost::shared_ptr<SentenceAnonymizer> _sentenceAnonymizer;
2013-11-12 16:58:31 +01:00
std::string _wordMapFilePath;
2013-11-12 16:58:31 +01:00
};
#endif