oerror.cpp 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. /*====================================================================*
  2. *
  3. * oerror.cpp - oerror class definition;
  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_SOURCE
  14. #define oERROR_SOURCE
  15. /*====================================================================*
  16. * system header files;
  17. *--------------------------------------------------------------------*/
  18. #include <iostream>
  19. #include <cstdarg>
  20. #include <cstdlib>
  21. #include <cstring>
  22. #include <cerrno>
  23. /*====================================================================*
  24. * custom header files;
  25. *--------------------------------------------------------------------*/
  26. #include "../classes/oerror.hpp"
  27. /*====================================================================*
  28. *
  29. * void oerror::print (char const *format, ...);
  30. *
  31. * print error messages using a variable argument list; prefix all
  32. * messages with the program_name string; suffix all messages with
  33. * the text returned by strerror(error);
  34. *
  35. * Motley Tools by Charles Maier <cmaier@cmassoc.net>;
  36. * Copyright 2001-2006 by Charles Maier Associates;
  37. * Licensed under the Internet Software Consortium License;
  38. *
  39. *--------------------------------------------------------------------*/
  40. void oerror::print (char const *format, ...)
  41. {
  42. extern char const * program_name;
  43. if ((program_name) && (*program_name))
  44. {
  45. std::cerr << program_name << ": ";
  46. }
  47. if ((format) && (*format))
  48. {
  49. va_list argp;
  50. va_start (argp, format);
  51. std::vfprintf (stderr, format, argp);
  52. va_end (argp);
  53. }
  54. std::cerr << std::endl;
  55. return;
  56. }
  57. /*====================================================================*
  58. *
  59. * void oerror::perror (char const *format, ...);
  60. *
  61. * print an error message using variable argument list; prefix all
  62. * messages with program_name; append strerror() message text when
  63. * errno is non-zero;
  64. *
  65. * Motley Tools by Charles Maier <cmaier@cmassoc.net>;
  66. * Copyright 2001-2006 by Charles Maier Associates;
  67. * Licensed under the Internet Software Consortium License;
  68. *
  69. *--------------------------------------------------------------------*/
  70. void oerror::error (char const *format, ...)
  71. {
  72. extern char const * program_name;
  73. if ((program_name) && (*program_name))
  74. {
  75. std::cerr << program_name << ": ";
  76. }
  77. if (errno)
  78. {
  79. std::cerr << std::strerror (errno) << ": ";
  80. errno = 0;
  81. }
  82. if ((format) && (*format))
  83. {
  84. va_list argp;
  85. va_start (argp, format);
  86. std::vfprintf (stderr, format, argp);
  87. va_end (argp);
  88. }
  89. std::cerr << std::endl;
  90. return;
  91. }
  92. /*====================================================================*
  93. *
  94. * void error (int code, errno_t error, char const *format, ...);
  95. *
  96. * print an error message using variable argument list; prefix all
  97. * messages with program_name; append strerror() message text when
  98. * number is not non-zero; exit with status if status is non-zero;
  99. *
  100. * included for compatibility with the GNU C library;
  101. *
  102. * Motley Tools by Charles Maier <cmaier@cmassoc.net>;
  103. * Copyright 2001-2006 by Charles Maier Associates;
  104. * Licensed under the Internet Software Consortium License;
  105. *
  106. *--------------------------------------------------------------------*/
  107. void oerror::error (int status, errno_t number, char const *format, ...)
  108. {
  109. extern char const * program_name;
  110. if ((program_name) && (*program_name))
  111. {
  112. std::cerr << program_name << ": ";
  113. }
  114. if (number)
  115. {
  116. std::cerr << std::strerror (number) << ": ";
  117. errno = 0;
  118. }
  119. if ((format) && (*format))
  120. {
  121. va_list arglist;
  122. va_start (arglist, format);
  123. std::vfprintf (stderr, format, arglist);
  124. va_end (arglist);
  125. }
  126. std::cerr << std::endl;
  127. if (status)
  128. {
  129. std::exit (status);
  130. }
  131. return;
  132. }
  133. /*====================================================================*
  134. *
  135. * void error_at_line (int status, errno_t number, char const *file, unsigned line, char const *format, ...);
  136. *
  137. * print error messages using a variable argument list; prefix all
  138. * messages with the program_name string; suffix messages with the
  139. * text returned by strerror(error) if error is not 0; exit with
  140. * code if code is not 0; include filename and lineno;
  141. *
  142. * included for compatibility with the GNU C library;
  143. *
  144. * Motley Tools by Charles Maier <cmaier@cmassoc.net>;
  145. * Copyright 2001-2006 by Charles Maier Associates;
  146. * Licensed under the Internet Software Consortium License;
  147. *
  148. *--------------------------------------------------------------------*/
  149. void oerror::error_at_line (int status, errno_t number, char const *file, unsigned line, char const *format, ...)
  150. {
  151. extern char const * program_name;
  152. if ((program_name) && (*program_name))
  153. {
  154. std::cerr << program_name << ": ";
  155. }
  156. if ((file) && (*file))
  157. {
  158. std::cerr << file << " (" << line << "): ";
  159. }
  160. if (number)
  161. {
  162. std::cerr << std::strerror (number) << ": ";
  163. }
  164. if ((format) && (*format))
  165. {
  166. va_list arglist;
  167. va_start (arglist, format);
  168. std::vfprintf (stderr, format, arglist);
  169. va_end (arglist);
  170. }
  171. std::cerr << std::endl;
  172. if (status)
  173. {
  174. std::exit (status);
  175. }
  176. return;
  177. }
  178. /*====================================================================*
  179. *
  180. * oerror ();
  181. *
  182. * Motley Tools by Charles Maier <cmaier@cmassoc.net>;
  183. * Copyright 2001-2006 by Charles Maier Associates;
  184. * Licensed under the Internet Software Consortium License;
  185. *
  186. *--------------------------------------------------------------------*/
  187. oerror::oerror ()
  188. {
  189. extern char const * program_name;
  190. if ((!program_name) || (!*program_name))
  191. {
  192. program_name = "unamed program";
  193. }
  194. errno = 0;
  195. return;
  196. }
  197. /*====================================================================*
  198. *
  199. * ~oerror ();
  200. *
  201. * Motley Tools by Charles Maier <cmaier@cmassoc.net>;
  202. * Copyright 2001-2006 by Charles Maier Associates;
  203. * Licensed under the Internet Software Consortium License;
  204. *
  205. *--------------------------------------------------------------------*/
  206. oerror::~oerror ()
  207. {
  208. extern char const * program_name;
  209. if (!(program_name) || !(*program_name))
  210. {
  211. program_name = "unamed program";
  212. }
  213. return;
  214. }
  215. /*====================================================================*
  216. * end definition;
  217. *--------------------------------------------------------------------*/
  218. #endif