7c0cfad275cb9f252ef8931fde86317bdca00ca8
[senf.git] / Packets / ListNParser.ih
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 ListNParser internal header */
25
26 #ifndef IH_ListNParser_
27 #define IH_ListNParser_ 1
28
29 // Custom includes
30
31 ///////////////////////////////ih.p////////////////////////////////////////
32
33 namespace senf {
34 namespace detail {
35
36     /** \brief Internal: ListPolicy defining the ListNParser parser
37         \internal
38         \see \ref ListNParser
39      */
40     template <class ElementParser, class SizeParser>
41     struct ListNParser_Policy
42     {
43         typedef PacketParserBase::data_iterator iterator;
44         typedef PacketParserBase::state_type state_type;
45         typedef PacketParserBase::size_type size_type;
46         typedef ElementParser element_type;
47         typedef ListParser< ListNParser_Policy > parser_type;
48         typedef ListParser_Container< ListNParser_Policy > container_type;
49
50         static const size_type init_bytes = SizeParser::fixed_bytes;
51
52         size_type bytes  (iterator i, state_type s) const;
53         size_type size   (iterator i, state_type s) const;
54         void      init   (iterator i, state_type s) const;
55         void      erase  (iterator i, state_type s, iterator p) const;
56         void      insert (iterator i, state_type s, iterator p) const;
57         void      update (iterator i, state_type s) const;
58
59         /** \brief Iternal: ListNParser_Policy's iterator policy
60             \internal
61          */
62         struct iterator_policy
63         {
64             iterator setBegin        (iterator i, state_type s);
65             iterator setEnd          (iterator i, state_type s);
66             void     setFromPosition (iterator i, state_type s, iterator p);
67             iterator next            (iterator i, state_type s);
68             iterator raw             (iterator i, state_type s) const;
69
70             size_type n_;
71             iterator l_;
72         };
73
74         static PacketData & data(state_type s);
75     };
76
77 }}
78
79 ///////////////////////////////ih.e////////////////////////////////////////
80 #endif
81
82 \f
83 // Local Variables:
84 // mode: c++
85 // fill-column: 100
86 // comment-column: 40
87 // c-file-style: "senf"
88 // indent-tabs-mode: nil
89 // ispell-local-dictionary: "american"
90 // compile-command: "scons -u test"
91 // End: