Update message queue from libburn. ERROR priority now is called FAILURE.

This commit is contained in:
Vreixo Formoso 2008-01-24 11:39:43 +01:00
parent e70a20cbc3
commit 66c2f9b7b1
4 changed files with 105 additions and 118 deletions

View File

@ -25,7 +25,7 @@
* = 0x40 -> HINT * = 0x40 -> HINT
* = 0x50 -> WARNING * = 0x50 -> WARNING
* = 0x60 -> SORRY * = 0x60 -> SORRY
* = 0x6A -> ERROR * = 0x68 -> FAILURE
* = 0x70 -> FATAL * = 0x70 -> FATAL
* = 0x71 -> ABORT * = 0x71 -> ABORT
* bits 23-20 -> Encoded priority (Use ISO_ERR_PRIO to translate an error code * bits 23-20 -> Encoded priority (Use ISO_ERR_PRIO to translate an error code
@ -51,22 +51,22 @@
*/ */
#define ISO_NONE 0 #define ISO_NONE 0
/** Operation canceled (ERROR,HIGH, -1) */ /** Operation canceled (FAILURE,HIGH, -1) */
#define ISO_CANCELED 0xEA30FFFF #define ISO_CANCELED 0xE830FFFF
/** Unknown or unexpected fatal error (FATAL,HIGH, -2) */ /** Unknown or unexpected fatal error (FATAL,HIGH, -2) */
#define ISO_FATAL_ERROR 0xF030FFFE #define ISO_FATAL_ERROR 0xF030FFFE
/** Unknown or unexpected error (ERROR,HIGH, -3) */ /** Unknown or unexpected error (FAILURE,HIGH, -3) */
#define ISO_ERROR 0xEA30FFFD #define ISO_ERROR 0xE830FFFD
/** Internal programming error. Please report this bug (FATAL,HIGH, -4) */ /** Internal programming error. Please report this bug (FATAL,HIGH, -4) */
#define ISO_ASSERT_FAILURE 0xF030FFFC #define ISO_ASSERT_FAILURE 0xF030FFFC
/** /**
* NULL pointer as value for an arg. that doesn't allow NULL (ERROR,HIGH, -5) * NULL pointer as value for an arg. that doesn't allow NULL (FAILURE,HIGH, -5)
*/ */
#define ISO_NULL_POINTER 0xEA30FFFB #define ISO_NULL_POINTER 0xE830FFFB
/** Memory allocation error (FATAL,HIGH, -6) */ /** Memory allocation error (FATAL,HIGH, -6) */
#define ISO_OUT_OF_MEM 0xF030FFFA #define ISO_OUT_OF_MEM 0xF030FFFA
@ -74,71 +74,73 @@
/** Interrupted by a signal (FATAL,HIGH, -7) */ /** Interrupted by a signal (FATAL,HIGH, -7) */
#define ISO_INTERRUPTED 0xF030FFF9 #define ISO_INTERRUPTED 0xF030FFF9
/** Invalid parameter value (ERROR,HIGH, -8) */ /** Invalid parameter value (FAILURE,HIGH, -8) */
#define ISO_WRONG_ARG_VALUE 0xEA30FFF8 #define ISO_WRONG_ARG_VALUE 0xE830FFF8
/** Can't create a needed thread (FATAL,HIGH, -9) */ /** Can't create a needed thread (FATAL,HIGH, -9) */
#define ISO_THREAD_ERROR 0xF030FFF7 #define ISO_THREAD_ERROR 0xF030FFF7
/** Write error (ERROR,HIGH, -10) */ /** Write error (FAILURE,HIGH, -10) */
#define ISO_WRITE_ERROR 0xEA30FFF6 #define ISO_WRITE_ERROR 0xE830FFF6
/** Buffer read error (ERROR,HIGH, -11) */ /** Buffer read error (FAILURE,HIGH, -11) */
#define ISO_BUF_READ_ERROR 0xEA30FFF5 #define ISO_BUF_READ_ERROR 0xE830FFF5
/** Trying to add to a dir a node already added to a dir (ERROR,HIGH, -64) */ /** Trying to add to a dir a node already added to a dir (FAILURE,HIGH, -64) */
#define ISO_NODE_ALREADY_ADDED 0xEA30FFC0 #define ISO_NODE_ALREADY_ADDED 0xE830FFC0
/** Node with same name already exists (ERROR,HIGH, -65) */ /** Node with same name already exists (FAILURE,HIGH, -65) */
#define ISO_NODE_NAME_NOT_UNIQUE 0xEA30FFBF #define ISO_NODE_NAME_NOT_UNIQUE 0xE830FFBF
/** Trying to remove a node that was not added to dir (ERROR,HIGH, -65) */ /** Trying to remove a node that was not added to dir (FAILURE,HIGH, -65) */
#define ISO_NODE_NOT_ADDED_TO_DIR 0xEA30FFBE #define ISO_NODE_NOT_ADDED_TO_DIR 0xE830FFBE
/** A requested node does not exists (ERROR,HIGH, -66) */ /** A requested node does not exists (FAILURE,HIGH, -66) */
#define ISO_NODE_DOESNT_EXIST 0xEA30FFBD #define ISO_NODE_DOESNT_EXIST 0xE830FFBD
/** Try to set the boot image of an already bootable image (ERROR,HIGH, -67) */
#define ISO_IMAGE_ALREADY_BOOTABLE 0xEA30FFBC
/** Trying to use an invalid file as boot image (ERROR,HIGH, -68) */
#define ISO_BOOT_IMAGE_NOT_VALID 0xEA30FFBB
/** /**
* Error on file operation (ERROR,HIGH, -128) * Try to set the boot image of an already bootable image (FAILURE,HIGH, -67)
*/
#define ISO_IMAGE_ALREADY_BOOTABLE 0xE830FFBC
/** Trying to use an invalid file as boot image (FAILURE,HIGH, -68) */
#define ISO_BOOT_IMAGE_NOT_VALID 0xE830FFBB
/**
* Error on file operation (FAILURE,HIGH, -128)
* (take a look at more specified error codes below) * (take a look at more specified error codes below)
*/ */
#define ISO_FILE_ERROR 0xEA30FF80 #define ISO_FILE_ERROR 0xE830FF80
/** Trying to open an already openned file (ERROR,HIGH, -129) */ /** Trying to open an already openned file (FAILURE,HIGH, -129) */
#define ISO_FILE_ALREADY_OPENNED 0xEA30FF7F #define ISO_FILE_ALREADY_OPENNED 0xE830FF7F
/** Access to file is not allowed (ERROR,HIGH, -130) */ /** Access to file is not allowed (FAILURE,HIGH, -130) */
#define ISO_FILE_ACCESS_DENIED 0xEA30FF7E #define ISO_FILE_ACCESS_DENIED 0xE830FF7E
/** Incorrect path to file (ERROR,HIGH, -131) */ /** Incorrect path to file (FAILURE,HIGH, -131) */
#define ISO_FILE_BAD_PATH 0xEA30FF7D #define ISO_FILE_BAD_PATH 0xE830FF7D
/** The file does not exists in the filesystem (ERROR,HIGH, -132) */ /** The file does not exists in the filesystem (FAILURE,HIGH, -132) */
#define ISO_FILE_DOESNT_EXIST 0xEA30FF7C #define ISO_FILE_DOESNT_EXIST 0xE830FF7C
/** Trying to read or close a file not openned (ERROR,HIGH, -133) */ /** Trying to read or close a file not openned (FAILURE,HIGH, -133) */
#define ISO_FILE_NOT_OPENNED 0xEA30FF7B #define ISO_FILE_NOT_OPENNED 0xE830FF7B
/** Directory used where no dir is expected (ERROR,HIGH, -134) */ /** Directory used where no dir is expected (FAILURE,HIGH, -134) */
#define ISO_FILE_IS_DIR 0xEA30FF7A #define ISO_FILE_IS_DIR 0xE830FF7A
/** Read error (ERROR,HIGH, -135) */ /** Read error (FAILURE,HIGH, -135) */
#define ISO_FILE_READ_ERROR 0xEA30FF79 #define ISO_FILE_READ_ERROR 0xE830FF79
/** Not dir used where a dir is expected (ERROR,HIGH, -136) */ /** Not dir used where a dir is expected (FAILURE,HIGH, -136) */
#define ISO_FILE_IS_NOT_DIR 0xEA30FF78 #define ISO_FILE_IS_NOT_DIR 0xE830FF78
/** Not symlink used where a symlink is expected (ERROR,HIGH, -137) */ /** Not symlink used where a symlink is expected (FAILURE,HIGH, -137) */
#define ISO_FILE_IS_NOT_SYMLINK 0xEA30FF77 #define ISO_FILE_IS_NOT_SYMLINK 0xE830FF77
/** Can't seek to specified location (ERROR,HIGH, -138) */ /** Can't seek to specified location (FAILURE,HIGH, -138) */
#define ISO_FILE_SEEK_ERROR 0xEA30FF76 #define ISO_FILE_SEEK_ERROR 0xE830FF76
/** File not supported in ECMA-119 tree and thus ignored (HINT,MEDIUM, -139) */ /** File not supported in ECMA-119 tree and thus ignored (HINT,MEDIUM, -139) */
#define ISO_FILE_IGNORED 0xC020FF75 #define ISO_FILE_IGNORED 0xC020FF75
@ -161,22 +163,22 @@
*/ */
#define ISO_FILE_IMGPATH_WRONG 0xC020FF73 #define ISO_FILE_IMGPATH_WRONG 0xC020FF73
/** Charset conversion error (ERROR,HIGH, -256) */ /** Charset conversion error (FAILURE,HIGH, -256) */
#define ISO_CHARSET_CONV_ERROR 0xEA30FF00 #define ISO_CHARSET_CONV_ERROR 0xE830FF00
/** /**
* Too much files to mangle, i.e. we cannot guarantee unique file names * Too much files to mangle, i.e. we cannot guarantee unique file names
* (ERROR,HIGH, -257) * (FAILURE,HIGH, -257)
*/ */
#define ISO_MANGLE_TOO_MUCH_FILES 0xEA30FEFF #define ISO_MANGLE_TOO_MUCH_FILES 0xE830FEFF
/* image related errors */ /* image related errors */
/** /**
* Wrong or damaged Primary Volume Descriptor (ERROR,HIGH, -320) * Wrong or damaged Primary Volume Descriptor (FAILURE,HIGH, -320)
* This could mean that the file is not a valid ISO image. * This could mean that the file is not a valid ISO image.
*/ */
#define ISO_WRONG_PVD 0xEA30FEC0 #define ISO_WRONG_PVD 0xE830FEC0
/** Wrong or damaged RR entry (SORRY,HIGH, -321) */ /** Wrong or damaged RR entry (SORRY,HIGH, -321) */
#define ISO_WRONG_RR 0xE030FEBF #define ISO_WRONG_RR 0xE030FEBF
@ -184,11 +186,11 @@
/** Unsupported RR feature (SORRY,HIGH, -322) */ /** Unsupported RR feature (SORRY,HIGH, -322) */
#define ISO_UNSUPPORTED_RR 0xE030FEBE #define ISO_UNSUPPORTED_RR 0xE030FEBE
/** Wrong or damaged ECMA-119 (ERROR,HIGH, -323) */ /** Wrong or damaged ECMA-119 (FAILURE,HIGH, -323) */
#define ISO_WRONG_ECMA119 0xEA30FEBD #define ISO_WRONG_ECMA119 0xE830FEBD
/** Unsupported ECMA-119 feature (ERROR,HIGH, -324) */ /** Unsupported ECMA-119 feature (FAILURE,HIGH, -324) */
#define ISO_UNSUPPORTED_ECMA119 0xEA30FEBC #define ISO_UNSUPPORTED_ECMA119 0xE830FEBC
/** Wrong or damaged El-Torito catalog (SORRY,HIGH, -325) */ /** Wrong or damaged El-Torito catalog (SORRY,HIGH, -325) */
#define ISO_WRONG_EL_TORITO 0xE030FEBB #define ISO_WRONG_EL_TORITO 0xE030FEBB

View File

@ -1,6 +1,6 @@
/* libiso_msgs /* libiso_msgs (generated from libdax_msgs : Xov Xan 24 11:24:13 CET 2008)
Message handling facility of libiso. Message handling facility of libisofs.
Copyright (C) 2006 - 2008 Thomas Schmitt <scdbackup@gmx.net>, Copyright (C) 2006 - 2008 Thomas Schmitt <scdbackup@gmx.net>,
provided under GPL version 2 provided under GPL version 2
*/ */
@ -252,8 +252,8 @@ int libiso_msgs__text_to_sev(char *severity_name, int *severity,
*severity= LIBISO_MSGS_SEV_ABORT; *severity= LIBISO_MSGS_SEV_ABORT;
else if(strncmp(severity_name,"FATAL",5)==0) else if(strncmp(severity_name,"FATAL",5)==0)
*severity= LIBISO_MSGS_SEV_FATAL; *severity= LIBISO_MSGS_SEV_FATAL;
else if(strncmp(severity_name,"ERROR",5)==0) else if(strncmp(severity_name,"FAILURE",7)==0)
*severity= LIBISO_MSGS_SEV_ERROR; *severity= LIBISO_MSGS_SEV_FAILURE;
else if(strncmp(severity_name,"SORRY",5)==0) else if(strncmp(severity_name,"SORRY",5)==0)
*severity= LIBISO_MSGS_SEV_SORRY; *severity= LIBISO_MSGS_SEV_SORRY;
else if(strncmp(severity_name,"WARNING",7)==0) else if(strncmp(severity_name,"WARNING",7)==0)
@ -280,8 +280,7 @@ int libiso_msgs__sev_to_text(int severity, char **severity_name,
int flag) int flag)
{ {
if(flag&1) { if(flag&1) {
*severity_name= *severity_name= "NEVER\nABORT\nFATAL\nFAILURE\nSORRY\nWARNING\nHINT\nNOTE\nUPDATE\nDEBUG\nALL";
"NEVER\nABORT\nFATAL\nSORRY\nWARNING\nHINT\nNOTE\nUPDATE\nDEBUG\nALL";
return(1); return(1);
} }
*severity_name= ""; *severity_name= "";
@ -291,8 +290,8 @@ int libiso_msgs__sev_to_text(int severity, char **severity_name,
*severity_name= "ABORT"; *severity_name= "ABORT";
else if(severity>=LIBISO_MSGS_SEV_FATAL) else if(severity>=LIBISO_MSGS_SEV_FATAL)
*severity_name= "FATAL"; *severity_name= "FATAL";
else if(severity>=LIBISO_MSGS_SEV_ERROR) else if(severity>=LIBISO_MSGS_SEV_FAILURE)
*severity_name= "ERROR"; *severity_name= "FAILURE";
else if(severity>=LIBISO_MSGS_SEV_SORRY) else if(severity>=LIBISO_MSGS_SEV_SORRY)
*severity_name= "SORRY"; *severity_name= "SORRY";
else if(severity>=LIBISO_MSGS_SEV_WARNING) else if(severity>=LIBISO_MSGS_SEV_WARNING)

View File

@ -1,6 +1,6 @@
/* libiso_msgs /* libiso_msgs (generated from libdax_msgs : Xov Xan 24 11:24:13 CET 2008)
Message handling facility of libiso. Message handling facility of libisofs.
Copyright (C) 2006-2008 Thomas Schmitt <scdbackup@gmx.net>, Copyright (C) 2006-2008 Thomas Schmitt <scdbackup@gmx.net>,
provided under GPL version 2 provided under GPL version 2
*/ */
@ -72,7 +72,7 @@ struct libiso_msgs {
/* Architectural aspects */ /* Architectural aspects */
/* /*
libiso_msgs is designed to serve in libraries which want to offer their libdax_msgs is designed to serve in libraries which want to offer their
applications a way to control the output of library messages. It shall be applications a way to control the output of library messages. It shall be
incorporated by an owner, i.e. a software entity which encloses the code incorporated by an owner, i.e. a software entity which encloses the code
of the .c file. of the .c file.
@ -140,20 +140,47 @@ struct libiso_msgs_item;
*/ */
#define LIBISO_MSGS_SEV_WARNING 0x50000000 #define LIBISO_MSGS_SEV_WARNING 0x50000000
/** Non-fatal error messages indicating that parts of the action failed
but processing will/should go on /** Non-fatal error messages indicating that important parts of an action
failed but processing may go on if one accepts deviations from the
desired result.
E.g.: One of several libisofs input files cannot be found.
A speed setting cannot be made.
After SORRY a function should try to go on if that makes any sense
and if no threshold prescribes abort on SORRY. The function should
nevertheless indicate some failure in its return value.
It should - but it does not have to.
*/ */
#define LIBISO_MSGS_SEV_SORRY 0x60000000 #define LIBISO_MSGS_SEV_SORRY 0x60000000
/** error messages indicating that the operation has failed, but you can
still continue using the library and even retry the operation /** Non-fatal error indicating that a complete action failed and that
only a thorough new setup of preconditions will give hope for success.
E.g.: No media is inserted in the output drive.
No write mode can be found for inserted media.
All libisofs input files are inaccessible.
After FAILURE a function should end very soon with a return value
indicating failure.
*/ */
#define LIBISO_MSGS_SEV_ERROR 0x6A000000 #define LIBISO_MSGS_SEV_FAILURE 0x68000000
/** An error message which puts the whole operation of the program in question /** An error message which puts the whole operation of the program in question
E.g.: Not enough memory for essential temporary objects.
Irregular errors from resources.
Programming errors (soft assert).
After FATAL a function should end very soon with a return value
indicating severe failure.
*/ */
#define LIBISO_MSGS_SEV_FATAL 0x70000000 #define LIBISO_MSGS_SEV_FATAL 0x70000000
/** A message from an abort handler which will finally finish libburn /** A message from an abort handler which will finally finish libburn
*/ */
#define LIBISO_MSGS_SEV_ABORT 0x71000000 #define LIBISO_MSGS_SEV_ABORT 0x71000000
@ -472,47 +499,6 @@ Range "scdbackup" : 0x00020000 to 0x0002ffff
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
Range "vreixo" : 0x00030000 to 0x0003ffff Range "vreixo" : 0x00030000 to 0x0003ffff
Image creation:
0x00030100 (NOTE,MEDIUM) = File cannot be added to image (ignored)
0x00030101 (NOTE,MEDIUM) = File cannot be writing to image (ignored)
0x00030102 (FATAL,HIGH) = Write error
0x00030103 (FATAL,HIGH) = Read error
0x00030110 (FATAL,HIGH) = Cannot create writer thread
0x00030500 (SORRY,HIGH) = Charset conversion error
General:
0x00031001 (SORRY,HIGH) = Cannot read file (ignored)
0x00031002 (FATAL,HIGH) = Cannot read file (operation canceled)
0x00031003 (FATAL,HIGH) = File doesnt exist
0x00031004 (FATAL,HIGH) = Read access denied
Image reading:
0x00031000 (FATAL,HIGH) = Unsupported ISO-9660 image
0x00031001 (HINT,MEDIUM) = Unsupported Vol Desc that will be ignored
0x00031002 (FATAL,HIGH) = Damaged ISO-9660 image
0x00031003 (SORRY,HIGH) = Cannot read previous image file
Rock-Ridge:
0x00030101 (HINT,MEDIUM) = Unsupported SUSP entry that will be ignored
0x00030102 (SORRY,HIGH) = Wrong/damaged SUSP entry
0x00030103 (WARNING,MEDIUM)= Multiple SUSP ER entries where found
0x00030111 (SORRY,HIGH) = Unsupported RR feature
0x00030112 (SORRY,HIGH) = Error in a Rock Ridge entry
0x00030113 (WARNING,MEDIUM)= Wrong/Damaged Rock Ridge
El-Torito:
0x00030201 (HINT,MEDIUM) = Unsupported Boot Vol Desc that will be ignored
0x00030202 (SORRY,HIGH) = Wrong El-Torito catalog
0x00030203 (HINT,MEDIUM) = Unsupported El-Torito feature
0x00030204 (SORRY,HIGH) = Invalid file to be an El-Torito image
0x00030205 (WARNING,MEDIUM)= Cannot properly patch isolinux image
0x00030206 (WARNING,MEDIUM)= Copying El-Torito from a previous image without
enought info about it
Joliet:
0x00030301 (NOTE,MEDIUM) = Unsupported file type for Joliet tree
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
Range "application" : 0x00040000 to 0x0004ffff Range "application" : 0x00040000 to 0x0004ffff

View File

@ -19,7 +19,7 @@ int iso_message_id = LIBISO_MSGS_ORIGIN_IMAGE_BASE;
/** /**
* Threshold for aborting. * Threshold for aborting.
*/ */
int abort_threshold = LIBISO_MSGS_SEV_ERROR; int abort_threshold = LIBISO_MSGS_SEV_FAILURE;
#define MAX_MSG_LEN 4096 #define MAX_MSG_LEN 4096
@ -48,7 +48,7 @@ int iso_set_abort_severity(char *severity)
ret = libiso_msgs__text_to_sev(severity, &sevno, 0); ret = libiso_msgs__text_to_sev(severity, &sevno, 0);
if (ret <= 0) if (ret <= 0)
return ISO_WRONG_ARG_VALUE; return ISO_WRONG_ARG_VALUE;
if (sevno > LIBISO_MSGS_SEV_ERROR || sevno < LIBISO_MSGS_SEV_NOTE) if (sevno > LIBISO_MSGS_SEV_FAILURE || sevno < LIBISO_MSGS_SEV_NOTE)
return ISO_WRONG_ARG_VALUE; return ISO_WRONG_ARG_VALUE;
ret = abort_threshold; ret = abort_threshold;
abort_threshold = sevno; abort_threshold = sevno;