PCL
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Memory.h
1 // ____ ______ __
2 // / __ \ / ____// /
3 // / /_/ // / / /
4 // / ____// /___ / /___ PixInsight Class Library
5 // /_/ \____//_____/ PCL 2.9.3
6 // ----------------------------------------------------------------------------
7 // pcl/Memory.h - Released 2025-02-21T12:13:32Z
8 // ----------------------------------------------------------------------------
9 // This file is part of the PixInsight Class Library (PCL).
10 // PCL is a multiplatform C++ framework for development of PixInsight modules.
11 //
12 // Copyright (c) 2003-2025 Pleiades Astrophoto S.L. All Rights Reserved.
13 //
14 // Redistribution and use in both source and binary forms, with or without
15 // modification, is permitted provided that the following conditions are met:
16 //
17 // 1. All redistributions of source code must retain the above copyright
18 // notice, this list of conditions and the following disclaimer.
19 //
20 // 2. All redistributions in binary form must reproduce the above copyright
21 // notice, this list of conditions and the following disclaimer in the
22 // documentation and/or other materials provided with the distribution.
23 //
24 // 3. Neither the names "PixInsight" and "Pleiades Astrophoto", nor the names
25 // of their contributors, may be used to endorse or promote products derived
26 // from this software without specific prior written permission. For written
27 // permission, please contact info@pixinsight.com.
28 //
29 // 4. All products derived from this software, in any form whatsoever, must
30 // reproduce the following acknowledgment in the end-user documentation
31 // and/or other materials provided with the product:
32 //
33 // "This product is based on software from the PixInsight project, developed
34 // by Pleiades Astrophoto and its contributors (https://pixinsight.com/)."
35 //
36 // Alternatively, if that is where third-party acknowledgments normally
37 // appear, this acknowledgment must be reproduced in the product itself.
38 //
39 // THIS SOFTWARE IS PROVIDED BY PLEIADES ASTROPHOTO AND ITS CONTRIBUTORS
40 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
41 // TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL PLEIADES ASTROPHOTO OR ITS
43 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
44 // EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, BUSINESS
45 // INTERRUPTION; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; AND LOSS OF USE,
46 // DATA OR PROFITS) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
47 // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
48 // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
49 // POSSIBILITY OF SUCH DAMAGE.
50 // ----------------------------------------------------------------------------
51 
52 #ifndef __PCL_Memory_h
53 #define __PCL_Memory_h
54 
55 #include <pcl/Defs.h>
56 
57 // Template formal parameters:
58 //
59 // FI Forward iterator
60 // BI Bidirectional iterator
61 // RI Random access iterator
62 // UP Unary predicate
63 // BP Binary predicate
64 // T Item type
65 // F Function
66 
67 // ### TODO: Document this file
68 
69 namespace pcl
70 {
71 
72 // ----------------------------------------------------------------------------
73 
74 template <class FI, class T> inline
75 void Fill( FI i, FI j, const T& v )
76 {
77  for ( ; i != j; ++i )
78  *i = v;
79 }
80 
81 // ----------------------------------------------------------------------------
82 
83 template <class FI, class T, class F> inline
84 void Fill( FI i, FI j, const T& v, F f )
85 {
86  for ( ; i != j; ++i )
87  f( *i, v );
88 }
89 
90 // ----------------------------------------------------------------------------
91 
92 template <class FI1, class FI2> inline
93 FI1 Copy( FI1 i1, FI2 i2, FI2 j2 )
94 {
95  for ( ; i2 != j2; ++i1, ++i2 )
96  *i1 = *i2;
97  return i1;
98 }
99 
100 // ----------------------------------------------------------------------------
101 
102 template <class FI1, class FI2, class F> inline
103 FI1 Copy( FI1 i1, FI2 i2, FI2 j2, F f )
104 {
105  for ( ; i2 != j2; ++i1, ++i2 )
106  f( *i1, *i2 );
107  return i1;
108 }
109 
110 // ----------------------------------------------------------------------------
111 
112 template <class BI1, class BI2> inline
113 BI1 CopyBackward( BI1 j1, BI2 i2, BI2 j2 )
114 {
115  while ( i2 != j2 )
116  *--j1 = *--j2;
117  return j1;
118 }
119 
120 // ----------------------------------------------------------------------------
121 
122 template <class BI1, class BI2, class F> inline
123 BI1 CopyBackward( BI1 j1, BI2 i2, BI2 j2, F f )
124 {
125  while ( i2 != j2 )
126  f( *--j1, *--j2 );
127  return j1;
128 }
129 
130 // ----------------------------------------------------------------------------
131 
132 template <class BI1, class FI2> inline
133 BI1 CopyReversed( BI1 j1, FI2 i2, FI2 j2 )
134 {
135  for ( ; i2 != j2; ++i2 )
136  *--j1 = *i2;
137  return j1;
138 }
139 
140 // ----------------------------------------------------------------------------
141 
142 template <class BI1, class FI2, class F> inline
143 BI1 CopyReversed( BI1 j1, FI2 i2, FI2 j2, F f )
144 {
145  for ( ; i2 != j2; ++i2 )
146  f( *--j1, *i2 );
147  return j1;
148 }
149 
150 // ----------------------------------------------------------------------------
151 
152 template <class RI1, class RI2> inline
153 RI1 Move( RI1 i1, RI2 i2, RI2 j2 )
154 {
155  RI1 j1;
156  if ( i1 < i2 )
157  j1 = Copy( i1, i2, j2 );
158  else
159  {
160  j1 = i1 + (j2-i2);
161  CopyBackward( j1, i2, j2 );
162  }
163  return j1;
164 }
165 
166 // ----------------------------------------------------------------------------
167 
168 template <class RI1, class RI2, class F> inline
169 RI1 Move( RI1 i1, RI2 i2, RI2 j2, F f )
170 {
171  RI1 j1;
172  if ( i1 < i2 )
173  j1 = Copy( i1, i2, j2, f );
174  else
175  {
176  j1 = i1 + (j2-i2);
177  CopyBackward( j1, i2, j2, f );
178  }
179  return j1;
180 }
181 
182 // ----------------------------------------------------------------------------
183 
184 template <class RI1, class RI2> inline
185 RI1 MoveBackward( RI1 j1, RI2 i2, RI2 j2 )
186 {
187  RI1 i1;
188  if ( j2 < j1 )
189  i1 = CopyBackward( j1, i2, j2 );
190  else
191  {
192  i1 = j1 - (j2-i2);
193  Copy( i1, i2, j2 );
194  }
195  return i1;
196 }
197 
198 // ----------------------------------------------------------------------------
199 
200 template <class RI1, class RI2, class F> inline
201 RI1 MoveBackward( RI1 j1, RI2 i2, RI2 j2, F f )
202 {
203  RI1 i1;
204  if ( j2 < j1 )
205  i1 = CopyBackward( j1, i2, j2, f );
206  else
207  {
208  i1 = j1 - (j2-i2);
209  Copy( i1, i2, j2, f );
210  }
211  return i1;
212 }
213 
214 // ----------------------------------------------------------------------------
215 
216 template <class FI, class T1, class T2> inline
217 void Replace( FI i, FI j, const T1& v1, const T2& v2 )
218 {
219  for ( ; i != j; ++i )
220  if ( *i == v1 )
221  *i = v2;
222 }
223 
224 // ----------------------------------------------------------------------------
225 
226 template <class FI, class T1, class T2, class BP> inline
227 void Replace( FI i, FI j, const T1& v1, const T2& v2, BP p )
228 {
229  for ( ; i != j; ++i )
230  if ( p( *i, v1 ) )
231  *i = v2;
232 }
233 
234 // ----------------------------------------------------------------------------
235 
236 } // pcl
237 
238 #endif // __PCL_Memory_h
239 
240 // ----------------------------------------------------------------------------
241 // EOF pcl/Memory.h - Released 2025-02-21T12:13:32Z
PCL root namespace.
Definition: AbstractImage.h:77
void MoveBackward(BI &i, size_type n)
Definition: Iterator.h:242