/* This file is part of Jellyfish.
Jellyfish is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Jellyfish 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with Jellyfish. If not, see .
*/
#ifndef __STREAM_ITERATOR_HPP__
#define __STREAM_ITERATOR_HPP__
#include
#include
#include
#include
#include
#include
#include
namespace jellyfish {
/// Transform an iterator of paths (c string: const char*) into an
/// iterator of std::ifstream. Every file is opened and closed in
/// turn. The object instantiated with no argument is the end marker.
template
class stream_iterator : public std::iterator {
PathIterator begin_, end_;
std::ifstream* stream_;
public:
stream_iterator(PathIterator begin, PathIterator end) :
begin_(begin), end_(end), stream_(0)
{
if(begin_ != end_) {
stream_ = new std::ifstream;
open_file();
}
}
stream_iterator(const stream_iterator& rhs) :
begin_(rhs.begin_), end_(rhs.end_), stream_(rhs.stream_)
{ }
stream_iterator() : begin_(), end_(), stream_() { }
bool operator==(const stream_iterator& rhs) const {
return stream_ == rhs.stream_;
}
bool operator!=(const stream_iterator& rhs) const {
return stream_ != rhs.stream_;
}
std::ifstream& operator*() { return *stream_; }
std::ifstream* operator->() { return stream_; }
stream_iterator& operator++() {
stream_->close();
if(++begin_ != end_) {
open_file();
} else {
delete stream_;
stream_ = 0;
}
return *this;
}
stream_iterator operator++(int) {
stream_iterator res(*this);
++*this;
return res;
}
protected:
void open_file() {
stream_->open(*begin_);
if(stream_->fail())
throw std::runtime_error(err::msg() << "Failed to open file '" << *begin_ << "'");
}
};
}
#endif /* __STREAM_ITERATOR_HPP__ */