Stefan doesn't like MPEG_DVBBundle; renamed to MPEGDVBBundle ;)
[senf.git] / Packets / ParseArray.ih
1 // $Id$
2 //
3 // Copyright (C) 2006
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
6 //     Stefan Bund <stefan.bund@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 #ifndef IH_ParseArray_
24 #define IH_ParseArray_ 1
25
26 // Custom includes
27 #include <boost/iterator/iterator_facade.hpp>
28
29 ///////////////////////////////ih.p////////////////////////////////////////
30
31 template <class ElementParser>
32 class senf::detail::Parse_Array_iterator
33     : public boost::iterator_facade< Parse_Array_iterator<ElementParser>,
34                                      ElementParser,
35                                      boost::random_access_traversal_tag,
36                                      ElementParser >
37 {
38 public:
39     Parse_Array_iterator();
40     Parse_Array_iterator(PacketParserBase::data_iterator const & i,
41                          PacketParserBase::state_type s);
42
43     // Needed to elide the []-proxy of iterator_facade
44     ElementParser operator[](int i) const;
45
46     PacketParserBase::data_iterator raw() const;
47
48 protected:
49
50 private:
51     friend class boost::iterator_core_access;
52     
53     // iterator_facade interface
54
55     ElementParser dereference() const;
56     bool equal(Parse_Array_iterator const & other) const;
57     int distance_to(Parse_Array_iterator const & other) const;
58     void increment();
59     void decrement();
60     void advance(int n);
61
62     PacketParserBase::data_iterator i_;
63     PacketParserBase::state_type s_;
64 };
65
66 ///////////////////////////////ih.e////////////////////////////////////////
67 #endif
68
69 \f
70 // Local Variables:
71 // mode: c++
72 // fill-column: 100
73 // c-file-style: "senf"
74 // indent-tabs-mode: nil
75 // ispell-local-dictionary: "american"
76 // compile-command: "scons -u test"
77 // comment-column: 40
78 // End: