sl@0
|
1 |
// Boost token_iterator.hpp -------------------------------------------------//
|
sl@0
|
2 |
|
sl@0
|
3 |
// Copyright John R. Bandela 2001
|
sl@0
|
4 |
// Distributed under the Boost Software License, Version 1.0. (See
|
sl@0
|
5 |
// accompanying file LICENSE_1_0.txt or copy at
|
sl@0
|
6 |
// http://www.boost.org/LICENSE_1_0.txt)
|
sl@0
|
7 |
|
sl@0
|
8 |
// See http://www.boost.org/libs/tokenizer for documentation.
|
sl@0
|
9 |
|
sl@0
|
10 |
// Revision History:
|
sl@0
|
11 |
// 16 Jul 2003 John Bandela
|
sl@0
|
12 |
// Allowed conversions from convertible base iterators
|
sl@0
|
13 |
// 03 Jul 2003 John Bandela
|
sl@0
|
14 |
// Converted to new iterator adapter
|
sl@0
|
15 |
|
sl@0
|
16 |
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef BOOST_TOKENIZER_POLICY_JRB070303_HPP_
|
sl@0
|
19 |
#define BOOST_TOKENIZER_POLICY_JRB070303_HPP_
|
sl@0
|
20 |
|
sl@0
|
21 |
#include<boost/assert.hpp>
|
sl@0
|
22 |
#include<boost/iterator/iterator_adaptor.hpp>
|
sl@0
|
23 |
#include<boost/iterator/detail/minimum_category.hpp>
|
sl@0
|
24 |
#include<boost/token_functions.hpp>
|
sl@0
|
25 |
#include<utility>
|
sl@0
|
26 |
|
sl@0
|
27 |
namespace boost
|
sl@0
|
28 |
{
|
sl@0
|
29 |
template <class TokenizerFunc, class Iterator, class Type>
|
sl@0
|
30 |
class token_iterator
|
sl@0
|
31 |
: public iterator_facade<
|
sl@0
|
32 |
token_iterator<TokenizerFunc, Iterator, Type>
|
sl@0
|
33 |
, Type
|
sl@0
|
34 |
, typename detail::minimum_category<
|
sl@0
|
35 |
forward_traversal_tag
|
sl@0
|
36 |
, typename iterator_traversal<Iterator>::type
|
sl@0
|
37 |
>::type
|
sl@0
|
38 |
, const Type&
|
sl@0
|
39 |
>
|
sl@0
|
40 |
{
|
sl@0
|
41 |
|
sl@0
|
42 |
friend class iterator_core_access;
|
sl@0
|
43 |
|
sl@0
|
44 |
TokenizerFunc f_;
|
sl@0
|
45 |
Iterator begin_;
|
sl@0
|
46 |
Iterator end_;
|
sl@0
|
47 |
bool valid_;
|
sl@0
|
48 |
Type tok_;
|
sl@0
|
49 |
|
sl@0
|
50 |
void increment(){
|
sl@0
|
51 |
BOOST_ASSERT(valid_);
|
sl@0
|
52 |
valid_ = f_(begin_,end_,tok_);
|
sl@0
|
53 |
}
|
sl@0
|
54 |
|
sl@0
|
55 |
const Type& dereference() const {
|
sl@0
|
56 |
BOOST_ASSERT(valid_);
|
sl@0
|
57 |
return tok_;
|
sl@0
|
58 |
}
|
sl@0
|
59 |
template<class Other>
|
sl@0
|
60 |
bool equal(const Other& a) const{
|
sl@0
|
61 |
return (a.valid_ && valid_)
|
sl@0
|
62 |
?( (a.begin_==begin_) && (a.end_ == end_) )
|
sl@0
|
63 |
:(a.valid_==valid_);
|
sl@0
|
64 |
|
sl@0
|
65 |
}
|
sl@0
|
66 |
|
sl@0
|
67 |
void initialize(){
|
sl@0
|
68 |
if(valid_) return;
|
sl@0
|
69 |
f_.reset();
|
sl@0
|
70 |
valid_ = (begin_ != end_)?
|
sl@0
|
71 |
f_(begin_,end_,tok_):false;
|
sl@0
|
72 |
}
|
sl@0
|
73 |
public:
|
sl@0
|
74 |
token_iterator():begin_(),end_(),valid_(false),tok_() { }
|
sl@0
|
75 |
|
sl@0
|
76 |
token_iterator(TokenizerFunc f, Iterator begin, Iterator e = Iterator())
|
sl@0
|
77 |
: f_(f),begin_(begin),end_(e),valid_(false),tok_(){ initialize(); }
|
sl@0
|
78 |
|
sl@0
|
79 |
token_iterator(Iterator begin, Iterator e = Iterator())
|
sl@0
|
80 |
: f_(),begin_(begin),end_(e),valid_(false),tok_() {initialize();}
|
sl@0
|
81 |
|
sl@0
|
82 |
template<class OtherIter>
|
sl@0
|
83 |
token_iterator(
|
sl@0
|
84 |
token_iterator<TokenizerFunc, OtherIter,Type> const& t
|
sl@0
|
85 |
, typename enable_if_convertible<OtherIter, Iterator>::type* = 0)
|
sl@0
|
86 |
: f_(t.tokenizer_function()),begin_(t.base())
|
sl@0
|
87 |
,end_(t.end()),valid_(t.at_end()),tok_(t.current_token()) {}
|
sl@0
|
88 |
|
sl@0
|
89 |
Iterator base()const{return begin_;}
|
sl@0
|
90 |
|
sl@0
|
91 |
Iterator end()const{return end_;};
|
sl@0
|
92 |
|
sl@0
|
93 |
TokenizerFunc tokenizer_function()const{return f_;}
|
sl@0
|
94 |
|
sl@0
|
95 |
Type current_token()const{return tok_;}
|
sl@0
|
96 |
|
sl@0
|
97 |
bool at_end()const{return valid_;}
|
sl@0
|
98 |
|
sl@0
|
99 |
|
sl@0
|
100 |
|
sl@0
|
101 |
|
sl@0
|
102 |
};
|
sl@0
|
103 |
template <
|
sl@0
|
104 |
class TokenizerFunc = char_delimiters_separator<char>,
|
sl@0
|
105 |
class Iterator = std::string::const_iterator,
|
sl@0
|
106 |
class Type = std::string
|
sl@0
|
107 |
>
|
sl@0
|
108 |
class token_iterator_generator {
|
sl@0
|
109 |
|
sl@0
|
110 |
private:
|
sl@0
|
111 |
public:
|
sl@0
|
112 |
typedef token_iterator<TokenizerFunc,Iterator,Type> type;
|
sl@0
|
113 |
};
|
sl@0
|
114 |
|
sl@0
|
115 |
|
sl@0
|
116 |
// Type has to be first because it needs to be explicitly specified
|
sl@0
|
117 |
// because there is no way the function can deduce it.
|
sl@0
|
118 |
template<class Type, class Iterator, class TokenizerFunc>
|
sl@0
|
119 |
typename token_iterator_generator<TokenizerFunc,Iterator,Type>::type
|
sl@0
|
120 |
make_token_iterator(Iterator begin, Iterator end,const TokenizerFunc& fun){
|
sl@0
|
121 |
typedef typename
|
sl@0
|
122 |
token_iterator_generator<TokenizerFunc,Iterator,Type>::type ret_type;
|
sl@0
|
123 |
return ret_type(fun,begin,end);
|
sl@0
|
124 |
}
|
sl@0
|
125 |
|
sl@0
|
126 |
} // namespace boost
|
sl@0
|
127 |
|
sl@0
|
128 |
#endif
|