mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-11-14 10:47:21 +03:00
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
#ifndef moses_XmlOption_h
|
|
#define moses_XmlOption_h
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
#include "WordsRange.h"
|
|
#include "TargetPhrase.h"
|
|
#include "ReorderingConstraint.h"
|
|
|
|
namespace Moses
|
|
{
|
|
|
|
class TranslationOption;
|
|
|
|
/** This struct is used for storing XML force translation data for a given range in the sentence
|
|
*/
|
|
struct XmlOption {
|
|
|
|
WordsRange range;
|
|
TargetPhrase targetPhrase;
|
|
|
|
XmlOption(const WordsRange &r, const TargetPhrase &tp)
|
|
: range(r), targetPhrase(tp)
|
|
{}
|
|
|
|
};
|
|
|
|
std::string ParseXmlTagAttribute(const std::string& tag,const std::string& attributeName);
|
|
std::string TrimXml(const std::string& str, const std::string& lbrackStr="<", const std::string& rbrackStr=">") ;
|
|
bool isXmlTag(const std::string& tag, const std::string& lbrackStr="<", const std::string& rbrackStr=">");
|
|
std::vector<std::string> TokenizeXml(const std::string& str, const std::string& lbrackStr="<", const std::string& rbrackStr=">");
|
|
|
|
bool ProcessAndStripXMLTags(std::string &line, std::vector<XmlOption*> &res, ReorderingConstraint &reorderingConstraint, std::vector< size_t > &walls,
|
|
const std::string& lbrackStr="<", const std::string& rbrackStr=">");
|
|
|
|
}
|
|
|
|
#endif
|
|
|