concordia-library/concordia/matched_pattern_fragment.hpp

89 lines
2.5 KiB
C++
Raw Normal View History

#ifndef MATCHED_PATTERN_FRAGMENT_HDR
#define MATCHED_PATTERN_FRAGMENT_HDR
#include "concordia/common/config.hpp"
#include "concordia/interval.hpp"
2017-04-21 14:51:58 +02:00
#include "concordia/substring_occurence.hpp"
#include <vector>
#include <iostream>
#include <boost/foreach.hpp>
/*!
Class representing matched pattern fragment in concordia search.
2015-06-27 12:40:24 +02:00
This fragment can be seen as a word interval of the pattern.
2017-04-21 14:51:58 +02:00
2015-05-01 14:52:53 +02:00
This class holds information about:
- where the pattern fragment was matched (example id and example offset)
- where the fragment is located within the pattern
(patternOffset, matchedLength)
*/
class MatchedPatternFragment : public Interval {
public:
2015-05-01 14:52:53 +02:00
/*! Constructor.
\param patternOffset offset of the matched fragment in the pattern
\param matchedLength length of the matched pattern
*/
2017-04-21 14:51:58 +02:00
MatchedPatternFragment(const SUFFIX_MARKER_TYPE & patternOffset,
const SUFFIX_MARKER_TYPE & matchedLength);
/*! Destructor.
*/
virtual ~MatchedPatternFragment();
2017-04-21 14:51:58 +02:00
/*! Getter for occurences.
\returns occurences
2015-05-01 14:52:53 +02:00
*/
2017-04-21 14:51:58 +02:00
std::vector<SubstringOccurence> getOccurences() const {
return _occurences;
}
2017-04-21 14:51:58 +02:00
/*! Adds an occurence to the list.
\param fragment occurence to be added
2015-05-01 14:52:53 +02:00
*/
2017-04-21 14:51:58 +02:00
void addOccurence(const SubstringOccurence & occurence);
2015-05-01 14:52:53 +02:00
/*! Getter for pattern offset.
\returns pattern offset
*/
SUFFIX_MARKER_TYPE getPatternOffset() const {
return _patternOffset;
}
2015-05-01 14:52:53 +02:00
/*! Getter for matched length.
\returns matched fragment length
*/
SUFFIX_MARKER_TYPE getMatchedLength() const {
return _matchedLength;
}
2015-05-01 14:52:53 +02:00
/*! Operator for comparing fragments by their length.
\returns true if current pattern is longer than the other
*/
bool operator > (const MatchedPatternFragment & other) const {
return (_matchedLength > other.getMatchedLength());
}
2017-04-21 14:51:58 +02:00
friend std::ostream & operator << (std::ostream & o,
const MatchedPatternFragment & fragment) {
o << "fragment(patternOffset=" << fragment.getPatternOffset()
<< ", matchedLength=" << fragment.getMatchedLength() << ") {"
<< std::endl;
BOOST_FOREACH(SubstringOccurence occurence, fragment.getOccurences()) {
o << "\t" << occurence << std::endl;
}
2017-04-21 14:51:58 +02:00
o << "}";
return o;
}
private:
std::vector<SubstringOccurence> _occurences;
SUFFIX_MARKER_TYPE _patternOffset;
SUFFIX_MARKER_TYPE _matchedLength;
};
#endif