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