Report patch name instead of index in debug
[foam-extend-3.2.git] / src / foam / containers / Lists / UList / UListI.H
blob295cd25e819ca519a748e17fa0b40f5021739cf1
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation, either version 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #include "error.H"
27 #include "pTraits.H"
28 #include "Swap.H"
30 // * * * * * * * * * * * * * * * Static Members  * * * * * * * * * * * * * * //
32 template<class T>
33 const Foam::UList<T> Foam::UList<T>::zero;
36 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
38 template<class T>
39 inline Foam::UList<T>::UList()
41     v_(0),
42     size_(0)
46 template<class T>
47 inline Foam::UList<T>::UList(T* __restrict__ v, label size)
49     v_(v),
50     size_(size)
54 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
56 template<class T>
57 inline const Foam::UList<T>& Foam::UList<T>::null()
59     return zero;
63 // Reset in slicing.  HJ. 19/Oct/2008
64 template<class T>
65 inline void Foam::UList<T>::reset(T* __restrict__ v, label size)
67     v_ = v;
68     size_ = size;
72 template<class T>
73 inline Foam::label Foam::UList<T>::fcIndex(const label i) const
75     return (i == size()-1 ? 0 : i+1);
79 template<class T>
80 inline Foam::label Foam::UList<T>::rcIndex(const label i) const
82     return (i ? i-1 : size()-1);
86 // Check start is within valid range (0 ... size-1).
87 template<class T>
88 inline void Foam::UList<T>::checkStart(const label start) const
90     if (start<0 || (start && start>=size_))
91     {
92         FatalErrorIn("UList<T>::checkStart(const label)")
93             << "start " << start << " out of range 0 ... " << max(size_-1, 0)
94             << abort(FatalError);
95     }
99 // Check size is within valid range (0 ... size).
100 template<class T>
101 inline void Foam::UList<T>::checkSize(const label size) const
103     if (size<0 || size>size_)
104     {
105         FatalErrorIn("UList<T>::checkSize(const label)")
106             << "size " << size << " out of range 0 ... " << size_
107             << abort(FatalError);
108     }
112 // Check index i is within valid range (0 ... size-1).
113 template<class T>
114 inline void Foam::UList<T>::checkIndex(const label i) const
116     if (!size_)
117     {
118         FatalErrorIn("UList<T>::checkIndex(const label)")
119             << "attempt to access element from zero sized list"
120             << abort(FatalError);
121     }
122     else if (i<0 || i>=size_)
123     {
124         FatalErrorIn("UList<T>::checkIndex(const label)")
125             << "index " << i << " out of range 0 ... " << size_-1
126             << abort(FatalError);
127     }
131 template<class T>
132 inline T& Foam::UList<T>::first()
134     return this->operator[](0);
138 template<class T>
139 inline const T& Foam::UList<T>::first() const
141     return this->operator[](0);
145 template<class T>
146 inline T& Foam::UList<T>::last()
148     return this->operator[](this->size()-1);
152 template<class T>
153 inline const T& Foam::UList<T>::last() const
155     return this->operator[](this->size()-1);
159 template<class T>
160 inline const T* Foam::UList<T>::cdata() const
162     return v_;
166 template<class T>
167 inline T* Foam::UList<T>::data()
169     return v_;
173 // * * * * * * * * * * * * * * * Member Operators  * * * * * * * * * * * * * //
176 // element access
177 template<class T>
178 inline T& Foam::UList<T>::operator[](const label i)
180 #   ifdef FULLDEBUG
181     checkIndex(i);
182 #   endif
183     return v_[i];
187 namespace Foam
190     // Template specialization for bool
191     template<>
192     inline const bool& UList<bool>::operator[](const label i) const
193     {
194         // lazy evaluation - return false for out-of-range
195         if (i < size_)
196         {
197             return v_[i];
198         }
199         else
200         {
201             return pTraits<bool>::zero;
202         }
203     }
205 } // end of namespace Foam
208 // const element access
209 template<class T>
210 inline const T& Foam::UList<T>::operator[](const label i) const
212 #   ifdef FULLDEBUG
213     checkIndex(i);
214 #   endif
215     return v_[i];
219 // Allow cast to a const List<T>&
220 template<class T>
221 inline Foam::UList<T>::operator const Foam::List<T>&() const
223     return *reinterpret_cast<const List<T>*>(this);
227 // * * * * * * * * * * * * * * STL Member Functions  * * * * * * * * * * * * //
229 template<class T>
230 inline typename Foam::UList<T>::iterator
231 Foam::UList<T>::begin()
233     return v_;
236 template<class T>
237 inline typename Foam::UList<T>::const_iterator
238 Foam::UList<T>::begin() const
240     return v_;
243 template<class T>
244 inline typename Foam::UList<T>::const_iterator
245 Foam::UList<T>::cbegin() const
247     return v_;
250 template<class T>
251 inline typename Foam::UList<T>::iterator
252 Foam::UList<T>::end()
254     return &v_[size_];
257 template<class T>
258 inline typename Foam::UList<T>::const_iterator
259 Foam::UList<T>::end() const
261     return &v_[size_];
264 template<class T>
265 inline typename Foam::UList<T>::const_iterator
266 Foam::UList<T>::cend() const
268     return &v_[size_];
271 template<class T>
272 inline typename Foam::UList<T>::iterator
273 Foam::UList<T>::rbegin()
275     return &v_[size_-1];
278 template<class T>
279 inline typename Foam::UList<T>::const_iterator
280 Foam::UList<T>::rbegin() const
282     return &v_[size_-1];
285 template<class T>
286 inline typename Foam::UList<T>::const_iterator
287 Foam::UList<T>::crbegin() const
289     return &v_[size_-1];
292 template<class T>
293 inline typename Foam::UList<T>::iterator
294 Foam::UList<T>::rend()
296     return &v_[-1];
299 template<class T>
300 inline typename Foam::UList<T>::const_iterator
301 Foam::UList<T>::rend() const
303     return &v_[-1];
306 template<class T>
307 inline typename Foam::UList<T>::const_iterator
308 Foam::UList<T>::crend() const
310     return &v_[-1];
313 template<class T>
314 inline Foam::label Foam::UList<T>::size() const
316     return size_;
320 template<class T>
321 inline Foam::label Foam::UList<T>::max_size() const
323     return labelMax;
327 template<class T>
328 inline bool Foam::UList<T>::empty() const
330     return !size_;
334 // * * * * * * * * * * * * * * * Global Functions  * * * * * * * * * * * * * //
336 template<class T>
337 inline void Foam::reverse(UList<T>& ul, const label n)
339     for (int i=0; i<n/2; i++)
340     {
341         Swap(ul[i], ul[n-1-i]);
342     }
345 template<class T>
346 inline void Foam::reverse(UList<T>& ul)
348     reverse(ul, ul.size());
352 // ************************************************************************* //