00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef TOOL_FILTER_HH_
00023 # define TOOL_FILTER_HH_
00024
00025 # include <wipal/tool/iterator.hh>
00026 # include <wipal/tool/iterable.hh>
00027
00028 namespace wpl
00029 {
00030
00031 namespace tool
00032 {
00033
00034
00035
00036
00037
00038 namespace internals
00039 {
00040
00041 template <class I, class P, class B1, class B2>
00042 struct filter_iterator;
00043
00044 }
00045
00046 template <class I, class P, class B>
00047 struct filter;
00048
00049
00050
00051
00052
00053 template <class I, class P, class B1, class B2>
00054 struct types< internals::filter_iterator<I, P, B1, B2> >
00055 {
00056 typedef typename I::value_type value_type;
00057 typedef filter<I, P, B1> iterable_type;
00058 };
00059
00060 template <class I, class P, class B>
00061 struct types< filter<I, P, B> >
00062 {
00063 typedef internals::filter_iterator<I, P, B, bottom> iterator;
00064 };
00065
00066
00067
00068
00069
00070 namespace internals
00071 {
00072
00073 template <class I, class P, class B, class Bottom = bottom>
00074 struct filter_iterator:
00075 WP_INHERIT(public tool::iterator, filter_iterator<I, P, B, Bottom>)
00076 {
00078
00079 typedef WP_GET_EXACT(Bottom, filter_iterator<I, P, B, Bottom>)
00080 exact_type;
00081 typedef tool::iterator<exact_type> super_type;
00082 typedef WP_TYPE(value_type, exact_type) value_type;
00083 typedef WP_TYPE(iterable_type, exact_type) iterable_type;
00085
00087 filter_iterator(const iterable_type& i, bool end);
00088
00090
00091 bool equal(const filter_iterator& rhs) const;
00092 void increment();
00093
00094 const value_type& get() const;
00095 value_type& get();
00096
00097 const value_type* get_ptr() const;
00098 value_type* get_ptr();
00100
00101 private:
00102 void skip_non_matching_items();
00103
00104 I current_;
00105 const iterable_type* iterable_;
00106 };
00107
00108 }
00109
00110 template <class InputIterator,
00111 class Predicate,
00112 class Bottom = tool::bottom>
00113 struct filter:
00114 WP_INHERIT(public tool::iterable, filter<InputIterator,
00115 Predicate,
00116 Bottom>),
00117 public Predicate
00118 {
00119 filter(const InputIterator& first, const InputIterator& last,
00120 const Predicate& p = Predicate ());
00121
00122 private:
00123 InputIterator first_;
00124 InputIterator last_;
00125
00126 friend
00127 class internals::filter_iterator<InputIterator,
00128 Predicate,
00129 Bottom,
00130 tool::bottom>;
00131 };
00132
00133 }
00134
00135 }
00136
00137 # include "filter.hxx"
00138
00139 #endif // ! TOOL_FILTER_HH_