NEW FILE HEADER / COPYRIGHT FORMAT
[senf.git] / Packets / VectorParser.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 VectorParser internal header */
25
26 #ifndef IH_VectorParser_
27 #define IH_VectorParser_ 1
28
29 // Custom includes
30
31 ///////////////////////////////ih.p////////////////////////////////////////
32
33 namespace senf {
34 namespace detail {
35
36     /** \brief Internal: Sizer implementing prefix sizing
37
38         \internal
39
40         This is the sizer policy used by VectorNParser
41      */
42     template <class SizeParser, unsigned Distance>
43     struct VectorNParser_Sizer
44     {
45         typedef PacketParserBase::size_type size_type;
46         typedef PacketParserBase::data_iterator iterator;
47         typedef PacketParserBase::state_type state_type;
48
49         static const size_type init_bytes = 0;
50
51         size_type  size  (iterator i, state_type s) const;
52         void       size  (iterator i, state_type s, size_type v) const;
53         iterator   begin (iterator i, state_type s) const;
54         size_type  bytes (iterator i, state_type s) const;
55         void       init  (iterator i, state_type s) const;
56     };
57
58 #   define SENF_PARSER_VEC_N_I(field, name, size, elt_type)                                       \
59         typedef senf::VectorNParser< elt_type,                                                    \
60                                      BOOST_PP_CAT(size, _t),                                      \
61                                      SENF_PARSER_CURRENT_FIXED_OFFSET()                           \
62                                          - SENF_PARSER_FIXED_OFFSET(size)                         \
63             >::parser BOOST_PP_CAT(name, _vec_t);                                                 \
64         field( name, BOOST_PP_CAT(name, _vec_t) )
65
66 }}
67
68 ///////////////////////////////ih.e////////////////////////////////////////
69 #endif
70
71 \f
72 // Local Variables:
73 // mode: c++
74 // fill-column: 100
75 // comment-column: 40
76 // c-file-style: "senf"
77 // indent-tabs-mode: nil
78 // ispell-local-dictionary: "american"
79 // compile-command: "scons -u test"
80 // End: