Annotation of libwww/Library/src/HTError.html, revision 2.18.2.1

2.1       frystyk     1: <HTML>
                      2: <HEAD>
                      3: <TITLE>Error message module for libwww</TITLE>
                      4: <NEXTID N="z1">
                      5: </HEAD>
                      6: <BODY>
2.18      frystyk     7: 
2.9       frystyk     8: <H1>Reporting Errors and Messages to the Client</H1>
2.1       frystyk     9: 
2.18      frystyk    10: <PRE>
                     11: /*
                     12: **     (c) COPYRIGHT CERN 1994.
                     13: **     Please first read the full copyright statement in the file COPYRIGH.
                     14: */
                     15: </PRE>
                     16: 
2.15      frystyk    17: This module maintaines a list of error messages that might occur
                     18: during load of a requested URL. The error list is put out to standard
                     19: output by a simple function that easily can be overwritten by a smart
2.18      frystyk    20: server or client.  <P>
2.15      frystyk    21: 
                     22: <NOTE><B>Note: </B></NOTE> At the moment, <A
                     23: HREF="HTErrorMsg.c">HTErrorMsg()</A> is called, if the flag
                     24: HTRequest-&gt;error_block is set to YES, then a stream has been put up
                     25: or taken down in the library and therefore it is <B>VERY</B> unsafe to
2.18      frystyk    26: put anything more to the stream. <P>
                     27: 
                     28: This module is implemented by <A HREF="HTError.c">HTError.c</A>, and
                     29: it is a part of the <A
                     30: HREF="http://info.cern.ch/hypertext/WWW/Library/User/Guide/Guide.html">
                     31: Library of Common Code</A>.
2.4       frystyk    32: 
2.1       frystyk    33: <PRE>
                     34: #ifndef HTERROR_H
                     35: #define HTERROR_H
2.15      frystyk    36: #include "HTAccess.h"
2.1       frystyk    37: </PRE>
                     38: 
2.3       frystyk    39: <H2>Data Structures</H2>
2.1       frystyk    40: 
2.15      frystyk    41: The basic data structure is HTErrorInfo, but in addition the following
                     42: types are used:
2.1       frystyk    43: 
2.3       frystyk    44: <H3>Error Numbers</H3>
2.1       frystyk    45: 
2.15      frystyk    46: <NOTE><B>Note: </B></NOTE> All non-HTTP error codes have index numbers
                     47: &gt; HTERR_HTTP_CODES, and they will not be shown in the error-message
                     48: generated.
                     49: 
2.1       frystyk    50: <PRE>
                     51: typedef enum _HTErrorElement {
                     52:        HTERR_OK = 0,                                           /* 200 */
                     53:        HTERR_CREATED,                                          /* 201 */
                     54:        HTERR_ACCEPTED,                                         /* 202 */
                     55:        HTERR_PARTIAL,                                          /* 203 */
                     56:        HTERR_NO_RESPONSE,                                      /* 204 */
2.18.2.1! frystyk    57:        HTERR_DELETED,                                          /* 205 */
        !            58:        HTERR_MODIFIED,                                         /* 206 */
2.1       frystyk    59:        HTERR_MOVED,                                            /* 301 */
                     60:        HTERR_FOUND,                                            /* 302 */
                     61:        HTERR_METHOD,                                           /* 303 */
                     62:        HTERR_NOT_MODIFIED,                                     /* 304 */
                     63:        HTERR_BAD_REQUEST,                                      /* 400 */
                     64:        HTERR_UNAUTHORIZED,                                     /* 401 */
                     65:        HTERR_PAYMENT_REQUIRED,                                 /* 402 */
                     66:        HTERR_FORBIDDEN,                                        /* 403 */
                     67:        HTERR_NOT_FOUND,                                        /* 404 */
2.18.2.1! frystyk    68:        HTERR_NOT_ALLOWED,                                      /* 405 */
        !            69:        HTERR_NONE_ACCEPTABLE,                                  /* 406 */
        !            70:        HTERR_PROXY,                                            /* 407 */
        !            71:        HTERR_TIMEOUT,                                          /* 408 */
2.1       frystyk    72:        HTERR_INTERNAL,                                         /* 500 */
                     73:        HTERR_NOT_IMPLEMENTED,                                  /* 501 */
2.18.2.1! frystyk    74:        HTERR_BAD_GATE,                                         /* 502 */
        !            75:        HTERR_DOWN,                                             /* 503 */
        !            76:        HTERR_GATE_TIMEOUT,                                     /* 504 */
2.1       frystyk    77:        HTERR_HTTP_CODES_END,    /* Put all non-HTTP status codes after this */
                     78:        HTERR_NO_REMOTE_HOST,
2.13      frystyk    79:        HTERR_NO_HOST,
2.1       frystyk    80:        HTERR_FTP_SERVER,
                     81:        HTERR_FTP_NO_RESPONSE,
                     82:        HTERR_TIME_OUT,
2.2       frystyk    83:        HTERR_GOPHER_SERVER,
                     84:        HTERR_INTERRUPTED,
2.13      frystyk    85:        HTERR_CON_INTR,
2.2       frystyk    86:        HTERR_CSO_SERVER,
2.18.2.1! frystyk    87:        HTERR_HTTP09,
        !            88:        HTERR_BAD_REPLY,
2.16      frystyk    89:        HTERR_UNKNOWN_AA,
2.5       frystyk    90:        HTERR_NEWS_SERVER,
2.7       frystyk    91:        HTERR_FILE_TO_FTP,
2.8       frystyk    92:        HTERR_MAX_REDIRECT,
2.16      frystyk    93:        HTERR_EOF,
2.14      frystyk    94:        HTERR_WAIS_OVERFLOW,
                     95:        HTERR_WAIS_MODULE,
2.12      frystyk    96:        HTERR_WAIS_NO_CONNECT,
2.2       frystyk    97:        HTERR_SYSTEM,
2.1       frystyk    98:        HTERR_ELEMENTS                      /* This MUST be the last element */
                     99: } HTErrorElement;
