oerror.hpp 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*====================================================================*
  2. *
  3. * oerror.hpp - interface for the oerror class.
  4. *
  5. * this class implements the useful GNU error() and error_at_line()
  6. * functions with some additions;
  7. *
  8. * Motley Tools by Charles Maier <cmaier@cmassoc.net>;
  9. * Copyright 2001-2006 by Charles Maier Associates;
  10. * Licensed under the Internet Software Consortium License;
  11. *
  12. *--------------------------------------------------------------------*/
  13. #ifndef oERROR_HEADER
  14. #define oERROR_HEADER
  15. /*====================================================================*
  16. * custom header files;
  17. *--------------------------------------------------------------------*/
  18. #include <cstdio>
  19. #include <cerrno>
  20. /*====================================================================*
  21. * custom header files;
  22. *--------------------------------------------------------------------*/
  23. #include "../classes/stdafx.hpp"
  24. #include "../tools/types.h"
  25. /*====================================================================*
  26. * class constants;
  27. *--------------------------------------------------------------------*/
  28. #ifndef ECANCELED
  29. #define ECANCELED 0
  30. #endif
  31. #ifndef EOVERFLOW
  32. #define EOVERFLOW 0
  33. #endif
  34. #ifndef ENOTSUP
  35. #define ENOTSUP 0
  36. #endif
  37. /*====================================================================*
  38. * class constants;
  39. *--------------------------------------------------------------------*/
  40. #define oERROR_NEEDROOT "Program requires root privileges"
  41. #define oERROR_UNWANTED "Superfluous command line arguments"
  42. /*====================================================================*
  43. * class declarations;
  44. *--------------------------------------------------------------------*/
  45. class oerror
  46. {
  47. public:
  48. oerror ();
  49. virtual ~ oerror ();
  50. static void print (char const *format, ...);
  51. static void error (char const *format, ...);
  52. static void syntax (char const * file, unsigned line, char const *format, ...);
  53. static void error (signed status, errno_t number, char const *format, ...);
  54. static void error_at_line (signed status, errno_t number, char const * file, unsigned line, char const * format, ...);
  55. };
  56. /*====================================================================*
  57. *
  58. *--------------------------------------------------------------------*/
  59. #endif