Fix SCons 1.2.0 build failure
[senf.git] / 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 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::
118 erase(container_type & c, data_iterator p)
119 {
120     size_type b (senf::bytes(ElementParser(p,c.state())));
121     AuxPolicy::aux( AuxPolicy::aux(c.i(), c.state())-b, c.i(), c.state());
122     --n_;
123     // The container will be reduced by b bytes directly after this call
124     container_size_ = c.data().size()-b;
125 }
126
127 template <class ElementParser, class AuxPolicy>
128 prefix_ void
129 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::
130 insert(container_type & c, data_iterator p)
131 {
132     size_type b (senf::bytes(ElementParser(p,c.state())));
133     AuxPolicy::aux( AuxPolicy::aux(c.i(), c.state())+b, c.i(), c.state());
134     ++n_;
135     container_size_ = c.data().size();
136 }
137
138 template <class ElementParser, class AuxPolicy>
139 prefix_ void
140 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::
141 update(container_type const & c)
142     const
143 {
144     if (container_size_ == c.data().size())
145         return;
146     data_iterator i (AuxPolicy::adjust(c.i(), c.state()));
147     data_iterator j (i);
148     for (size_type n (n_); n; --n, std::advance(j,senf::bytes(ElementParser(j,c.state())))) ;
149     aux( std::distance(i,j), c.i(), c.state() );
150     container_size_ = c.data().size();
151 }
152
153 template <class ElementParser, class AuxPolicy>
154 prefix_ typename senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::data_iterator
155 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::
156 setBegin(container_type const & c, iterator_data & d)
157     const
158 {
159     return AuxPolicy::adjust(c.i(), c.state());
160 }
161
162 template <class ElementParser, class AuxPolicy>
163 prefix_ typename senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::data_iterator
164 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::
165 setEnd(container_type const & c, iterator_data & d)
166     const
167 {
168     return boost::next(AuxPolicy::adjust(c.i(), c.state()),aux(c.i(),c.state()));
169 }
170
171 template <class ElementParser, class AuxPolicy>
172 prefix_ void
173 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::
174 setFromPosition(container_type const & c, iterator_data & d, data_iterator p)
175     const
176 {}
177
178 template <class ElementParser, class AuxPolicy>
179 prefix_ typename senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::data_iterator
180 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::
181 next(container_type const & c, iterator_data & d)
182     const
183 {
184     return boost::next( container_type::iterator::get(d).i(),
185                         senf::bytes(ElementParser( container_type::iterator::get(d).i(), 
186                                                    c.state() )) );
187 }
188
189 template <class ElementParser, class AuxPolicy>
190 prefix_ typename senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::data_iterator
191 senf::detail::ListBParser_Policy<ElementParser,AuxPolicy>::container_policy::
192 raw(container_type const & c, iterator_data const & d)
193     const
194 {
195     return container_type::iterator::get(d).i();
196 }
197
198 ///////////////////////////////cti.e///////////////////////////////////////
199 #undef prefix_
200
201 \f
202 // Local Variables:
203 // mode: c++
204 // fill-column: 100
205 // comment-column: 40
206 // c-file-style: "senf"
207 // indent-tabs-mode: nil
208 // ispell-local-dictionary: "american"
209 // compile-command: "scons -u test"
210 // End: