Spaces:
Runtime error
Runtime error
| // * This makes emacs happy -*-Mode: C++;-*- | |
| /**************************************************************************** | |
| * Copyright 2018-2021,2022 Thomas E. Dickey * | |
| * Copyright 1998-2012,2017 Free Software Foundation, Inc. * | |
| * * | |
| * Permission is hereby granted, free of charge, to any person obtaining a * | |
| * copy of this software and associated documentation files (the * | |
| * "Software"), to deal in the Software without restriction, including * | |
| * without limitation the rights to use, copy, modify, merge, publish, * | |
| * distribute, distribute with modifications, sublicense, and/or sell * | |
| * copies of the Software, and to permit persons to whom the Software is * | |
| * furnished to do so, subject to the following conditions: * | |
| * * | |
| * The above copyright notice and this permission notice shall be included * | |
| * in all copies or substantial portions of the Software. * | |
| * * | |
| * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * | |
| * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * | |
| * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * | |
| * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, * | |
| * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR * | |
| * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * | |
| * THE USE OR OTHER DEALINGS IN THE SOFTWARE. * | |
| * * | |
| * Except as contained in this notice, the name(s) of the above copyright * | |
| * holders shall not be used in advertising or otherwise to promote the * | |
| * sale, use or other dealings in this Software without prior written * | |
| * authorization. * | |
| ****************************************************************************/ | |
| /**************************************************************************** | |
| * Author: Juergen Pfeifer, 1997 * | |
| ****************************************************************************/ | |
| // $Id: etip.h.in,v 1.50 2022/08/20 20:50:00 tom Exp $ | |
| // These are substituted at configure/build time | |
| extern "C" { | |
| } | |
| // Language features | |
| // Forward Declarations | |
| class NCURSES_CXX_IMPEXP NCursesPanel; | |
| class NCURSES_CXX_IMPEXP NCursesMenu; | |
| class NCURSES_CXX_IMPEXP NCursesForm; | |
| class NCURSES_CXX_IMPEXP NCursesException | |
| { | |
| public: | |
| const char *message; | |
| int errorno; | |
| NCursesException (const char* msg, int err) | |
| : message(msg), errorno (err) | |
| {}; | |
| explicit NCursesException (const char* msg) | |
| : message(msg), errorno (E_SYSTEM_ERROR) | |
| {}; | |
| NCursesException& operator=(const NCursesException& rhs) | |
| { | |
| message = rhs.message; | |
| errorno = rhs.errorno; | |
| return *this; | |
| } | |
| NCursesException(const NCursesException& rhs) | |
| : message(rhs.message), errorno(rhs.errorno) | |
| { | |
| } | |
| virtual const char *classname() const { | |
| return "NCursesWindow"; | |
| } | |
| virtual ~NCursesException() | |
| { | |
| } | |
| }; | |
| class NCURSES_CXX_IMPEXP NCursesPanelException : public NCursesException | |
| { | |
| public: | |
| const NCursesPanel* p; | |
| NCursesPanelException (const char *msg, int err) : | |
| NCursesException (msg, err), | |
| p (0) | |
| {}; | |
| NCursesPanelException (const NCursesPanel* panel, | |
| const char *msg, | |
| int err) : | |
| NCursesException (msg, err), | |
| p (panel) | |
| {}; | |
| explicit NCursesPanelException (int err) : | |
| NCursesException ("panel library error", err), | |
| p (0) | |
| {}; | |
| NCursesPanelException (const NCursesPanel* panel, | |
| int err) : | |
| NCursesException ("panel library error", err), | |
| p (panel) | |
| {}; | |
| NCursesPanelException& operator=(const NCursesPanelException& rhs) | |
| { | |
| if (this != &rhs) { | |
| NCursesException::operator=(rhs); | |
| p = rhs.p; | |
| } | |
| return *this; | |
| } | |
| NCursesPanelException(const NCursesPanelException& rhs) | |
| : NCursesException(rhs), p(rhs.p) | |
| { | |
| } | |
| virtual const char *classname() const NCURSES_OVERRIDE { | |
| return "NCursesPanel"; | |
| } | |
| virtual ~NCursesPanelException() | |
| { | |
| } | |
| }; | |
| class NCURSES_CXX_IMPEXP NCursesMenuException : public NCursesException | |
| { | |
| public: | |
| const NCursesMenu* m; | |
| NCursesMenuException (const char *msg, int err) : | |
| NCursesException (msg, err), | |
| m (0) | |
| {}; | |
| NCursesMenuException (const NCursesMenu* menu, | |
| const char *msg, | |
| int err) : | |
| NCursesException (msg, err), | |
| m (menu) | |
| {}; | |
| explicit NCursesMenuException (int err) : | |
| NCursesException ("menu library error", err), | |
| m (0) | |
| {}; | |
| NCursesMenuException (const NCursesMenu* menu, | |
| int err) : | |
| NCursesException ("menu library error", err), | |
| m (menu) | |
| {}; | |
| NCursesMenuException& operator=(const NCursesMenuException& rhs) | |
| { | |
| if (this != &rhs) { | |
| NCursesException::operator=(rhs); | |
| m = rhs.m; | |
| } | |
| return *this; | |
| } | |
| NCursesMenuException(const NCursesMenuException& rhs) | |
| : NCursesException(rhs), m(rhs.m) | |
| { | |
| } | |
| virtual const char *classname() const NCURSES_OVERRIDE { | |
| return "NCursesMenu"; | |
| } | |
| virtual ~NCursesMenuException() | |
| { | |
| } | |
| }; | |
| class NCURSES_CXX_IMPEXP NCursesFormException : public NCursesException | |
| { | |
| public: | |
| const NCursesForm* f; | |
| NCursesFormException (const char *msg, int err) : | |
| NCursesException (msg, err), | |
| f (0) | |
| {}; | |
| NCursesFormException (const NCursesForm* form, | |
| const char *msg, | |
| int err) : | |
| NCursesException (msg, err), | |
| f (form) | |
| {}; | |
| explicit NCursesFormException (int err) : | |
| NCursesException ("form library error", err), | |
| f (0) | |
| {}; | |
| NCursesFormException (const NCursesForm* form, | |
| int err) : | |
| NCursesException ("form library error", err), | |
| f (form) | |
| {}; | |
| NCursesFormException& operator=(const NCursesFormException& rhs) | |
| { | |
| if (this != &rhs) { | |
| NCursesException::operator=(rhs); | |
| f = rhs.f; | |
| } | |
| return *this; | |
| } | |
| NCursesFormException(const NCursesFormException& rhs) | |
| : NCursesException(rhs), f(rhs.f) | |
| { | |
| } | |
| virtual const char *classname() const NCURSES_OVERRIDE { | |
| return "NCursesForm"; | |
| } | |
| virtual ~NCursesFormException() | |
| { | |
| } | |
| }; | |
| using std::cerr; | |
| using std::endl; | |
| inline void THROW(const NCursesException *e) { | |
| (*lib_error_handler)(e ? e->classname() : "", e ? e->message : ""); | |
| // g++ 7.0 warns about deprecation, but lacks the predefined symbols | |
| ::endwin(); | |
| std::cerr << "Found a problem - goodbye" << std::endl; | |
| exit(EXIT_FAILURE); | |
| genericerror(1, ((e != 0) ? (char *)(e->message) : "")); | |
| if (e) | |
| cerr << e->message << endl; | |
| exit(0); | |
| throw *e; | |
| // C++17 deprecates the usage of throw(). | |
| } | |