Packets: first steps for a generic TLV base class
[senf.git] / senf / Packets / DefaultBundle / IPv6ExtOptionType.ct
1 // $Id: IPv6ExtOptionType.ct 869 2008-06-09 13:57:27Z pug $
2 //
3 // Copyright (C) 2009
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Philipp.Batroff@fokus.fraunhofer.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 IPv6Extension-Options non-inline template implementation  */
25
26 //#include "IPv6ExtOptionType.ih"
27
28 // Custom includes
29
30 #define prefix_
31 ///////////////////////////////ct.p////////////////////////////////////////
32
33 template <class ForwardReadableRange>
34 prefix_ void senf::IPv6GenericOptionTLVParser::value(ForwardReadableRange const &range)
35 {
36     unsigned int rangeSize = boost::size(range);
37     
38     if ( (rangeSize-2) != optionLength() )
39         resize(optionLength()+2, rangeSize);
40     std::copy(boost::next(boost::begin(range), 2), boost::next(boost::end(range)), 
41             boost::next(i(), 2 + optionLength() ));
42     unsigned int val = *(boost::begin(range));
43     unsigned int mask = 192u;
44     altAction() = (val & mask) >> 6;
45     mask = 32u;
46     changeFlag() = (val & mask) >> 5;
47     mask = 31u;
48     optionType() = (val & mask);
49     optionLength() = *(boost::next( boost::begin(range), 1));
50 }
51
52 template <class ForwardReadableRange>
53 prefix_ void senf::IPv6GenericOptionTLVParser::setPayload(ForwardReadableRange const &range)
54 {
55     unsigned int rangeSize = boost::size(range);
56     if ( rangeSize != optionLength() )
57         resize( (optionLength() + 2), (rangeSize + 2) );
58     std::copy( boost::begin(range), boost::end(range), boost::next( i(), 2));
59     optionLength() = rangeSize;
60 }
61
62 template <class Parser>
63 prefix_ Parser senf::IPv6GenericOptionTLVParser::init()
64 {  
65     size_type oldSize (bytes() );
66     size_type newParserSize ( senf::init_bytes<Parser>::value );
67     resize(  oldSize, newParserSize);
68     std::fill(i(),boost::next(i(), newParserSize), 0u);
69     Parser concreteParser = Parser(i(), state() );
70     concreteParser.init();
71     concreteParser.optionLength() = (newParserSize-2);
72     return concreteParser;
73 }
74
75 template <class Parser>
76 prefix_ Parser senf::IPv6GenericOptionTLVParser::as()
77 {
78     return Parser(i(), state() );
79 }
80
81
82 ///////////////////////////////ct.e////////////////////////////////////////
83 #undef prefix_
84
85 \f
86 // Local Variables:
87 // mode: c++
88 // fill-column: 100
89 // c-file-style: "senf"
90 // indent-tabs-mode: nil
91 // ispell-local-dictionary: "american"
92 // compile-command: "scons -u test"
93 // comment-column: 40
94 // End: