switch to new MPL based Fraunhofer FOKUS Public License
[senf.git] / senf / Packets / VectorParser.ih
1 // $Id$
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 //
6 // The contents of this file are subject to the Fraunhofer FOKUS Public License
7 // Version 1.0 (the "License"); you may not use this file except in compliance
8 // with the License. You may obtain a copy of the License at 
9 // http://senf.berlios.de/license.html
10 //
11 // The Fraunhofer FOKUS Public License Version 1.0 is based on, 
12 // but modifies the Mozilla Public License Version 1.1.
13 // See the full license text for the amendments.
14 //
15 // Software distributed under the License is distributed on an "AS IS" basis, 
16 // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
17 // for the specific language governing rights and limitations under the License.
18 //
19 // The Original Code is Fraunhofer FOKUS code.
20 //
21 // The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. 
22 // (registered association), Hansastraße 27 c, 80686 Munich, Germany.
23 // All Rights Reserved.
24 //
25 // Contributor(s):
26 //   Stefan Bund <g0dil@berlios.de>
27
28 /** \file
29     \brief VectorParser internal header */
30
31 #ifndef IH_SENF_Packets_VectorParser_
32 #define IH_SENF_Packets_VectorParser_ 1
33
34 // Custom includes
35
36 //-/////////////////////////////////////////////////////////////////////////////////////////////////
37
38 namespace senf {
39 namespace detail {
40
41 #ifndef DOXYGEN
42
43     template <class ElementParser, class AuxPolicy, class AuxTag>
44     struct VectorParserPolicy
45     {};
46
47     template <class ElementParser, class AuxPolicy>
48     struct VectorParserPolicy<ElementParser, AuxPolicy, senf::detail::auxtag::none>
49     {
50         typedef AuxPolicy type;
51     };
52
53     template <class ElementParser, class AuxPolicy, class Transform>
54     struct VectorParserPolicy<ElementParser, AuxPolicy,
55                               senf::detail::auxtag::transform<Transform,
56                                                               senf::detail::auxtag::none> >
57     {
58         typedef senf::detail::TransformAuxParserPolicy<AuxPolicy, Transform> type;
59     };
60
61     template <unsigned fixedSize>
62     struct VectorParserBytesTransform
63     {
64         typedef PacketParserBase::size_type value_type;
65         static value_type get(value_type v) { return v/fixedSize; }
66         static value_type set(value_type v) { return v*fixedSize; }
67     };
68
69     template <class ElementParser, class AuxPolicy>
70     struct VectorParserPolicy<ElementParser, AuxPolicy, senf::detail::auxtag::bytes>
71     {
72         typedef senf::detail::TransformAuxParserPolicy<
73             AuxPolicy,
74             VectorParserBytesTransform<ElementParser::fixed_bytes> > type;
75     };
76
77     template <class ElementParser>
78     struct VectorParserTraits
79     {
80         template <class AuxPolicy, class AuxTag>
81         struct parser {
82             typedef senf::VectorParser<
83                 ElementParser,
84                 typename VectorParserPolicy<ElementParser, AuxPolicy, AuxTag>::type > type;
85         };
86     };
87
88
89 #   define SENF_PARSER_VECTOR_I(access, name, size, elt_type)                                     \
90         SENF_PARSER_REQUIRE_VAR(vector)                                                           \
91         SENF_PARSER_COLLECTION_I( access,                                                         \
92                                   name,                                                           \
93                                   size,                                                           \
94                                   senf::detail::VectorParserTraits<elt_type> )
95
96 #endif
97
98 }}
99
100 //-/////////////////////////////////////////////////////////////////////////////////////////////////
101 #endif
102
103 \f
104 // Local Variables:
105 // mode: c++
106 // fill-column: 100
107 // comment-column: 40
108 // c-file-style: "senf"
109 // indent-tabs-mode: nil
110 // ispell-local-dictionary: "american"
111 // compile-command: "scons -u test"
112 // End: