PCL
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Exception.h
Go to the documentation of this file.
1 // ____ ______ __
2 // / __ \ / ____// /
3 // / /_/ // / / /
4 // / ____// /___ / /___ PixInsight Class Library
5 // /_/ \____//_____/ PCL 2.9.3
6 // ----------------------------------------------------------------------------
7 // pcl/Exception.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_Exception_h
53 #define __PCL_Exception_h
54 
56 
57 #include <pcl/Defs.h>
58 
59 #include <pcl/String.h>
60 
61 #include <typeinfo>
62 
63 namespace pcl
64 {
65 
66 // ----------------------------------------------------------------------------
67 
81 class PCL_CLASS Exception
82 {
83 public:
84 
88  Exception() = default;
89 
93  Exception( const pcl::Exception& ) = default;
94 
98  virtual ~Exception()
99  {
100  }
101 
105  virtual String ExceptionClass() const
106  {
107  return String();
108  }
109 
113  virtual String Message() const
114  {
115  return String();
116  }
117 
122  virtual String FormatInfo() const;
123 
128  virtual String Caption() const;
129 
139  virtual void Show() const;
140 
153  virtual bool ShowUnformatted() const
154  {
155  return false;
156  }
157 
165  PCL_FORCE_INLINE void ShowOnConsole() const
166  {
167  /*
168  * N.B.: This function must always be expanded inline. Otherwise, neither
169  * UNIX synchronous signal handlers nor Win32 structured exception
170  * handlers can throw C++ exceptions.
171  */
172  bool wasConsoleOutput = IsConsoleOutputEnabled();
173  bool wasGUIOutput = IsGUIOutputEnabled();
174  EnableConsoleOutput();
175  DisableGUIOutput();
176 
177  Exception::Show();
178 
179  EnableConsoleOutput( wasConsoleOutput );
180  EnableGUIOutput( wasGUIOutput );
181  }
182 
192  static bool IsConsoleOutputEnabled();
193 
200  static void EnableConsoleOutput( bool = true );
201 
208  static void DisableConsoleOutput( bool disable = true )
209  {
210  EnableConsoleOutput( !disable );
211  }
212 
222  static bool IsGUIOutputEnabled();
223 
230  static void EnableGUIOutput( bool = true );
231 
238  static void DisableGUIOutput( bool disable = true )
239  {
240  EnableGUIOutput( !disable );
241  }
242 };
243 
244 // ----------------------------------------------------------------------------
245 
255 class PCL_CLASS Error : public pcl::Exception
256 {
257 public:
258 
262  Error() = default;
263 
267  Error( const Error& ) = default;
268 
280  Error( const String& message, bool unformatted = false )
281  : m_message( message )
282  , m_unformatted( unformatted )
283  {
284  }
285 
293  String Message() const override
294  {
295  return m_message;
296  }
297 
300  String Caption() const override
301  {
302  return "Error";
303  }
304 
307  bool ShowUnformatted() const override
308  {
309  return m_unformatted;
310  }
311 
312 protected:
313 
314  String m_message;
315  bool m_unformatted = false;
316 };
317 
318 // ----------------------------------------------------------------------------
319 
329 class PCL_CLASS FatalError : public Error
330 {
331 public:
332 
336  FatalError() = default;
337 
348  FatalError( const String& message, bool unformatted = false )
349  : Error( message, unformatted )
350  {
351  }
352 
357  : Error( x.Message() )
358  {
359  }
360 
364  FatalError( const pcl::FatalError& ) = default;
365 
368  String Caption() const override
369  {
370  return "Fatal Error";
371  }
372 };
373 
374 // ----------------------------------------------------------------------------
375 
384 class PCL_CLASS NotImplemented : public Error
385 {
386 public:
387 
396  template <typename T>
397  NotImplemented( const T& object, const String& notImplemented )
398  : Error( String( IsoString( typeid( object ).name() )
399 #ifdef __PCL_WINDOWS
400  .MBSToWCS()
401 #else
402  .UTF8ToUTF16()
403 #endif
404  ) + ": Not implemented: " + notImplemented )
405  {
406  }
407 
411  NotImplemented( const NotImplemented& ) = default;
412 };
413 
414 // ----------------------------------------------------------------------------
415 
428 class PCL_CLASS ParseError : public Error
429 {
430 public:
431 
436  ParseError() = default;
437 
441  ParseError( const ParseError& ) = default;
442 
460  ParseError( const String& message, const String& beingParsed = String(), int errorPosition = -1 )
461  : Error( message )
462  , m_beingParsed( beingParsed )
463  , m_errorPosition( errorPosition )
464  {
465  }
466 
469  String Message() const override;
470 
473  void Show() const override;
474 
475 protected:
476 
477  String m_beingParsed;
478  int m_errorPosition = -1;
479 };
480 
481 // ----------------------------------------------------------------------------
482 
496 class PCL_CLASS SourceCodeError : public Error
497 {
498 public:
499 
504  SourceCodeError() = default;
505 
509  SourceCodeError( const SourceCodeError& ) = default;
510 
533  template <typename T1>
534  SourceCodeError( const String& message, T1 line = -1, T1 column = -1 )
535  : Error( message )
536  , m_lineNumber( Range( int( line ), -1, int_max ) )
537  , m_columnNumber( Range( int( column ), -1, int_max ) )
538  {
539  }
540 
551  int LineNumber() const
552  {
553  return m_lineNumber;
554  }
555 
566  int ColumnNumber() const
567  {
568  return m_columnNumber;
569  }
570 
584  template <typename T1>
585  void SetPosition( T1 line, T1 column = -1 )
586  {
587  m_lineNumber = Range( int( line ), -1, int_max );
588  m_columnNumber = Range( int( column ), -1, int_max );
589  }
590 
604  template <typename T1>
605  void AddToPosition( T1 lines, T1 columns = 0 )
606  {
607  SetPosition( m_lineNumber+int( lines ), m_columnNumber+int( columns ) );
608  }
609 
612  String Message() const override;
613 
616  void Show() const override;
617 
618 protected:
619 
620  int m_lineNumber = -1;
621  int m_columnNumber = -1;
622 };
623 
624 // ----------------------------------------------------------------------------
625 
637 class PCL_CLASS CaughtException : public pcl::Exception
638 {
639 public:
640 
644  CaughtException() = default;
645 
650 };
651 
652 } // pcl
653 
654 // ----------------------------------------------------------------------------
655 
675 #define PCL_DECLARE_EXCEPTION_CLASS( className, exceptionClass, message ) \
676  class PCL_CLASS className : public pcl::Exception \
677  { \
678  public: \
679  className() = default; \
680  className( const className& ) = default; \
681  pcl::String ExceptionClass() const override \
682  { \
683  return exceptionClass; \
684  } \
685  pcl::String Message() const override \
686  { \
687  return message; \
688  } \
689  }
690 
691 // ----------------------------------------------------------------------------
692 
693 namespace pcl
694 {
695 
705 PCL_DECLARE_EXCEPTION_CLASS( ProcessAborted, "Process aborted", String() );
706 
707 } // pcl
708 
709 #endif // __PCL_Exception_h
710 
711 // ----------------------------------------------------------------------------
712 // EOF pcl/Exception.h - Released 2025-02-21T12:13:32Z
An exception that has already been handled.
Definition: Exception.h:638
CaughtException()=default
CaughtException(const pcl::CaughtException &)=default
A simple exception with an associated error message.
Definition: Exception.h:256
String Caption() const override
Definition: Exception.h:300
bool ShowUnformatted() const override
Definition: Exception.h:307
String Message() const override
Definition: Exception.h:293
Error()=default
Error(const Error &)=default
Error(const String &message, bool unformatted=false)
Definition: Exception.h:280
Root base class for all PCL exception classes.
Definition: Exception.h:82
virtual String Caption() const
virtual bool ShowUnformatted() const
Definition: Exception.h:153
Exception()=default
static void DisableConsoleOutput(bool disable=true)
Definition: Exception.h:208
static void EnableConsoleOutput(bool=true)
virtual String ExceptionClass() const
Definition: Exception.h:105
virtual ~Exception()
Definition: Exception.h:98
Exception(const pcl::Exception &)=default
virtual String FormatInfo() const
static void EnableGUIOutput(bool=true)
virtual void Show() const
static bool IsConsoleOutputEnabled()
virtual String Message() const
Definition: Exception.h:113
static bool IsGUIOutputEnabled()
static void DisableGUIOutput(bool disable=true)
Definition: Exception.h:238
Errors that cause immediate program termination.
Definition: Exception.h:330
String Caption() const override
Definition: Exception.h:368
FatalError(const pcl::Exception &x)
Definition: Exception.h:356
FatalError()=default
FatalError(const String &message, bool unformatted=false)
Definition: Exception.h:348
FatalError(const pcl::FatalError &)=default
Eight-bit string (ISO/IEC-8859-1 or UTF-8 string)
Definition: String.h:5445
An exception that indicates an unsupported feature.
Definition: Exception.h:385
NotImplemented(const T &object, const String &notImplemented)
Definition: Exception.h:397
NotImplemented(const NotImplemented &)=default
Base class for exceptions thrown by parsing routines.
Definition: Exception.h:429
ParseError(const ParseError &)=default
ParseError()=default
String Message() const override
void Show() const override
ParseError(const String &message, const String &beingParsed=String(), int errorPosition=-1)
Definition: Exception.h:460
An exception class signaling the interruption of a process.
Base class for exceptions thrown by source code interpreters.
Definition: Exception.h:497
int LineNumber() const
Definition: Exception.h:551
int ColumnNumber() const
Definition: Exception.h:566
SourceCodeError()=default
void Show() const override
void AddToPosition(T1 lines, T1 columns=0)
Definition: Exception.h:605
SourceCodeError(const String &message, T1 line=-1, T1 column=-1)
Definition: Exception.h:534
SourceCodeError(const SourceCodeError &)=default
String Message() const override
void SetPosition(T1 line, T1 column=-1)
Definition: Exception.h:585
Unicode (UTF-16) string.
Definition: String.h:8148
#define PCL_DECLARE_EXCEPTION_CLASS(className, exceptionClass, message)
A macro to implement simple exception classes derived from Exception.
Definition: Exception.h:675
constexpr const T & Range(const T &x, const T &a, const T &b) noexcept
Definition: Utility.h:190
PCL root namespace.
Definition: AbstractImage.h:77