2.3       frystyk   100: 
                    101: typedef enum _HTErrSeverity {
                    102:     ERR_FATAL            = 0x1,
2.7       frystyk   103:     ERR_NON_FATAL        = 0x2,
                    104:     ERR_WARNING          = 0x4,
                    105:     ERR_INFO             = 0x8
2.3       frystyk   106: } HTErrSeverity;
                    107: 
                    108: typedef struct _HTErrorInfo {
2.7       frystyk   109:     int                        handle;         /* Unique number in this stack */
2.3       frystyk   110:     HTErrorElement     element;        /* Index number into HTErrorMsgInfo */
                    111:     HTErrSeverity      severity;       /* A la VMS */
                    112:     BOOL                       ignore;         /* YES if msg should not go to user */
                    113:     void *             par;            /* Explanation, e.g. filename  */
                    114:     unsigned int       par_length;     /* For copying by generic routine */
                    115:     char *             where;          /* Which function */
                    116: } HTErrorInfo;
2.1       frystyk   117: </PRE>
                    118: 
2.3       frystyk   119: <H2>Controling Globals</H2>
                    120: 
2.15      frystyk   121: This variable dictates which errors should be put out when generating
                    122: the message to the user. The first four enumerations make it possible
                    123: to see `everything as bad or worse than' this level, e.g.
                    124: HT_ERR_SHOW_NON_FATAL shows messages of type HT_ERR_SHOW_NON_FATAL and
                    125: HT_ERR_SHOW_FATAL. <P>
                    126: 
                    127: <B>Note:</B> The default value is made so that it only puts a message
                    128: to <EM>stderr</EM> if a `real' error has occurred. If a separate
                    129: widget is available for information and error messages then probably
                    130: HT_ERR_SHOW_DETAILED would be more appropriate.
2.3       frystyk   131: 
                    132: <PRE>
                    133: typedef enum _HTErrorShow {
                    134:     HT_ERR_SHOW_FATAL     = 0x1,
                    135:     HT_ERR_SHOW_NON_FATAL = 0x3,
                    136:     HT_ERR_SHOW_WARNING   = 0x7,
2.6       frystyk   137:     HT_ERR_SHOW_INFO     = 0xF,
                    138:     HT_ERR_SHOW_PARS     = 0x10,
                    139:     HT_ERR_SHOW_LOCATION  = 0x20,
                    140:     HT_ERR_SHOW_IGNORE    = 0x40,
                    141:     HT_ERR_SHOW_FIRST     = 0x80,
2.15      frystyk   142:     HT_ERR_SHOW_LINKS     = 0x100,
2.7       frystyk   143:     HT_ERR_SHOW_DEFAULT          = 0x13,
                    144:     HT_ERR_SHOW_DETAILED  = 0x1F,
2.10      frystyk   145:     HT_ERR_SHOW_DEBUG    = 0x7F
2.3       frystyk   146: } HTErrorShow;
                    147: 
                    148: extern unsigned int HTErrorShowMask;
                    149: </PRE>
2.1       frystyk   150: 
2.15      frystyk   151: This is the table containing the actual error-messages and links for
                    152: more information:
