PPI: Checkin of first compiling (yet not working) version
[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     /** \brief Internal: Iterator used by Parse_List
36
37         \internal
38      */
39     template <class ElementParser, class IteratorPolicy>
40     class Parse_List_Iterator
41         : public boost::iterator_facade< Parse_List_Iterator<ElementParser,IteratorPolicy>,
42                                          ElementParser,
43                                          boost::forward_traversal_tag,
44                                          ElementParser >,
45           private IteratorPolicy
46     {
47     public:
48         enum Begin_t { Begin };
49         enum End_t { End };
50
51         Parse_List_Iterator();
52         Parse_List_Iterator(PacketParserBase::data_iterator i, PacketParserBase::state_type s, 
53                             Begin_t);
54         Parse_List_Iterator(PacketParserBase::data_iterator i, PacketParserBase::state_type s, 
55                             End_t);
56         Parse_List_Iterator(PacketParserBase::data_iterator i, PacketParserBase::state_type s, 
57                             PacketParserBase::data_iterator p);
58
59         PacketParserBase::data_iterator raw() const;
60         
61     private:
62         friend class boost::iterator_core_access;
63         
64         ElementParser dereference() const;
65         bool equal(Parse_List_Iterator const & other) const;
66         void increment();
67
68         PacketParserBase::data_iterator i_;
69         PacketParserBase::state_type s_;
70     };
71
72 }}
73
74 ///////////////////////////////ih.e////////////////////////////////////////
75 #endif
76
77 \f
78 // Local Variables:
79 // mode: c++
80 // fill-column: 100
81 // comment-column: 40
82 // c-file-style: "senf"
83 // indent-tabs-mode: nil
84 // ispell-local-dictionary: "american"
85 // compile-command: "scons -u test"
86 // End: