Allowed lower case severity names with -abort_on, -return_with, -report_about
This commit is contained in:
parent
b781379df2
commit
acf2559209
@ -36,18 +36,24 @@
|
|||||||
|
|
||||||
|
|
||||||
/* Option -abort_on */
|
/* Option -abort_on */
|
||||||
int Xorriso_option_abort_on(struct XorrisO *xorriso, char *severity, int flag)
|
int Xorriso_option_abort_on(struct XorrisO *xorriso, char *in_severity,
|
||||||
|
int flag)
|
||||||
{
|
{
|
||||||
int ret, sev;
|
int ret, sev;
|
||||||
|
char severity[20], *official;
|
||||||
|
|
||||||
|
Xorriso__to_upper(in_severity, severity, (int) sizeof(severity), 0);
|
||||||
ret= Xorriso__text_to_sev(severity, &sev, 0);
|
ret= Xorriso__text_to_sev(severity, &sev, 0);
|
||||||
if(ret<=0) {
|
if(ret<=0) {
|
||||||
sprintf(xorriso->info_text, "-abort_on: Not a known severity name : ");
|
sprintf(xorriso->info_text, "-abort_on: Not a known severity name : ");
|
||||||
Text_shellsafe(severity, xorriso->info_text, 1);
|
Text_shellsafe(in_severity, xorriso->info_text, 1);
|
||||||
Xorriso_msgs_submit(xorriso, 0, xorriso->info_text, 0, "FAILURE", 0);
|
Xorriso_msgs_submit(xorriso, 0, xorriso->info_text, 0, "FAILURE", 0);
|
||||||
return(ret);
|
return(ret);
|
||||||
}
|
}
|
||||||
if(Sfile_str(xorriso->abort_on_text,severity,0)<=0)
|
ret= Xorriso__sev_to_text(sev, &official, 0);
|
||||||
|
if(ret <= 0)
|
||||||
|
official= severity;
|
||||||
|
if(Sfile_str(xorriso->abort_on_text, official, 0) <= 0)
|
||||||
return(-1);
|
return(-1);
|
||||||
xorriso->abort_on_severity= sev;
|
xorriso->abort_on_severity= sev;
|
||||||
xorriso->abort_on_is_default= 0;
|
xorriso->abort_on_is_default= 0;
|
||||||
|
@ -452,19 +452,24 @@ int Xorriso_option_unregister_filter(struct XorrisO *xorriso, char *name,
|
|||||||
|
|
||||||
|
|
||||||
/* Option -report_about */
|
/* Option -report_about */
|
||||||
int Xorriso_option_report_about(struct XorrisO *xorriso, char *severity,
|
int Xorriso_option_report_about(struct XorrisO *xorriso, char *in_severity,
|
||||||
int flag)
|
int flag)
|
||||||
{
|
{
|
||||||
int ret, sev;
|
int ret, sev;
|
||||||
|
char severity[20], *official;
|
||||||
|
|
||||||
|
Xorriso__to_upper(in_severity, severity, (int) sizeof(severity), 0);
|
||||||
ret= Xorriso__text_to_sev(severity, &sev, 0);
|
ret= Xorriso__text_to_sev(severity, &sev, 0);
|
||||||
if(ret<=0) {
|
if(ret<=0) {
|
||||||
sprintf(xorriso->info_text, "-report_about: Not a known severity name : ");
|
sprintf(xorriso->info_text, "-report_about: Not a known severity name : ");
|
||||||
Text_shellsafe(severity, xorriso->info_text, 1);
|
Text_shellsafe(in_severity, xorriso->info_text, 1);
|
||||||
Xorriso_msgs_submit(xorriso, 0, xorriso->info_text, 0, "WARNING", 0);
|
Xorriso_msgs_submit(xorriso, 0, xorriso->info_text, 0, "WARNING", 0);
|
||||||
return(ret);
|
return(ret);
|
||||||
}
|
}
|
||||||
if(Sfile_str(xorriso->report_about_text,severity,0)<=0)
|
ret= Xorriso__sev_to_text(sev, &official, 0);
|
||||||
|
if(ret <= 0)
|
||||||
|
official= severity;
|
||||||
|
if(Sfile_str(xorriso->report_about_text, official, 0) <= 0)
|
||||||
return(-1);
|
return(-1);
|
||||||
xorriso->report_about_severity= sev;
|
xorriso->report_about_severity= sev;
|
||||||
return(1);
|
return(1);
|
||||||
@ -472,26 +477,31 @@ int Xorriso_option_report_about(struct XorrisO *xorriso, char *severity,
|
|||||||
|
|
||||||
|
|
||||||
/* Option -return_with */
|
/* Option -return_with */
|
||||||
int Xorriso_option_return_with(struct XorrisO *xorriso, char *severity,
|
int Xorriso_option_return_with(struct XorrisO *xorriso, char *in_severity,
|
||||||
int exit_value, int flag)
|
int exit_value, int flag)
|
||||||
{
|
{
|
||||||
int ret, sev;
|
int ret, sev;
|
||||||
|
char severity[20], *official;
|
||||||
|
|
||||||
|
Xorriso__to_upper(in_severity, severity, (int) sizeof(severity), 0);
|
||||||
ret= Xorriso__text_to_sev(severity, &sev, 0);
|
ret= Xorriso__text_to_sev(severity, &sev, 0);
|
||||||
if(ret<=0) {
|
if(ret<=0) {
|
||||||
sprintf(xorriso->info_text,
|
sprintf(xorriso->info_text,
|
||||||
"-return_with: Not a known severity name : ");
|
"-return_with: Not a known severity name : ");
|
||||||
Text_shellsafe(severity, xorriso->info_text, 1);
|
Text_shellsafe(in_severity, xorriso->info_text, 1);
|
||||||
Xorriso_msgs_submit(xorriso, 0, xorriso->info_text, 0, "FAILURE", 0);
|
Xorriso_msgs_submit(xorriso, 0, xorriso->info_text, 0, "FAILURE", 0);
|
||||||
return(ret);
|
return(ret);
|
||||||
}
|
}
|
||||||
|
ret= Xorriso__sev_to_text(sev, &official, 0);
|
||||||
|
if(ret <= 0)
|
||||||
|
official= severity;
|
||||||
if(exit_value && (exit_value < 32 || exit_value > 63)) {
|
if(exit_value && (exit_value < 32 || exit_value > 63)) {
|
||||||
sprintf(xorriso->info_text,
|
sprintf(xorriso->info_text,
|
||||||
"-return_with: Not an allowed exit_value. Use 0, or 32 to 63.");
|
"-return_with: Not an allowed exit_value. Use 0, or 32 to 63.");
|
||||||
Xorriso_msgs_submit(xorriso, 0, xorriso->info_text, 0, "FAILURE", 0);
|
Xorriso_msgs_submit(xorriso, 0, xorriso->info_text, 0, "FAILURE", 0);
|
||||||
return(0);
|
return(0);
|
||||||
}
|
}
|
||||||
if(Sfile_str(xorriso->return_with_text,severity,0)<=0)
|
if(Sfile_str(xorriso->return_with_text, official, 0) <= 0)
|
||||||
return(-1);
|
return(-1);
|
||||||
xorriso->return_with_severity= sev;
|
xorriso->return_with_severity= sev;
|
||||||
xorriso->return_with_value= exit_value;
|
xorriso->return_with_value= exit_value;
|
||||||
|
@ -1 +1 @@
|
|||||||
#define Xorriso_timestamP "2011.07.31.091836"
|
#define Xorriso_timestamP "2011.07.31.094422"
|
||||||
|
@ -55,6 +55,8 @@ int Xorriso_graft_in(struct XorrisO *xorriso, void *boss_iter,
|
|||||||
|
|
||||||
int Xorriso__text_to_sev(char *severity_name, int *severity_number,int flag);
|
int Xorriso__text_to_sev(char *severity_name, int *severity_number,int flag);
|
||||||
|
|
||||||
|
int Xorriso__sev_to_text(int severity, char **severity_name, int flag);
|
||||||
|
|
||||||
/* @param flag bit0=report about output drive
|
/* @param flag bit0=report about output drive
|
||||||
bit1=short report form
|
bit1=short report form
|
||||||
bit2=do not try to read ISO heads
|
bit2=do not try to read ISO heads
|
||||||
|
Loading…
Reference in New Issue
Block a user