4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 // Stefan Bund <g0dil@berlios.de>
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 \brief ListBParser inline template implementation */
26 #include "ListBParser.ih"
30 #define prefix_ inline
31 ///////////////////////////////cti.p///////////////////////////////////////
33 ///////////////////////////////////////////////////////////////////////////
34 // senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>
36 template <class ElementParser, class AuxPolicy>
37 prefix_ senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::ListBParser_Policy()
40 template <class ElementParser, class AuxPolicy>
43 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::ListBParser_Policy(Arg const & arg)
47 template <class ElementParser, class AuxPolicy>
48 prefix_ typename senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::size_type
49 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::bytes(data_iterator i, state_type s)
52 return AuxPolicy::aux(i,s) + AuxPolicy::aux_bytes;
55 template <class ElementParser, class AuxPolicy>
56 prefix_ typename senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::size_type
57 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::size(data_iterator i, state_type s)
60 parser_type p (*this, i, s);
62 return std::distance(c.begin(),c.end());
65 template <class ElementParser, class AuxPolicy>
66 prefix_ void senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::init(data_iterator i,
70 AuxPolicy::aux(0,i,s);
73 ///////////////////////////////////////////////////////////////////////////
74 // senf::detail::ListBParser_Policy<ElementParser,BytesParser>
76 template <class ElementParser, class AuxPolicy>
78 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::
79 container_policy(parser_policy const & p)
82 data_iterator const e (boost::next(parser_type::get(p).i(),parser_type::get(p).bytes()));
83 data_iterator i (AuxPolicy::adjust(parser_type::get(p).i(), parser_type::get(p).state()));
85 ++n_, std::advance(i,senf::bytes(ElementParser(i,parser_type::get(p).state())))) ;
86 container_size_ = parser_type::get(p).data().size();
89 template <class ElementParser, class AuxPolicy>
90 prefix_ typename senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::size_type
91 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::bytes(data_iterator i,
95 return AuxPolicy::aux(i,s) + AuxPolicy::aux_bytes;
98 template <class ElementParser, class AuxPolicy>
99 prefix_ typename senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::size_type
100 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::size(data_iterator i,
107 template <class ElementParser, class AuxPolicy>
108 prefix_ void senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::
109 init(data_iterator i, state_type s)
112 container_size_ = s->size();
113 AuxPolicy::aux(0,i,s);
116 template <class ElementParser, class AuxPolicy>
118 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::
119 construct(container_type & c)
123 template <class ElementParser, class AuxPolicy>
125 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::
126 destruct(container_type & c)
130 template <class ElementParser, class AuxPolicy>
131 prefix_ void senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::
132 erase(container_type & c, data_iterator p)
134 size_type b (senf::bytes(ElementParser(p,c.state())));
135 AuxPolicy::aux( AuxPolicy::aux(c.i(), c.state())-b, c.i(), c.state());
137 // The container will be reduced by b bytes directly after this call
138 container_size_ = c.data().size()-b;
141 template <class ElementParser, class AuxPolicy>
143 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::
144 insert(container_type & c, data_iterator p)
146 size_type b (senf::bytes(ElementParser(p,c.state())));
147 AuxPolicy::aux( AuxPolicy::aux(c.i(), c.state())+b, c.i(), c.state());
149 container_size_ = c.data().size();
152 template <class ElementParser, class AuxPolicy>
154 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::
155 update(container_type const & c)
158 if (container_size_ == c.data().size())
160 data_iterator i (AuxPolicy::adjust(c.i(), c.state()));
162 for (size_type n (n_); n; --n, std::advance(j,senf::bytes(ElementParser(j,c.state())))) ;
163 aux( std::distance(i,j), c.i(), c.state() );
164 container_size_ = c.data().size();
167 template <class ElementParser, class AuxPolicy>
168 prefix_ typename senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::data_iterator
169 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::
170 setBegin(container_type const & c, iterator_data & d)
173 return AuxPolicy::adjust(c.i(), c.state());
176 template <class ElementParser, class AuxPolicy>
177 prefix_ typename senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::data_iterator
178 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::
179 setEnd(container_type const & c, iterator_data & d)
182 return boost::next(AuxPolicy::adjust(c.i(), c.state()),aux(c.i(),c.state()));
185 template <class ElementParser, class AuxPolicy>
187 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::
188 setFromPosition(container_type const & c, iterator_data & d, data_iterator p)
192 template <class ElementParser, class AuxPolicy>
193 prefix_ typename senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::data_iterator
194 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::
195 next(container_type const & c, iterator_data & d)
198 return boost::next( container_type::iterator::get(d).i(),
199 senf::bytes(ElementParser( container_type::iterator::get(d).i(),
203 template <class ElementParser, class AuxPolicy>
204 prefix_ typename senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::data_iterator
205 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::
206 raw(container_type const & c, iterator_data const & d)
209 return container_type::iterator::get(d).i();
212 ///////////////////////////////cti.e///////////////////////////////////////
219 // comment-column: 40
220 // c-file-style: "senf"
221 // indent-tabs-mode: nil
222 // ispell-local-dictionary: "american"
223 // compile-command: "scons -u test"