Merged revisions 262,264-265,267-282,284-298,300-311 via svnmerge from
[senf.git] / Packets / ParseList.ih
1 // Copyright (C) 2007 
2 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
3 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
4 //     Stefan Bund <g0dil@berlios.de>
5 //
6 // This program is free software; you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation; either version 2 of the License, or
9 // (at your option) any later version.
10 //
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 // GNU General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the
18 // Free Software Foundation, Inc.,
19 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20
21 /** \file
22     \brief ParseList internal header */
23
24 #ifndef IH_ParseList_
25 #define IH_ParseList_ 1
26
27 // Custom includes
28 #include <boost/iterator/iterator_facade.hpp>
29
30 ///////////////////////////////ih.p////////////////////////////////////////
31
32 namespace senf {
33 namespace detail {
34
35     template <class ElementParser, class IteratorPolicy>
36     class Parse_List_Iterator
37         : public boost::iterator_facade< Parse_List_Iterator<ElementParser,IteratorPolicy>,
38                                          ElementParser,
39                                          boost::forward_traversal_tag,
40                                          ElementParser >,
41           private IteratorPolicy
42     {
43     public:
44         enum Begin_t { Begin };
45         enum End_t { End };
46
47         Parse_List_Iterator();
48         Parse_List_Iterator(PacketParserBase::data_iterator i, PacketParserBase::state_type s, 
49                             Begin_t);
50         Parse_List_Iterator(PacketParserBase::data_iterator i, PacketParserBase::state_type s, 
51                             End_t);
52         Parse_List_Iterator(PacketParserBase::data_iterator i, PacketParserBase::state_type s, 
53                             PacketParserBase::data_iterator p);
54
55         PacketParserBase::data_iterator raw() const;
56         
57     private:
58         friend class boost::iterator_core_access;
59         
60         ElementParser dereference() const;
61         bool equal(Parse_List_Iterator const & other) const;
62         void increment();
63
64         PacketParserBase::data_iterator i_;
65         PacketParserBase::state_type s_;
66     };
67
68 }}
69
70 ///////////////////////////////ih.e////////////////////////////////////////
71 #endif
72
73 \f
74 // Local Variables:
75 // mode: c++
76 // fill-column: 100
77 // comment-column: 40
78 // c-file-style: "senf"
79 // indent-tabs-mode: nil
80 // ispell-local-dictionary: "american"
81 // compile-command: "scons -u test"
82 // End: