2012-12-02 22:14:24 +01:00
|
|
|
// Copyright (c) 2012, Thomas Goyne <plorkyeran@aegisub.org>
|
2006-01-16 22:02:54 +01:00
|
|
|
//
|
2012-12-02 22:14:24 +01:00
|
|
|
// Permission to use, copy, modify, and distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice appear in all copies.
|
2006-01-16 22:02:54 +01:00
|
|
|
//
|
2012-12-02 22:14:24 +01:00
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
2006-01-16 22:02:54 +01:00
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// Aegisub Project http://www.aegisub.org/
|
|
|
|
|
|
|
|
/// @file text_file_reader.cpp
|
|
|
|
/// @brief Read plain text files line by line
|
|
|
|
/// @ingroup utility
|
|
|
|
///
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2009-01-04 07:31:48 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
#include "text_file_reader.h"
|
2010-08-03 00:14:11 +02:00
|
|
|
|
2010-07-07 04:41:46 +02:00
|
|
|
#include <libaegisub/io.h>
|
2010-06-01 10:21:30 +02:00
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
#include <algorithm>
|
|
|
|
#include <boost/algorithm/string/predicate.hpp>
|
|
|
|
#include <boost/algorithm/string/trim.hpp>
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
TextFileReader::TextFileReader(agi::fs::path const& filename, std::string encoding, bool trim)
|
2013-04-13 17:15:36 +02:00
|
|
|
: file(agi::io::Open(filename, true))
|
|
|
|
, trim(trim)
|
|
|
|
, iter(agi::line_iterator<std::string>(*file, encoding))
|
2010-06-03 22:32:25 +02:00
|
|
|
{
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TextFileReader::~TextFileReader() {
|
|
|
|
}
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
std::string TextFileReader::ReadLineFromFile() {
|
|
|
|
std::string str = *iter;
|
2010-07-07 04:41:46 +02:00
|
|
|
++iter;
|
2013-01-04 16:01:50 +01:00
|
|
|
if (trim)
|
|
|
|
boost::trim(str);
|
|
|
|
if (boost::starts_with(str, "\xEF\xBB\xBF"))
|
|
|
|
str.erase(0, 3);
|
2010-07-07 04:41:46 +02:00
|
|
|
return str;
|
|
|
|
}
|