/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ #ifndef INCLUDED_BASEBMP_STRIDEDARRAYITERATOR_HXX #define INCLUDED_BASEBMP_STRIDEDARRAYITERATOR_HXX #include namespace basebmp { /** Like vigra::StridedArrayIterator Changed semantics re. DirectionSelector: stride now counts in raw bytes Adapts given ptr, in a way that iterator increments move forward in strided steps. Stride can, by the way, also be negative */ template< typename T > class StridedArrayIterator { public: typedef typename clone_const::type internal_type; /** Create iterator @param stride Stride in bytes. Given value should better match memory layout of T, as memory gets reinterpret-casted. */ explicit StridedArrayIterator(int stride, T* ptr = 0) : stride_(stride), current_(reinterpret_cast(ptr)) {} /** Copy from other StridedArrayIterator, plus given offset @param offset Offset in bytes */ StridedArrayIterator( StridedArrayIterator const& rSrc, int offset ) : stride_(rSrc.stride_), current_(reinterpret_cast( reinterpret_cast(rSrc.current_)+offset)) {} void operator++() {current_ += stride_; } void operator++(int) {current_ += stride_; } void operator--() {current_ -= stride_; } void operator--(int) {current_ -= stride_; } void operator+=(int dy) {current_ += dy*stride_; } void operator-=(int dy) {current_ -= dy*stride_; } int operator-(StridedArrayIterator const & rhs) const { return (current_ - rhs.current_) / stride_; } bool operator==(StridedArrayIterator const & rhs) const { return current_ == rhs.current_; } bool operator!=(StridedArrayIterator const & rhs) const { return current_ != rhs.current_; } bool operator<(StridedArrayIterator const & rhs) const { return *this - rhs < 0; } bool operator<=(StridedArrayIterator const & rhs) const { return *this - rhs <= 0; } bool operator>(StridedArrayIterator const & rhs) const { return *this - rhs > 0; } bool operator>=(StridedArrayIterator const & rhs) const { return *this - rhs >= 0; } T* operator()() const { return reinterpret_cast(current_); } T* operator()(int d) const { return reinterpret_cast(current_ + d*stride_); } private: int stride_; internal_type* current_; }; } // namespace basebmp #endif /* INCLUDED_BASEBMP_STRIDEDARRAYITERATOR_HXX */