oerror.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <chapter id='oerror'>
  2. <title>
  3. Class oerror
  4. </title>
  5. <section id="oerror-class" >
  6. <title>
  7. Introduction
  8. </title>
  9. <para>
  10. This class implements a standard means of displaying system error messages. Class methods may be replaced or adapted to support either a console or a windowing environment.
  11. </para>
  12. <para>
  13. This class is declared in <ulink url='oerror.hpp.html'>oerror.hpp</ulink> and defined in <ulink url='oerror.cpp.html'>oerror.cpp</ulink>.
  14. </para>
  15. <section id="oerror-inheritance">
  16. <title>
  17. Inheritance
  18. </title>
  19. <para>
  20. None.
  21. </para>
  22. </section>
  23. <section id="oerror-dependence">
  24. <title>
  25. Dependence
  26. </title>
  27. <para>
  28. This references header file <ulink url='types.h.html'>types.h</ulink> to define data type <quote>errno_t</quote>.
  29. </para>
  30. <para>
  31. This classes references external character string <varname>program_name</varname> which must be defined and initialized somewhere in the environment. The simplest method is to define a global constant character pointer to the basename of <varname>argv</varname>[<constant>0</constant>] in function main().
  32. </para>
  33. </section>
  34. </section>
  35. <section id="oerror-properties">
  36. <title>
  37. Properties
  38. </title>
  39. <para>
  40. None.
  41. </para>
  42. </section>
  43. <section id="oerror-methods">
  44. <title>
  45. Methods
  46. </title>
  47. <para>
  48. </para>
  49. <section id="oerror-error">
  50. <title>
  51. oerror::error
  52. </title>
  53. <funcsynopsis>
  54. <funcprototype>
  55. <funcdef>oerror &amp; <function>oerror::error</function></funcdef>
  56. <paramdef>signed <parameter>status</parameter></paramdef>
  57. <paramdef>errno_t <parameter>number</parameter></paramdef>
  58. <paramdef>errno_t <parameter>format</parameter></paramdef>
  59. <paramdef><parameter>...</parameter></paramdef>
  60. </funcprototype>
  61. </funcsynopsis>
  62. <para>
  63. Print an error message on <constant>stderr</constant> and optionally terminate the program. The message consists of the program name, system error message and a program error message. This method behaves the same as the <productname>GNU/Linux</productname> <application>error</application> function.
  64. </para>
  65. <variablelist>
  66. <varlistentry>
  67. <term>
  68. status
  69. </term>
  70. <listitem>
  71. <para>
  72. The program exit status. if status is 0 then this method will return to the caller after printing an error message. Otherwise, the program will exit with this value after printing the message.
  73. </para>
  74. </listitem>
  75. </varlistentry>
  76. <varlistentry>
  77. <term>
  78. errno
  79. </term>
  80. <listitem>
  81. <para>
  82. The error code. This is normally the value of global variable <varname>errno</varname> set by system functions to indicate the cause of an error condition. If argument <varname>number</varname> is <constant>0</constant> then no system error message is printed. Otherwise, the system error message will appear
  83. </para>
  84. </listitem>
  85. </varlistentry>
  86. <varlistentry>
  87. <term>
  88. format
  89. </term>
  90. <listitem>
  91. <para>
  92. The format string. The content is the same as required by standard library function printf().
  93. </para>
  94. </listitem>
  95. </varlistentry>
  96. <varlistentry>
  97. <term>
  98. ...
  99. </term>
  100. <listitem>
  101. <para>
  102. A variable length argument list. On <productname>GNU/Linux</productname> systems, the <application>gcc</application> compiler checks to ensure the number and type of each argument actually match the corresponding format string specification.
  103. </para>
  104. </listitem>
  105. </varlistentry>
  106. </variablelist>
  107. </section>
  108. </section>
  109. </chapter>