]> sigrok.org Git - pulseview.git/blame - pv/view/rowitemiterator.hpp
RowItemIterator: Removed usage of RowItem::owner()
[pulseview.git] / pv / view / rowitemiterator.hpp
CommitLineData
6b715302
JH
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2014 Joel Holdsworth <joel@airwebreathe.org.uk>
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 Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
7a01bd36
JH
21#ifndef PULSEVIEW_PV_VIEW_ROWITEMITERATOR_HPP
22#define PULSEVIEW_PV_VIEW_ROWITEMITERATOR_HPP
6b715302
JH
23
24#include <algorithm>
25#include <cassert>
26#include <iterator>
27#include <memory>
28#include <stack>
29#include <type_traits>
30#include <vector>
31
f65cd27b 32#include <pv/session.hpp>
6b715302
JH
33
34namespace pv {
35namespace view {
36
37template<class Owner, class Item> class RowItemIterator
38{
39public:
40 typedef typename std::conditional<std::is_const<Owner>::value,
41 typename Owner::item_list::const_iterator,
42 typename Owner::item_list::iterator>::type child_iterator;
43
44 typedef std::shared_ptr<Item> value_type;
45 typedef ptrdiff_t difference_type;
46 typedef value_type pointer;
47 typedef value_type& reference;
48 typedef std::forward_iterator_tag iterator_category;
49
50public:
51 RowItemIterator(Owner *owner) :
21d5f19c 52 owner_stack_({owner}) {}
6b715302
JH
53
54 RowItemIterator(Owner *owner, child_iterator iter) :
21d5f19c 55 owner_stack_({owner}) {
6b715302
JH
56 assert(owner);
57 if (iter != owner->child_items().end())
8dbbc7f0 58 iter_stack_.push(iter);
6b715302
JH
59 }
60
61 RowItemIterator(const RowItemIterator<Owner, Item> &o) :
21d5f19c 62 owner_stack_(o.owner_stack_),
8dbbc7f0 63 iter_stack_(o.iter_stack_) {}
6b715302
JH
64
65 reference operator*() const {
8dbbc7f0 66 return *iter_stack_.top();
6b715302
JH
67 }
68
69 reference operator->() const {
70 return *this;
71 }
72
73 RowItemIterator<Owner, Item>& operator++() {
74 using std::dynamic_pointer_cast;
75 using std::shared_ptr;
76
21d5f19c 77 assert(!owner_stack_.empty());
8dbbc7f0 78 assert(!iter_stack_.empty());
6b715302
JH
79
80 shared_ptr<Owner> owner(dynamic_pointer_cast<Owner>(
8dbbc7f0 81 *iter_stack_.top()));
6b715302 82 if (owner && !owner->child_items().empty()) {
21d5f19c 83 owner_stack_.push(owner.get());
8dbbc7f0 84 iter_stack_.push(owner->child_items().begin());
6b715302 85 } else {
21d5f19c
JH
86 while (!iter_stack_.empty() && (++iter_stack_.top()) ==
87 owner_stack_.top()->child_items().end()) {
88 owner_stack_.pop();
8dbbc7f0 89 iter_stack_.pop();
6b715302
JH
90 }
91 }
92
93 return *this;
94 }
95
96 RowItemIterator<Owner, Item> operator++(int) {
97 RowItemIterator<Owner, Item> pre = *this;
98 ++*this;
99 return pre;
100 }
101
102 bool operator==(const RowItemIterator &o) const {
21d5f19c 103 return (iter_stack_.empty() && o.iter_stack_.empty()) || (
8dbbc7f0 104 iter_stack_.size() == o.iter_stack_.size() &&
21d5f19c
JH
105 owner_stack_.top() == o.owner_stack_.top() &&
106 iter_stack_.top() == o.iter_stack_.top());
6b715302
JH
107 }
108
109 bool operator!=(const RowItemIterator &o) const {
110 return !((const RowItemIterator&)*this == o);
111 }
112
113 void swap(RowItemIterator<Owner, Item>& other) {
21d5f19c 114 swap(owner_stack_, other.owner_stack_);
8dbbc7f0 115 swap(iter_stack_, other.iter_stack_);
6b715302
JH
116 }
117
118private:
21d5f19c 119 std::stack<Owner*> owner_stack_;
8dbbc7f0 120 std::stack<child_iterator> iter_stack_;
6b715302
JH
121};
122
123template<class Owner, class Item>
124void swap(RowItemIterator<Owner, Item>& a, RowItemIterator<Owner, Item>& b)
125{
126 a.swap(b);
127}
128
129} // namespace view
130} // namespace pv
131
7a01bd36 132#endif // PULSEVIEW_PV_VIEW_ROWITEMITERATOR_HPP