2.1       frystyk   153: 
                    154: <PRE>
2.3       frystyk   155: typedef struct _HTErrorMsgInfo {
                    156:     int        code;                   /* Error number */
                    157:     char *     msg;                    /* Short explanation */
                    158:     char *     url;                    /* Explaning URL */
                    159: } HTErrorMsgInfo;
                    160: 
                    161: extern HTErrorMsgInfo error_info[];
2.1       frystyk   162: </PRE>
                    163: 
2.3       frystyk   164: <H2>Public Error Functions</H2>
                    165: 
2.1       frystyk   166: <H3>Add an Error Message</H3>
                    167: 
                    168: This function adds an error message to the error_stack list in the HTRequest
2.3       frystyk   169: structure. It always returns a negative value.
2.1       frystyk   170: <PRE>
2.3       frystyk   171: extern int HTErrorAdd PARAMS(( HTRequest *     request,
2.1       frystyk   172:                                HTErrSeverity   severity,
                    173:                                BOOL            ignore,
                    174:                                int             element,
                    175:                                void *          par,
                    176:                                unsigned int    par_length,
                    177:                                char *          where));
2.2       frystyk   178: </PRE>
                    179: 
                    180: <H3>Add a System Error Message</H3>
                    181: 
2.15      frystyk   182: This function adds an error from a system call that initializes errno
                    183: or equivalent and adds it to the error_stack list in the HTRequest
                    184: structure. It always returns a negative value.
                    185: 
2.2       frystyk   186: <PRE>
2.3       frystyk   187: extern int HTErrorSysAdd PARAMS(( HTRequest *  request,
2.2       frystyk   188:                                  HTErrSeverity severity,
                    189:                                  BOOL          ignore,
                    190:                                  char *        syscall));
2.1       frystyk   191: </PRE>
                    192: 
                    193: <H3>Ignoring an Error Message</H3>
                    194: 
2.15      frystyk   195: If an error message is not to be send to the user, e.g., output to the
                    196: stream, then the ignore flag must be turn on. Theese functions turns
                    197: it on for the latest error appended to the list or an arbitrary error
                    198: refered to by its handle.
                    199: 
2.1       frystyk   200: <PRE>
2.7       frystyk   201: extern void HTErrorIgnore PARAMS((HTRequest * request, int handle));
                    202: extern void HTErrorIgnoreLast PARAMS((HTRequest * request));
2.1       frystyk   203: </PRE>
                    204: 
2.15      frystyk   205: <H3>Handling Prefix for Links in Error Message</H3>
                    206: 
                    207: Two functions handle the URL prefix of the links inside the error
                    208: message. They are quite obvious:
                    209: 
                    210: <PRE>
2.17      frystyk   211: extern void HTErrorSetPrefix PARAMS((char *path));
                    212: extern CONST char *HTErrorGetPrefix NOPARAMS;
2.15      frystyk   213: </PRE>
                    214: 
2.7       frystyk   215: <H3>Generating an Error Message (default to standard error)</H3>
2.3       frystyk   216: 
2.8       frystyk   217: This function outputs the content of the error_stack to standard output 
                    218: (used in Line Mode Browser), but smart clients and servers might overwrite
                    219: this function so that the error messages can be handled to the user in a nice 
                    220: way. That is the reason for putting the actual implementation in HTErrorMsg.c,
                    221: that can be overwritten by clients and servers apart from Line Mode Browser.<P>
2.3       frystyk   222: 
2.4       frystyk   223: <NOTE><B>Note: </B></NOTE>
2.1       frystyk   224: 
2.8       frystyk   225: If a stream <EM>has</EM> been put up (and maybe taken down again) inside the 
                    226: Library, then request-&gt;error_block has been set to YES. This indicates that
                    227: it is NOT possible any more to use the stream as output for the message.
2.1       frystyk   228: <PRE>
2.17      frystyk   229: extern void HTErrorMsg    PARAMS((HTRequest * request));
2.1       frystyk   230: </PRE>
                    231: 
                    232: <H3>Freeing an Error List</H3>
                    233: 
2.8       frystyk   234: This is normally done when the HTRequest structure is freed but it might be 
                    235: done at any other time in order to ignore a whole series of errors.
2.1       frystyk   236: <PRE>
2.17      frystyk   237: extern void HTErrorFree   PARAMS((HTRequest * request));
2.1       frystyk   238: </PRE>
                    239: 
                    240: <PRE>
                    241: #endif
                    242: </PRE>
                    243: end
                    244: </BODY>
                    245: </HTML>
                    246: 
                    247: 

Webmaster