// $Id$ /*********************************************************************** Moses - factored phrase-based, hierarchical and syntactic language decoder Copyright (C) 2009 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 "TargetPhrase.h" #include "Vocab.h" namespace Moses { class TargetPhraseCollection; class PhraseDictionary; class LMList; class WordPenaltyProducer; } namespace OnDiskPt { /** A vector of target phrases */ class TargetPhraseCollection { class TargetPhraseOrderByScore { public: bool operator()(const TargetPhrase* a, const TargetPhrase *b) const { return a->GetScore(s_sortScoreInd) > b->GetScore(s_sortScoreInd); } }; protected: typedef std::vector CollType; CollType m_coll; UINT64 m_filePos; std::string m_debugStr; public: static size_t s_sortScoreInd; TargetPhraseCollection(); TargetPhraseCollection(const TargetPhraseCollection ©); ~TargetPhraseCollection(); void AddTargetPhrase(TargetPhrase *targetPhrase); void Sort(size_t tableLimit); void Save(OnDiskWrapper &onDiskWrapper); size_t GetSize() const { return m_coll.size(); } const TargetPhrase &GetTargetPhrase(size_t ind) const; UINT64 GetFilePos() const; Moses::TargetPhraseCollection *ConvertToMoses(const std::vector &inputFactors , const std::vector &outputFactors , const Moses::PhraseDictionary &phraseDict , const std::vector &weightT , const Moses::WordPenaltyProducer* wpProducer , const Moses::LMList &lmList , const std::string &filePath , Vocab &vocab) const; void ReadFromFile(size_t tableLimit, UINT64 filePos, OnDiskWrapper &onDiskWrapper); const std::string GetDebugStr() const; void SetDebugStr(const std::string &str); }; }