concordia-library/concordia/concordia.hpp

204 lines
7.2 KiB
C++
Raw Normal View History

2013-10-24 17:08:58 +02:00
#ifndef CONCORDIA_HDR
#define CONCORDIA_HDR
#include <string>
2013-11-28 16:47:57 +01:00
#include <vector>
2013-10-24 17:08:58 +02:00
#include <boost/shared_ptr.hpp>
#include <boost/filesystem.hpp>
2013-10-24 17:08:58 +02:00
#include "concordia/common/config.hpp"
#include "concordia/example.hpp"
#include "concordia/matched_pattern_fragment.hpp"
2013-10-24 17:08:58 +02:00
#include "concordia/concordia_config.hpp"
2013-11-28 16:47:57 +01:00
#include "concordia/concordia_index.hpp"
#include "concordia/index_searcher.hpp"
#include "concordia/concordia_search_result.hpp"
2015-06-26 22:50:53 +02:00
#include "concordia/tokenized_sentence.hpp"
#include "concordia/anubis_search_result.hpp"
#include <divsufsort.h>
2013-11-28 16:47:57 +01:00
2013-10-24 17:08:58 +02:00
/*!
The Concordia class is the main access point to the library.
2015-05-01 14:52:53 +02:00
This class holds references to three out of four main data
structures used by Concordia: hashed index, markers array
and suffix array. Word map is maintained by the class
HashGenerator. Concordia has references to:
- the hash generator (HashGenerator)
- concordia index (ConcordiaIndex)
- concordia searcher (ConcordiaSearcher)
- configuration (ConcordiaConfig)
Whenever it is necessary, the data structures and tools
held by Concordia are passed by smart pointers to methods which
carry out specific functionalities.
2013-10-24 17:08:58 +02:00
*/
class Concordia {
public:
/*! Parameterless constructor
*/
Concordia();
2013-10-24 17:08:58 +02:00
/*! Constructor.
\param indexPath path to the index directory
2013-10-24 17:08:58 +02:00
\param configFilePath path to the Concordia configuration file
\throws ConcordiaException
*/
explicit Concordia(const std::string & indexPath,
const std::string & configFilePath)
2013-10-24 17:08:58 +02:00
throw(ConcordiaException);
/*! Destructor.
*/
virtual ~Concordia();
/*! Getter for version.
\returns version of the Concordia library.
*/
std::string & getVersion();
/*! Tokenizes the given sentence.
\param sentence sentence to be tokenized
2015-12-27 20:54:40 +01:00
\param byWhitespace whether to tokenize the sentence by whitespace
\returns tokenized sentence object,
containing information about original word positions
\throws ConcordiaException
*/
2015-12-27 20:54:40 +01:00
TokenizedSentence tokenize(const std::string & sentence,
bool byWhitespace = false)
2015-08-19 20:49:26 +02:00
throw(ConcordiaException);
/*! Tokenizes all the given sentences.
\param sentences vector of sentences to be tokenized
2015-12-27 20:54:40 +01:00
\param byWhitespace whether to tokenize the sentence by whitespace
2015-08-19 20:49:26 +02:00
\returns vector of tokenized sentence objects
\throws ConcordiaException
*/
std::vector<TokenizedSentence> tokenizeAll(
2015-12-27 20:54:40 +01:00
const std::vector<std::string> & sentences,
bool byWhitespace = false)
throw(ConcordiaException);
2015-04-30 22:22:54 +02:00
/*! Adds an Example to the index.
\param example example to be added
2015-06-27 12:40:24 +02:00
\returns tokenized sentence object,
containing information about original word positions
2015-04-30 22:22:54 +02:00
\throws ConcordiaException
*/
2015-08-19 20:49:26 +02:00
TokenizedSentence addExample(const Example & example)
throw(ConcordiaException);
2013-11-28 16:47:57 +01:00
/*! Adds a tokenized example to the index.
\param tokenizedSentence tokenized sentence to be added
2015-08-19 20:49:26 +02:00
\param id id of the sentence to be added
\throws ConcordiaException
*/
void addTokenizedExample(
2015-08-19 20:49:26 +02:00
const TokenizedSentence & tokenizedSentence,
const SUFFIX_MARKER_TYPE id)
throw(ConcordiaException);
/*! Adds multiple tokenized examples to the index.
\param examples vector of examples to be added
\param ids vector of ids of the sentences to be added
\throws ConcordiaException
*/
void addAllTokenizedExamples(
const std::vector<TokenizedSentence> & tokenizedSentences,
const std::vector<SUFFIX_MARKER_TYPE> & ids)
throw(ConcordiaException);
2015-04-30 22:22:54 +02:00
/*! Adds multiple examples to the index.
\param examples vector of examples to be added
2015-06-27 12:40:24 +02:00
\returns vector of tokenized sentence objects,
containing information about original word positions
2015-04-30 22:22:54 +02:00
\throws ConcordiaException
*/
2015-06-27 12:40:24 +02:00
std::vector<TokenizedSentence> addAllExamples(
const std::vector<Example> & examples)
throw(ConcordiaException);
2015-04-30 22:22:54 +02:00
/*! Performs a simple substring lookup on the index.
For more info see \ref tutorial1_2.
\param pattern pattern to be searched in the index
\returns vector of matched results
\throws ConcordiaException
*/
std::vector<MatchedPatternFragment> simpleSearch(
const std::string & pattern)
throw(ConcordiaException);
2013-11-28 16:47:57 +01:00
2015-10-01 13:36:54 +02:00
SUFFIX_MARKER_TYPE countOccurences(const std::string & pattern)
throw(ConcordiaException);
2015-04-30 22:22:54 +02:00
/*! \deprecated
Finds the examples from the index, whose resemblance to the
pattern is maximal. This method may perform very slow,
try using concordiaSearch instead.
\param pattern pattern to be searched in the index
\returns vector of anubis results
\throws ConcordiaException
*/
std::vector<AnubisSearchResult> anubisSearch(const std::string & pattern)
throw(ConcordiaException);
2015-04-30 22:22:54 +02:00
/*! Performs concordia lookup on the index. This is a unique library
functionality, designed to facilitate Computer-Aided Translation.
For more info see \ref tutorial1_3.
\param pattern pattern to be searched in the index
\returns concordia result
\throws ConcordiaException
*/
boost::shared_ptr<ConcordiaSearchResult> concordiaSearch(
const std::string & pattern)
throw(ConcordiaException);
2015-04-30 22:22:54 +02:00
/*! Loads HDD stored index files to RAM and generates
suffix array based on RAM stored data structures.
2015-06-26 22:50:53 +02:00
For more info see \ref tutorial2.
2015-04-30 22:22:54 +02:00
\throws ConcordiaException
*/
void loadRAMIndexFromDisk() throw(ConcordiaException);
2015-04-30 22:22:54 +02:00
/*! Generates suffix array based on RAM stored data structures.
For more info see \ref tutorial2.
\throws ConcordiaException
*/
void refreshSAfromRAM() throw(ConcordiaException);
2013-11-28 16:47:57 +01:00
2015-05-04 20:40:44 +02:00
/*! Clears all the examples from the index
\throws ConcordiaException
*/
void clearIndex() throw(ConcordiaException);
2013-10-24 17:08:58 +02:00
private:
std::string _getWordMapFilePath();
std::string _getHashedIndexFilePath();
std::string _getMarkersFilePath();
void _initializeIndex() throw(ConcordiaException);
2013-10-24 17:08:58 +02:00
static std::string _libraryVersion;
std::string _indexPath;
2013-10-24 17:08:58 +02:00
boost::shared_ptr<ConcordiaConfig> _config;
2013-11-28 16:47:57 +01:00
boost::shared_ptr<ConcordiaIndex> _index;
boost::shared_ptr<IndexSearcher> _searcher;
boost::shared_ptr<HashGenerator> _hashGenerator;
boost::shared_ptr<std::vector<sauchar_t> > _T;
boost::shared_ptr<std::vector<saidx_t> > _SA;
boost::shared_ptr<std::vector<SUFFIX_MARKER_TYPE> > _markers;
2013-10-24 17:08:58 +02:00
};
#endif