mosesdecoder/moses/ChartParser.h

100 lines
2.8 KiB
C
Raw Permalink Normal View History

// -*- c++ -*-
// $Id$
// vim:tabstop=2
/***********************************************************************
Moses - factored phrase-based language decoder
Copyright (C) 2010 Hieu Hoang
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
***********************************************************************/
#pragma once
#include <list>
#include <vector>
2015-10-25 16:37:59 +03:00
#include "Range.h"
#include "StackVec.h"
#include "InputPath.h"
#include "TargetPhraseCollection.h"
namespace Moses
{
class ChartParserCallback;
class ChartRuleLookupManager;
class InputType;
class Sentence;
class ChartCellCollectionBase;
class Word;
class Phrase;
2015-10-19 02:00:40 +03:00
// class TargetPhraseCollection;
class DecodeGraph;
2013-05-29 21:16:15 +04:00
class ChartParserUnknown
{
ttaskwptr m_ttask;
2013-05-29 21:16:15 +04:00
public:
ChartParserUnknown(ttasksptr const& ttask);
2013-05-29 21:16:15 +04:00
~ChartParserUnknown();
2015-10-25 16:37:59 +03:00
void Process(const Word &sourceWord, const Range &range, ChartParserCallback &to);
2014-05-19 17:34:27 +04:00
const std::vector<Phrase*> &GetUnknownSources() const {
return m_unksrcs;
}
2013-05-29 21:16:15 +04:00
private:
std::vector<Phrase*> m_unksrcs;
std::list<TargetPhraseCollection::shared_ptr> m_cacheTargetPhraseCollection;
2015-12-11 03:00:33 +03:00
AllOptions::ptr const& options() const;
};
2013-05-29 21:16:15 +04:00
class ChartParser
{
ttaskwptr m_ttask;
2013-05-29 21:16:15 +04:00
public:
ChartParser(ttasksptr const& ttask, ChartCellCollectionBase &cells);
2013-05-29 21:16:15 +04:00
~ChartParser();
2015-10-25 16:37:59 +03:00
void Create(const Range &range, ChartParserCallback &to);
//! the sentence being decoded
//const Sentence &GetSentence() const;
long GetTranslationId() const;
size_t GetSize() const;
const InputPath &GetInputPath(size_t startPos, size_t endPos) const;
2015-10-25 16:37:59 +03:00
const InputPath &GetInputPath(const Range &range) const;
2014-05-19 17:34:27 +04:00
const std::vector<Phrase*> &GetUnknownSources() const {
return m_unknown.GetUnknownSources();
}
2015-12-11 03:00:33 +03:00
AllOptions::ptr const& options() const;
2015-12-10 06:17:36 +03:00
2013-05-29 21:16:15 +04:00
private:
ChartParserUnknown m_unknown;
std::vector <DecodeGraph*> m_decodeGraphList;
std::vector<ChartRuleLookupManager*> m_ruleLookupManagers;
InputType const& m_source; /**< source sentence to be translated */
2013-08-02 21:24:36 +04:00
typedef std::vector< std::vector<InputPath*> > InputPathMatrix;
InputPathMatrix m_inputPathMatrix;
void CreateInputPaths(const InputType &input);
InputPath &GetInputPath(size_t startPos, size_t endPos);
};
}