concordia-library/concordia/concordia.hpp

82 lines
2.3 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/substring_occurence.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"
#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.
*/
class Concordia {
public:
/*! Constructor.
\param configFilePath path to the Concordia configuration file
\throws ConcordiaException
*/
explicit Concordia(const std::string & configFilePath)
throw(ConcordiaException);
/*! Destructor.
*/
virtual ~Concordia();
/*! Getter for version.
\returns version of the Concordia library.
*/
std::string & getVersion();
void addExample(const Example & example) throw(ConcordiaException);
2013-11-28 16:47:57 +01:00
void addAllExamples(const std::vector<Example> & examples)
throw(ConcordiaException);
std::vector<SubstringOccurence> simpleSearch(const std::string & pattern)
throw(ConcordiaException);
2013-11-28 16:47:57 +01:00
std::vector<AnubisSearchResult> anubisSearch(const std::string & pattern)
throw(ConcordiaException);
boost::shared_ptr<ConcordiaSearchResult> concordiaSearch(
const std::string & pattern)
throw(ConcordiaException);
void loadRAMIndexFromDisk() throw(ConcordiaException);
void refreshSAfromRAM() throw(ConcordiaException);
2013-11-28 16:47:57 +01:00
2013-10-24 17:08:58 +02:00
private:
void _initializeIndex() throw(ConcordiaException);
2013-10-24 17:08:58 +02:00
static std::string _libraryVersion;
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