#ifndef SENTENCE_ANONYMIZER_HDR #define SENTENCE_ANONYMIZER_HDR #include #include #include "concordia/common/config.hpp" #include "concordia/regex_replacement.hpp" #include "concordia/concordia_config.hpp" #include "concordia/concordia_exception.hpp" #include #include /*! Class for anonymizing sentence before adding to index. */ class SentenceAnonymizer { public: explicit SentenceAnonymizer(boost::shared_ptr config) throw(ConcordiaException); /*! Destructor. */ virtual ~SentenceAnonymizer(); std::string anonymize(const std::string & sentence); private: void _createNeRules(std::string & namedEntitiesPath); void _createHtmlTagsRule(std::string & htmlTagsPath); boost::shared_ptr _getMultipleReplacementRule( std::string & filePath, std::string replacement, bool wholeWord = false); std::vector _namedEntities; boost::shared_ptr _htmlTags; boost::shared_ptr _stopWords; boost::shared_ptr _stopSymbols; boost::shared_ptr _spaceSymbols; }; #endif