Skip to content
Snippets Groups Projects
Commit 7d492649 authored by Paweł Kędzia's avatar Paweł Kędzia
Browse files

Added PoliqarpCorpusReader

parent adc51250
Branches
No related merge requests found
#include <libcorpus2_whole/io/poliqarpcorpusreader.h>
namespace Corpus2 {
namespace whole{
PoliqarpCorpusReader::PoliqarpCorpusReader(const Tagset& tagset)
: tagset_(tagset)
{
//
}
boost::shared_ptr<Corpus> PoliqarpCorpusReader::read(const std::string& corpus_file)
{
boost::shared_ptr<Document> doc;
boost::shared_ptr<Corpus> corpus = boost::make_shared<Corpus>(corpus_file);
this->pq_doc_reader_ = boost::shared_ptr<PoliqarpDocumentReader>(
new PoliqarpDocumentReader(tagset_, corpus_file));
while ((doc = this->pq_doc_reader_->read())) {
corpus->add_document(doc);
}
return corpus;
}
} // whole ns
} // Corpus2 ns
#ifndef LIBCORPUS2_WHOLE_POLIQARPCORPUSREADER_H
#define LIBCORPUS2_WHOLE_POLIQARPCORPUSREADER_H
#include <string>
#include <boost/shared_ptr.hpp>
#include <libcorpus2_whole/corpus.h>
#include <libcorpus2_whole/io/poliqarpdocumentreader.h>
#include <libcorpus2_whole/io/reader_i.h>
namespace Corpus2 {
namespace whole {
class PoliqarpCorpusReader : public CorpusReaderI
{
public:
PoliqarpCorpusReader(const Tagset& tagset);
boost::shared_ptr<Corpus> read(const std::string& corpus_file);
private:
const Tagset& tagset_;
boost::shared_ptr<PoliqarpDocumentReader> pq_doc_reader_;
};
} // whole ns
} // Corpus2 ns
#endif // LIBCORPUS2_WHOLE_POLIQARPCORPUSREADER_H
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment