7358fad0537ff9e0b739582d67a4c04a4989bb67
[senf.git] / senf / Packets / ListBParser.cti
1 // $Id$
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Stefan Bund <g0dil@berlios.de>
7 //
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.
12 //
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.
17 //
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.
22
23 /** \file
24     \brief ListBParser inline template implementation */
25
26 #include "ListBParser.ih"
27
28 // Custom includes
29
30 #define prefix_ inline
31 ///////////////////////////////cti.p///////////////////////////////////////
32
33 ///////////////////////////////////////////////////////////////////////////
34 // senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>
35
36 template <class ElementParser, class AuxPolicy>
37 prefix_ senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::ListBParser_Policy()
38 {}
39
40 template <class ElementParser, class AuxPolicy>
41 template <class Arg>
42 prefix_
43 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::ListBParser_Policy(Arg const & arg)
44     : AuxPolicy (arg)
45 {}
46
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)
50     const
51 {
52     return AuxPolicy::aux(i,s) + AuxPolicy::aux_bytes;
53 }
54
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)
58     const
59 {
60     parser_type p (*this, i, s);
61     container_type c (p);
62     return std::distance(c.begin(),c.end());
63 }
64
65 template <class ElementParser, class AuxPolicy>
66 prefix_ void senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::init(data_iterator i,
67                                                                              state_type s)
68     const
69 {
70     AuxPolicy::aux(0,i,s);
71 }
72
73 ///////////////////////////////////////////////////////////////////////////
74 // senf::detail::ListBParser_Policy<ElementParser,BytesParser>
75
76 template <class ElementParser, class AuxPolicy>
77 prefix_
78 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::
79 container_policy(parser_policy const & p)
80     : AuxPolicy (p)
81 {
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()));
84     for( n_=0; i!=e; 
85          ++n_, std::advance(i,senf::bytes(ElementParser(i,parser_type::get(p).state())))) ;
86     container_size_ = parser_type::get(p).data().size();
87 }
88
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,
92                                                                                    state_type s)
93     const
94 {
95     return AuxPolicy::aux(i,s) + AuxPolicy::aux_bytes;
96 }
97
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,
101                                                                                   state_type s)
102     const
103 {
104     return n_;
105 }
106
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)
110 {
111     n_ = 0;
112     container_size_ = s->size();
113     AuxPolicy::aux(0,i,s);
114 }
115
116 template <class ElementParser, class AuxPolicy>
117 prefix_ void
118 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::
119 construct(container_type & c)
120     const
121 {}
122
123 template <class ElementParser, class AuxPolicy>
124 prefix_ void
125 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::
126 destruct(container_type & c)
127     const
128 {}
129
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)
133 {
134     size_type b (senf::bytes(ElementParser(p,c.state())));
135     AuxPolicy::aux( AuxPolicy::aux(c.i(), c.state())-b, c.i(), c.state());
136     --n_;
137     // The container will be reduced by b bytes directly after this call
138     container_size_ = c.data().size()-b;
139 }
140
141 template <class ElementParser, class AuxPolicy>
142 prefix_ void
143 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::
144 insert(container_type & c, data_iterator p)
145 {
146     size_type b (senf::bytes(ElementParser(p,c.state())));
147     AuxPolicy::aux( AuxPolicy::aux(c.i(), c.state())+b, c.i(), c.state());
148     ++n_;
149     container_size_ = c.data().size();
150 }
151
152 template <class ElementParser, class AuxPolicy>
153 prefix_ void
154 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::
155 update(container_type const & c)
156     const
157 {
158     if (container_size_ == c.data().size())
159         return;
160     data_iterator i (AuxPolicy::adjust(c.i(), c.state()));
161     data_iterator j (i);
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();
165 }
166
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)
171     const
172 {
173     return AuxPolicy::adjust(c.i(), c.state());
174 }
175
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)
180     const
181 {
182     return boost::next(AuxPolicy::adjust(c.i(), c.state()),aux(c.i(),c.state()));
183 }
184
185 template <class ElementParser, class AuxPolicy>
186 prefix_ void
187 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::
188 setFromPosition(container_type const & c, iterator_data & d, data_iterator p)
189     const
190 {}
191
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)
196     const
197 {
198     return boost::next( container_type::iterator::get(d).i(),
199                         senf::bytes(ElementParser( container_type::iterator::get(d).i(), 
200                                                    c.state() )) );
201 }
202
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)
207     const
208 {
209     return container_type::iterator::get(d).i();
210 }
211
212 ///////////////////////////////cti.e///////////////////////////////////////
213 #undef prefix_
214
215 \f
216 // Local Variables:
217 // mode: c++
218 // fill-column: 100
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"
224 // End: