PCL
Optional.h
Go to the documentation of this file.
1 // ____ ______ __
2 // / __ \ / ____// /
3 // / /_/ // / / /
4 // / ____// /___ / /___ PixInsight Class Library
5 // /_/ \____//_____/ PCL 2.6.5
6 // ----------------------------------------------------------------------------
7 // pcl/Optional.h - Released 2024-01-13T15:47:58Z
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-2024 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_Optional_h
53 #define __PCL_Optional_h
54 
56 
57 #include <pcl/Defs.h>
58 #include <pcl/Diagnostics.h>
59 
60 #include <pcl/Exception.h>
61 
62 namespace pcl
63 {
64 
65 // ----------------------------------------------------------------------------
66 
80 template <class T>
81 class PCL_CLASS Optional
82 {
83 public:
84 
92  : m_value() // N.B: this initialization prevents warnings such as
93  { // 'Optional<>::m_value may be used uninitialized...'
94  }
95 
103  Optional( const Optional& ) = default;
104 
105  /*
106  * Move constructor.
107  */
108  Optional( Optional&& ) = default;
109 
113  Optional( const T& value )
114  : m_value( value )
115  , m_defined( true )
116  {
117  }
118 
122  Optional& operator =( const Optional& x )
123  {
124  if ( bool( m_defined = x.m_defined ) )
125  m_value = x.m_value;
126  return *this;
127  }
128 
132  Optional& operator =( Optional&& x )
133  {
134  if ( bool( m_defined = x.m_defined ) )
135  m_value = std::move( x.m_value );
136  return *this;
137  }
138 
144  Optional& operator =( const T& value )
145  {
146  m_value = value;
147  m_defined = true;
148  return *this;
149  }
150 
158  operator const T&() const
159  {
160  return m_value;
161  }
162 
172  const T& operator ()() const
173  {
174  return m_value;
175  }
176 
180  bool IsDefined() const
181  {
182  return m_defined;
183  }
184 
190  void Undefine()
191  {
192  m_value = T();
193  m_defined = false;
194  }
195 
200  const T& OrElse( const T& value ) const
201  {
202  return m_defined ? m_value : value;
203  }
204 
209  template <class E>
210  const T& OrElseThrow( const Exception& exception ) const
211  {
212  if ( m_defined )
213  return m_value;
214  throw exception;
215  }
216 
221  const T& OrElseThrow( const String& message ) const
222  {
223  if ( m_defined )
224  return m_value;
225  throw Error( message );
226  }
227 
236  bool operator ==( const Optional& x ) const
237  {
238  return m_defined ? (x.m_defined ? m_value == x.m_value : false) : !x.m_defined;
239  }
240 
245  bool operator ==( const T& value ) const
246  {
247  return m_defined && m_value == value;
248  }
249 
256  bool operator <( const Optional& x ) const
257  {
258  return m_defined && (!x.m_defined || m_value < x.m_value);
259  }
260 
265  bool operator <( const T& value ) const
266  {
267  return m_defined && m_value < value;
268  }
269 
270 private:
271 
272  T m_value;
273  bool m_defined = false;
274 };
275 
276 // ----------------------------------------------------------------------------
277 
278 } // pcl
279 
280 #endif // __PCL_Optional_h
281 
282 // ----------------------------------------------------------------------------
283 // EOF pcl/Optional.h - Released 2024-01-13T15:47:58Z
pcl
PCL root namespace.
Definition: AbstractImage.h:76
pcl::String
Unicode (UTF-16) string.
Definition: String.h:8112
pcl::operator==
bool operator==(const Array< T, A > &x1, const Array< T, A > &x2) noexcept
Definition: Array.h:2090
pcl::Optional::IsDefined
bool IsDefined() const
Definition: Optional.h:180
Exception.h
pcl::Optional
An object that can be in a defined or undefined state.
Definition: Optional.h:81
pcl::Error
A simple exception with an associated error message.
Definition: Exception.h:238
pcl::Exception
Root base class for all PCL exception classes.
Definition: Exception.h:81
pcl::Optional::Optional
Optional()
Definition: Optional.h:91
pcl::Optional::Undefine
void Undefine()
Definition: Optional.h:190
pcl::Optional::Optional
Optional(const T &value)
Definition: Optional.h:113
Defs.h
pcl::operator<
bool operator<(const Array< T, A > &x1, const Array< T, A > &x2) noexcept
Definition: Array.h:2101