1 | /*=============================================================================
|
---|
2 | Copyright (c) 2001-2003 Joel de Guzman
|
---|
3 | Copyright (c) 2001-2003 Daniel Nuffer
|
---|
4 | http://spirit.sourceforge.net/
|
---|
5 |
|
---|
6 | Use, modification and distribution is subject to the Boost Software
|
---|
7 | License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
---|
8 | http://www.boost.org/LICENSE_1_0.txt)
|
---|
9 | =============================================================================*/
|
---|
10 | #ifndef BOOST_SPIRIT_BASIC_CHSET_IPP
|
---|
11 | #define BOOST_SPIRIT_BASIC_CHSET_IPP
|
---|
12 |
|
---|
13 | ///////////////////////////////////////////////////////////////////////////////
|
---|
14 | #include <bitset>
|
---|
15 | #include <boost/spirit/utility/impl/chset/basic_chset.hpp>
|
---|
16 |
|
---|
17 | ///////////////////////////////////////////////////////////////////////////////
|
---|
18 | namespace boost { namespace spirit {
|
---|
19 |
|
---|
20 | ///////////////////////////////////////////////////////////////////////////////
|
---|
21 | //
|
---|
22 | // basic_chset: character set implementation
|
---|
23 | //
|
---|
24 | ///////////////////////////////////////////////////////////////////////////////
|
---|
25 | template <typename CharT>
|
---|
26 | inline basic_chset<CharT>::basic_chset() {}
|
---|
27 |
|
---|
28 | //////////////////////////////////
|
---|
29 | template <typename CharT>
|
---|
30 | inline basic_chset<CharT>::basic_chset(basic_chset const& arg_)
|
---|
31 | : rr(arg_.rr) {}
|
---|
32 |
|
---|
33 | //////////////////////////////////
|
---|
34 | template <typename CharT>
|
---|
35 | inline bool
|
---|
36 | basic_chset<CharT>::test(CharT v) const
|
---|
37 | { return rr.test(v); }
|
---|
38 |
|
---|
39 | //////////////////////////////////
|
---|
40 | template <typename CharT>
|
---|
41 | inline void
|
---|
42 | basic_chset<CharT>::set(CharT from, CharT to)
|
---|
43 | { rr.set(utility::impl::range<CharT>(from, to)); }
|
---|
44 |
|
---|
45 | //////////////////////////////////
|
---|
46 | template <typename CharT>
|
---|
47 | inline void
|
---|
48 | basic_chset<CharT>::set(CharT c)
|
---|
49 | { rr.set(utility::impl::range<CharT>(c, c)); }
|
---|
50 |
|
---|
51 | //////////////////////////////////
|
---|
52 | template <typename CharT>
|
---|
53 | inline void
|
---|
54 | basic_chset<CharT>::clear(CharT from, CharT to)
|
---|
55 | { rr.clear(utility::impl::range<CharT>(from, to)); }
|
---|
56 |
|
---|
57 | //////////////////////////////////
|
---|
58 | template <typename CharT>
|
---|
59 | inline void
|
---|
60 | basic_chset<CharT>::clear()
|
---|
61 | { rr.clear(); }
|
---|
62 |
|
---|
63 | /////////////////////////////////
|
---|
64 | template <typename CharT>
|
---|
65 | inline void
|
---|
66 | basic_chset<CharT>::inverse()
|
---|
67 | {
|
---|
68 | basic_chset inv;
|
---|
69 | inv.set(
|
---|
70 | (std::numeric_limits<CharT>::min)(),
|
---|
71 | (std::numeric_limits<CharT>::max)()
|
---|
72 | );
|
---|
73 | inv -= *this;
|
---|
74 | swap(inv);
|
---|
75 | }
|
---|
76 |
|
---|
77 | /////////////////////////////////
|
---|
78 | template <typename CharT>
|
---|
79 | inline void
|
---|
80 | basic_chset<CharT>::swap(basic_chset& x)
|
---|
81 | { rr.swap(x.rr); }
|
---|
82 |
|
---|
83 | /////////////////////////////////
|
---|
84 | template <typename CharT>
|
---|
85 | inline basic_chset<CharT>&
|
---|
86 | basic_chset<CharT>::operator|=(basic_chset<CharT> const& x)
|
---|
87 | {
|
---|
88 | typedef typename utility::impl::range_run<CharT>::const_iterator const_iterator;
|
---|
89 | for (const_iterator iter = x.rr.begin(); iter != x.rr.end(); ++iter)
|
---|
90 | rr.set(*iter);
|
---|
91 | return *this;
|
---|
92 | }
|
---|
93 |
|
---|
94 | /////////////////////////////////
|
---|
95 | template <typename CharT>
|
---|
96 | inline basic_chset<CharT>&
|
---|
97 | basic_chset<CharT>::operator&=(basic_chset<CharT> const& x)
|
---|
98 | {
|
---|
99 | basic_chset inv;
|
---|
100 | inv.set(
|
---|
101 | (std::numeric_limits<CharT>::min)(),
|
---|
102 | (std::numeric_limits<CharT>::max)()
|
---|
103 | );
|
---|
104 | inv -= x;
|
---|
105 | *this -= inv;
|
---|
106 | return *this;
|
---|
107 | }
|
---|
108 |
|
---|
109 | /////////////////////////////////
|
---|
110 | template <typename CharT>
|
---|
111 | inline basic_chset<CharT>&
|
---|
112 | basic_chset<CharT>::operator-=(basic_chset<CharT> const& x)
|
---|
113 | {
|
---|
114 | typedef typename utility::impl::range_run<CharT>::const_iterator const_iterator;
|
---|
115 | for (const_iterator iter = x.rr.begin(); iter != x.rr.end(); ++iter)
|
---|
116 | rr.clear(*iter);
|
---|
117 | return *this;
|
---|
118 | }
|
---|
119 |
|
---|
120 | /////////////////////////////////
|
---|
121 | template <typename CharT>
|
---|
122 | inline basic_chset<CharT>&
|
---|
123 | basic_chset<CharT>::operator^=(basic_chset<CharT> const& x)
|
---|
124 | {
|
---|
125 | basic_chset bma = x;
|
---|
126 | bma -= *this;
|
---|
127 | *this -= x;
|
---|
128 | *this |= bma;
|
---|
129 | return *this;
|
---|
130 | }
|
---|
131 |
|
---|
132 | #if (CHAR_BIT == 8)
|
---|
133 |
|
---|
134 | ///////////////////////////////////////////////////////////////////////////////
|
---|
135 | //
|
---|
136 | // basic_chset: specializations for 8 bit chars using std::bitset
|
---|
137 | //
|
---|
138 | ///////////////////////////////////////////////////////////////////////////////
|
---|
139 | template <typename CharT>
|
---|
140 | inline basic_chset_8bit<CharT>::basic_chset_8bit() {}
|
---|
141 |
|
---|
142 | /////////////////////////////////
|
---|
143 | template <typename CharT>
|
---|
144 | inline basic_chset_8bit<CharT>::basic_chset_8bit(basic_chset_8bit const& arg_)
|
---|
145 | : bset(arg_.bset) {}
|
---|
146 |
|
---|
147 | /////////////////////////////////
|
---|
148 | template <typename CharT>
|
---|
149 | inline bool
|
---|
150 | basic_chset_8bit<CharT>::test(CharT v) const
|
---|
151 | { return bset.test((unsigned char)v); }
|
---|
152 |
|
---|
153 | /////////////////////////////////
|
---|
154 | template <typename CharT>
|
---|
155 | inline void
|
---|
156 | basic_chset_8bit<CharT>::set(CharT from, CharT to)
|
---|
157 | {
|
---|
158 | for (int i = from; i <= to; ++i)
|
---|
159 | bset.set((unsigned char)i);
|
---|
160 | }
|
---|
161 |
|
---|
162 | /////////////////////////////////
|
---|
163 | template <typename CharT>
|
---|
164 | inline void
|
---|
165 | basic_chset_8bit<CharT>::set(CharT c)
|
---|
166 | { bset.set((unsigned char)c); }
|
---|
167 |
|
---|
168 | /////////////////////////////////
|
---|
169 | template <typename CharT>
|
---|
170 | inline void
|
---|
171 | basic_chset_8bit<CharT>::clear(CharT from, CharT to)
|
---|
172 | {
|
---|
173 | for (int i = from; i <= to; ++i)
|
---|
174 | bset.reset((unsigned char)i);
|
---|
175 | }
|
---|
176 |
|
---|
177 | /////////////////////////////////
|
---|
178 | template <typename CharT>
|
---|
179 | inline void
|
---|
180 | basic_chset_8bit<CharT>::clear(CharT c)
|
---|
181 | { bset.reset((unsigned char)c); }
|
---|
182 |
|
---|
183 | /////////////////////////////////
|
---|
184 | template <typename CharT>
|
---|
185 | inline void
|
---|
186 | basic_chset_8bit<CharT>::clear()
|
---|
187 | { bset.reset(); }
|
---|
188 |
|
---|
189 | /////////////////////////////////
|
---|
190 | template <typename CharT>
|
---|
191 | inline void
|
---|
192 | basic_chset_8bit<CharT>::inverse()
|
---|
193 | { bset.flip(); }
|
---|
194 |
|
---|
195 | /////////////////////////////////
|
---|
196 | template <typename CharT>
|
---|
197 | inline void
|
---|
198 | basic_chset_8bit<CharT>::swap(basic_chset_8bit& x)
|
---|
199 | { std::swap(bset, x.bset); }
|
---|
200 |
|
---|
201 | /////////////////////////////////
|
---|
202 | template <typename CharT>
|
---|
203 | inline basic_chset_8bit<CharT>&
|
---|
204 | basic_chset_8bit<CharT>::operator|=(basic_chset_8bit const& x)
|
---|
205 | {
|
---|
206 | bset |= x.bset;
|
---|
207 | return *this;
|
---|
208 | }
|
---|
209 |
|
---|
210 | /////////////////////////////////
|
---|
211 | template <typename CharT>
|
---|
212 | inline basic_chset_8bit<CharT>&
|
---|
213 | basic_chset_8bit<CharT>::operator&=(basic_chset_8bit const& x)
|
---|
214 | {
|
---|
215 | bset &= x.bset;
|
---|
216 | return *this;
|
---|
217 | }
|
---|
218 |
|
---|
219 | /////////////////////////////////
|
---|
220 | template <typename CharT>
|
---|
221 | inline basic_chset_8bit<CharT>&
|
---|
222 | basic_chset_8bit<CharT>::operator-=(basic_chset_8bit const& x)
|
---|
223 | {
|
---|
224 | bset &= ~x.bset;
|
---|
225 | return *this;
|
---|
226 | }
|
---|
227 |
|
---|
228 | /////////////////////////////////
|
---|
229 | template <typename CharT>
|
---|
230 | inline basic_chset_8bit<CharT>&
|
---|
231 | basic_chset_8bit<CharT>::operator^=(basic_chset_8bit const& x)
|
---|
232 | {
|
---|
233 | bset ^= x.bset;
|
---|
234 | return *this;
|
---|
235 | }
|
---|
236 |
|
---|
237 | #endif
|
---|
238 | }} // namespace boost::spirit
|
---|
239 |
|
---|
240 | #endif
|
---|
241 |
|
---|