Packets: Migrate VariantParser to use AuxParser/container infrstructure
[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     template <class ElementParser, class AuxPolicy, class AuxTag>
37     struct VectorParserPolicy
38     {};
39
40     template <class ElementParser, class AuxPolicy>
41     struct VectorParserPolicy<ElementParser, AuxPolicy, senf::detail::auxtag::none>
42     {
43         typedef AuxPolicy type;
44     };
45
46     template <class ElementParser, class AuxPolicy, class Transform>
47     struct VectorParserPolicy<ElementParser, AuxPolicy, 
48                               senf::detail::auxtag::transform<Transform,
49                                                               senf::detail::auxtag::none> >
50     {
51         typedef senf::detail::TransformAuxParserPolicy<AuxPolicy, Transform> type;
52     };
53
54     template <unsigned fixedSize>
55     struct VectorParserBytesTransform
56     {
57         typedef PacketParserBase::size_type value_type;
58         static value_type get(value_type v) { return v/fixedSize; }
59         static value_type set(value_type v) { return v*fixedSize; }
60     };
61
62     template <class ElementParser, class AuxPolicy>
63     struct VectorParserPolicy<ElementParser, AuxPolicy, senf::detail::auxtag::bytes>
64     {
65         typedef senf::detail::TransformAuxParserPolicy<
66             AuxPolicy, 
67             VectorParserBytesTransform<ElementParser::fixed_bytes> > type;
68     };
69
70     template <class ElementParser>
71     struct VectorParserTraits
72     {
73         template <class AuxPolicy, class AuxTag>
74         struct parser {
75             typedef senf::VectorParser<
76                 ElementParser, 
77                 typename VectorParserPolicy<ElementParser, AuxPolicy, AuxTag>::type > type;
78         };
79     };
80
81
82 #   define SENF_PARSER_VECTOR_I(access, name, size, elt_type)                                     \
83         SENF_PARSER_REQUIRE_VAR(vector)                                                           \
84         SENF_PARSER_COLLECTION_I( access,                                                         \
85                                   name,                                                           \
86                                   size,                                                           \
87                                   senf::detail::VectorParserTraits<elt_type> )
88
89 }}
90                               
91 ///////////////////////////////ih.e////////////////////////////////////////
92 #endif
93
94 \f
95 // Local Variables:
96 // mode: c++
97 // fill-column: 100
98 // comment-column: 40
99 // c-file-style: "senf"
100 // indent-tabs-mode: nil
101 // ispell-local-dictionary: "american"
102 // compile-command: "scons -u test"
103 // End: