mirror of
https://github.com/nemtrif/utfcpp.git
synced 2025-04-06 05:55:08 +00:00
add class iterator2
the iterator class doesn't work with istream_iterator
This commit is contained in:
parent
170e2d11f5
commit
df0e5bad02
1 changed files with 62 additions and 0 deletions
|
@ -260,6 +260,68 @@ namespace utf8
|
|||
return temp;
|
||||
}
|
||||
}; // class iterator
|
||||
|
||||
//the iterator2 class
|
||||
template <typename octet_iterator>
|
||||
class iterator2 : public std::iterator <std::input_iterator_tag, uint32_t> {
|
||||
private:
|
||||
uint32_t cp{};
|
||||
octet_iterator p{};
|
||||
const octet_iterator e{};
|
||||
bool ok{};
|
||||
|
||||
void read()
|
||||
{
|
||||
ok = p != e;
|
||||
if(ok)
|
||||
{
|
||||
cp = utf8::unchecked::next(p);
|
||||
}
|
||||
}
|
||||
public:
|
||||
iterator2 () {}
|
||||
iterator2 (octet_iterator begin, octet_iterator end): p{begin}, e{end} { read(); }
|
||||
iterator2 (const iterator2& a): cp{a.cp}, p{a.p}, e{a.e}, ok{a.ok} {}
|
||||
|
||||
uint32_t operator * () const { return cp; }
|
||||
uint32_t* operator -> () const { return &cp; }
|
||||
|
||||
iterator2& operator ++ ()
|
||||
{
|
||||
if(!ok)
|
||||
{
|
||||
throw std::runtime_error("no such element");
|
||||
}
|
||||
read();
|
||||
return *this;
|
||||
}
|
||||
iterator2 operator ++ (int)
|
||||
{
|
||||
if(!ok)
|
||||
{
|
||||
throw std::runtime_error("no such element");
|
||||
}
|
||||
iterator2 tmp = *this;
|
||||
read();
|
||||
return tmp;
|
||||
}
|
||||
|
||||
bool equals(const iterator2& a) const
|
||||
{
|
||||
return ok == a.ok && (!ok || p == a.p);
|
||||
}
|
||||
}; // class iterator2
|
||||
|
||||
template <typename octet_iterator>
|
||||
inline bool operator==(const iterator2<octet_iterator>& a, const iterator2<octet_iterator>& b)
|
||||
{
|
||||
return a.equals(b);
|
||||
}
|
||||
template <typename octet_iterator>
|
||||
inline bool operator!=(const iterator2<octet_iterator>& a, const iterator2<octet_iterator>& b)
|
||||
{
|
||||
return !a.equals(b);
|
||||
}
|
||||
|
||||
} // namespace utf8::unchecked
|
||||
} // namespace utf8
|
||||
|
|
Loading…
Add table
Reference in a new issue