Update doclib/html-munge.xsl to remove external modules from the modules page
[senf.git] / Packets / ParseListN.ct
1 // Copyright (C) 2007 
2 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
3 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
4 //     Stefan Bund <g0dil@berlios.de>
5 //
6 // This program is free software; you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation; either version 2 of the License, or
9 // (at your option) any later version.
10 //
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 // GNU General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the
18 // Free Software Foundation, Inc.,
19 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20
21 /** \file
22     \brief ParseListN non-inline template implementation  */
23
24 #include "ParseListN.ih"
25
26 // Custom includes
27
28 #define prefix_
29 ///////////////////////////////ct.p////////////////////////////////////////
30
31 template <class ElementParser, class SizeParser>
32 prefix_ void
33 senf::detail::Parse_ListN_Policy<ElementParser,SizeParser>::iterator_policy::
34 setFromPosition(iterator i, state_type s, iterator p)
35 {
36     l_ = i;
37     if (p == data(s).end()) {
38         n_ = 0;
39         return;
40     }
41     n_ = SizeParser(i,s);
42     iterator j (boost::next(i,SizeParser::fixed_bytes));
43     for (; n_; --n_, j += ElementParser(j,s).bytes())
44         if (j==p)
45             return;
46     BOOST_ASSERT( false );
47 }
48
49 template <class ElementParser, class SizeParser>
50 prefix_ typename senf::detail::Parse_ListN_Policy<ElementParser,SizeParser>::iterator
51 senf::detail::Parse_ListN_Policy<ElementParser,SizeParser>::iterator_policy::raw(iterator i,
52                                                                                  state_type s)
53     const
54 {
55     if (i != data(s).end())
56         return i;
57     size_type n (SizeParser(l_,s));
58     iterator j (boost::next(l_,SizeParser::fixed_bytes));
59     for (; n; --n)
60         j += ElementParser(j,s).bytes();
61     return j;
62 }
63
64 ///////////////////////////////ct.e////////////////////////////////////////
65 #undef prefix_
66
67 \f
68 // Local Variables:
69 // mode: c++
70 // fill-column: 100
71 // comment-column: 40
72 // c-file-style: "senf"
73 // indent-tabs-mode: nil
74 // ispell-local-dictionary: "american"
75 // compile-command: "scons -u test"
76 // End: