3391466e1a485a2520e47471b227e8eeb43926be
[senf.git] / senf / Packets / StringParser.cti
1 // $Id$
2 //
3 // Copyright (C) 2009
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 StringParser inline template implementation */
25
26 //#include "StringParser.ih"
27
28 // Custom includes
29
30 #define prefix_ inline
31 ///////////////////////////////cci.p///////////////////////////////////////
32
33 template <class LengthParser>
34 prefix_ senf::StringParser<LengthParser>::StringParser(data_iterator i, state_type s)
35     : PacketParserBase(i, s, init_bytes)
36  {}
37
38 template <class LengthParser>
39 prefix_ typename senf::StringParser<LengthParser>::size_type senf::StringParser<LengthParser>::bytes()
40     const
41 {
42     return length().value() + senf::bytes(length());
43 }
44
45 template <class LengthParser>
46 prefix_ typename senf::StringParser<LengthParser>::value_type senf::StringParser<LengthParser>::value()
47     const
48 {
49     validate(bytes());
50     return std::string(i()+senf::bytes(length()), i()+bytes());
51 }
52
53 template <class LengthParser>
54 prefix_ void senf::StringParser<LengthParser>::value(value_type v)
55 {
56     validate(bytes());
57     resize(bytes(), v.size()+senf::bytes(length()));
58     length() << v.size();
59     std::copy(v.begin(), v.end(), i()+senf::bytes(length()));
60 }
61
62 template <class LengthParser>
63 prefix_ senf::StringParser<LengthParser>::operator value_type()
64     const
65 {
66     return value();
67 }
68
69 template <class LengthParser>
70 prefix_ typename senf::StringParser<LengthParser> const & senf::StringParser<LengthParser>::operator=(value_type other)
71 {
72     value(other); return *this;
73 }
74
75 template <class LengthParser>
76 prefix_ std::ostream & senf::operator<<(std::ostream & os, StringParser<LengthParser> const & value)
77 {
78     os << value.value();
79     return os;
80 }
81
82 ///////////////////////////////cci.e///////////////////////////////////////
83 #undef prefix_
84
85 \f
86 // Local Variables:
87 // mode: c++
88 // fill-column: 100
89 // comment-column: 40
90 // c-file-style: "senf"
91 // indent-tabs-mode: nil
92 // ispell-local-dictionary: "american"
93 // compile-command: "scons -u test"
94 // End: