1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
|
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
struct einfo
{
char const * string;
int errno_value;
char const * text;
} error[] =
{
/* A list of the error codes demanded by C++, and the text from the
description in the C++ standard. These are taken from POSIX.
*/
{ "_PDCLIB_E2BIG", E2BIG, "Argument list too long" },
{ "_PDCLIB_EACCES", EACCES, "Permission denied" },
{ "_PDCLIB_EADDRINUSE", EADDRINUSE, "Address in use" },
{ "_PDCLIB_EADDRNOTAVAIL", EADDRNOTAVAIL, "Address not available" },
{ "_PDCLIB_EAFNOSUPPORT", EAFNOSUPPORT, "Address family not supported" },
{ "_PDCLIB_EAGAIN", EAGAIN, "Resource unavailable, try again" },
{ "_PDCLIB_EALREADY", EALREADY, "Connection already in progress" },
{ "_PDCLIB_EBADF", EBADF, "Bad file descriptor" },
{ "_PDCLIB_EBADMSG", EBADMSG, "Bad message" },
{ "_PDCLIB_EBUSY", EBUSY, "Device or resource busy" },
{ "_PDCLIB_ECANCELED", ECANCELED, "Operation canceled" },
{ "_PDCLIB_ECHILD", ECHILD, "No child processes" },
{ "_PDCLIB_ECONNABORTED", ECONNABORTED, "Connection aborted" },
{ "_PDCLIB_ECONNREFUSED", ECONNREFUSED, "Connection refused" },
{ "_PDCLIB_ECONNRESET", ECONNRESET, "Connection reset" },
{ "_PDCLIB_EDEADLK", EDEADLK, "Resource deadlock would occur" },
{ "_PDCLIB_EDESTADDRREQ", EDESTADDRREQ, "Destination address required" },
{ "_PDCLIB_EDOM", EDOM, "Mathematics argument out of domain of function" },
{ "_PDCLIB_EEXIST", EEXIST, "File exists" },
{ "_PDCLIB_EFAULT", EFAULT, "Bad address" },
{ "_PDCLIB_EFBIG", EFBIG, "File too large" },
{ "_PDCLIB_EHOSTUNREACH", EHOSTUNREACH, "Host is unreachable" },
{ "_PDCLIB_EIDRM", EIDRM, "Identifier removed" },
{ "_PDCLIB_EILSEQ", EILSEQ, "Illegal byte sequence" },
{ "_PDCLIB_EINPROGRESS", EINPROGRESS, "Operation in progress" },
{ "_PDCLIB_EINTR", EINTR, "Interrupted function" },
{ "_PDCLIB_EINVAL", EINVAL, "Invalid argument" },
{ "_PDCLIB_EIO", EIO, "I/O error" },
{ "_PDCLIB_EISCONN", EISCONN, "Socket is connected" },
{ "_PDCLIB_EISDIR", EISDIR, "Is a directory" },
{ "_PDCLIB_ELOOP", ELOOP, "Too many levels of symbolic links" },
{ "_PDCLIB_EMFILE", EMFILE, "File descriptor value too large" },
{ "_PDCLIB_EMLINK", EMLINK, "Too many links" },
{ "_PDCLIB_EMSGSIZE", EMSGSIZE, "Message too large" },
{ "_PDCLIB_ENAMETOOLONG", ENAMETOOLONG, "Filename too long" },
{ "_PDCLIB_ENETDOWN", ENETDOWN, "Network is down" },
{ "_PDCLIB_ENETRESET", ENETRESET, "Connection aborted by network" },
{ "_PDCLIB_ENETUNREACH", ENETUNREACH, "Network unreachable" },
{ "_PDCLIB_ENFILE", ENFILE, "Too many files open in system" },
{ "_PDCLIB_ENOBUFS", ENOBUFS, "No buffer space available" },
{ "_PDCLIB_ENODATA", ENODATA, "No message is available on the STREAM head read queue" },
{ "_PDCLIB_ENODEV", ENODEV, "No such device" },
{ "_PDCLIB_ENOENT", ENOENT, "No such file or directory" },
{ "_PDCLIB_ENOEXEC", ENOEXEC, "Executable file format error" },
{ "_PDCLIB_ENOLCK", ENOLCK, "No locks available" },
{ "_PDCLIB_ENOLINK", ENOLINK, "Link has been severed" },
{ "_PDCLIB_ENOMEM", ENOMEM, "Not enough space" },
{ "_PDCLIB_ENOMSG", ENOMSG, "No message of the desired type" },
{ "_PDCLIB_ENOPROTOOPT", ENOPROTOOPT, "Protocol not available" },
{ "_PDCLIB_ENOSPC", ENOSPC, "No space left on device" },
{ "_PDCLIB_ENOSR", ENOSR, "No STREAM resources" },
{ "_PDCLIB_ENOSTR", ENOSTR, "Not a STREAM" },
{ "_PDCLIB_ENOSYS", ENOSYS, "Function not supported" },
{ "_PDCLIB_ENOTCONN", ENOTCONN, "The socket is not connected" },
{ "_PDCLIB_ENOTDIR", ENOTDIR, "Not a directory" },
{ "_PDCLIB_ENOTEMPTY", ENOTEMPTY, "Directory not empty" },
{ "_PDCLIB_ENOTRECOVERABLE", ENOTRECOVERABLE, "State not recoverable" },
{ "_PDCLIB_ENOTSOCK", ENOTSOCK, "Not a socket" },
{ "_PDCLIB_ENOTSUP", ENOTSUP, "Not supported" },
{ "_PDCLIB_ENOTTY", ENOTTY, "Inappropriate I/O control operation" },
{ "_PDCLIB_ENXIO", ENXIO, "No such device or address" },
{ "_PDCLIB_EOPNOTSUPP", EOPNOTSUPP, "Operation not supported on socket" },
{ "_PDCLIB_EOVERFLOW", EOVERFLOW, "Value too large to be stored in data type" },
{ "_PDCLIB_EOWNERDEAD", EOWNERDEAD, "Previous owner died" },
{ "_PDCLIB_EPERM", EPERM, "Operation not permitted" },
{ "_PDCLIB_EPIPE", EPIPE, "Broken pipe" },
{ "_PDCLIB_EPROTO", EPROTO, "Protocol error" },
{ "_PDCLIB_EPROTONOSUPPORT", EPROTONOSUPPORT, "Protocol not supported" },
{ "_PDCLIB_EPROTOTYPE", EPROTOTYPE, "Protocol wrong type for socket" },
{ "_PDCLIB_ERANGE", ERANGE, "Result too large" },
{ "_PDCLIB_EROFS", EROFS, "Read-only file system" },
{ "_PDCLIB_ESPIPE", ESPIPE, "Invalid seek" },
{ "_PDCLIB_ESRCH", ESRCH, "No such process" },
{ "_PDCLIB_ETIME", ETIME, "Stream ioctl() timeout" },
{ "_PDCLIB_ETIMEDOUT", ETIMEDOUT, "Connection timed out" },
{ "_PDCLIB_ETXTBSY", ETXTBSY, "Text file busy" },
{ "_PDCLIB_EWOULDBLOCK", EWOULDBLOCK, "Operation would block" },
{ "_PDCLIB_EXDEV", EXDEV, "Cross-device link" },
};
int main( int argc, char * argv[] )
{
const char * unknown_error_text = "unknown error";
size_t errno_max = 0;
size_t text_len_max = strlen( unknown_error_text );
size_t string_len_max = strlen( unknown_error_text );
for ( size_t i = 0; i < sizeof( error ) / sizeof( error[0] ); ++i )
{
/* Highest value for any of the given error codes */
if ( error[i].errno_value > errno_max )
{
errno_max = error[i].errno_value;
}
/* Longest error symbol (for prettyprinting) */
if ( strlen( error[i].string ) > string_len_max )
{
string_len_max = strlen( error[i].string );
}
/* Longest error text (for prettyprinting) */
if ( strlen( error[i].text ) > text_len_max )
{
text_len_max = strlen( error[i].text );
}
}
puts( "/* ------------------------------------- */" );
puts( "/* The definitions, for _PDCLIB_config.h */" );
puts( "/* ------------------------------------- */" );
puts( "" );
for ( size_t i = 0; i < sizeof( error ) / sizeof( error[0] ); ++i )
{
printf( "/* %s */\n#define %-*s %3d\n", error[i].text, ( int )string_len_max, error[i].string, error[i].errno_value );
}
puts( "" );
puts( "/* The highest defined errno value, plus one. This is used to set the size */" );
puts( "/* of the array in struct _PDCLIB_lc_text_t holding error messages for the */" );
puts( "/* strerror() and perror() functions. (If you change this value because you */" );
puts( "/* are using additional errno values, you *HAVE* to provide appropriate error */" );
puts( "/* messages for *ALL* locales.) */" );
printf( "#define _PDCLIB_ERRNO_MAX %d\n", ( int )errno_max + 1 );
puts( "" );
puts( "/* The error message used for unknown error codes (generated by errno_readout */" );
puts( "/* for consistency between the 'holes' in the list of defined error messages */" );
puts( "/* and the text generated by e.g. strerror() for out-of-range error values.) */" );
printf( "#define _PDCLIB_EUNKNOWN_TEXT ( char* )\"%s\"\n", unknown_error_text );
puts( "" );
puts( "/* -------------------------------------------------- */" );
puts( "/* An array of the error texts, for _PDCLIB_stdinit.c */" );
puts( "/* -------------------------------------------------- */" );
puts( "" );
string_len_max -= 8;
struct einfo * sortlst = malloc( sizeof( struct einfo ) * ( errno_max + 1 ) );
/* errno == 0 -> 'Success' */
printf( " /* %-*s */ ( char * )\"Success\",\n", ( int )string_len_max, "" );
for ( size_t i = 1; i <= errno_max; ++i )
{
int index = -1;
for ( size_t j = 0; j < sizeof( error ) / sizeof( error[0] ); ++j )
{
if ( error[j].errno_value == i )
{
index = j;
break;
}
}
if ( index >= 0 )
{
printf( " /* %-*s */ ( char * )\"%s (%s)\",\n", ( int )string_len_max, error[index].string + 8, error[index].string + 8, error[index].text );
}
else
{
printf( " /* %-*s */ ( char * )\"%s\",\n", ( int )string_len_max, unknown_error_text, unknown_error_text );
}
}
}
|