[trunk] Rework the code to simplify cleanup code
This commit is contained in:
parent
440ef4873b
commit
a0aa8dd851
|
@ -62,7 +62,7 @@ static void compareRAWimages_help_display(void) {
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
static int parse_cmdline_cmp(int argc, char **argv, test_cmp_parameters* param)
|
static int parse_cmdline_cmp(int argc, char **argv, test_cmp_parameters* param)
|
||||||
{
|
{
|
||||||
int sizemembasefile, sizememtestfile;
|
size_t sizemembasefile, sizememtestfile;
|
||||||
int index;
|
int index;
|
||||||
const char optlist[] = "b:t:";
|
const char optlist[] = "b:t:";
|
||||||
int c;
|
int c;
|
||||||
|
@ -76,19 +76,17 @@ static int parse_cmdline_cmp(int argc, char **argv, test_cmp_parameters* param)
|
||||||
switch (c)
|
switch (c)
|
||||||
{
|
{
|
||||||
case 'b':
|
case 'b':
|
||||||
sizemembasefile = (int)strlen(opj_optarg)+1;
|
sizemembasefile = strlen(opj_optarg)+1;
|
||||||
param->base_filename = (char*) malloc((size_t)sizemembasefile);
|
free(param->base_filename); // handle dup option
|
||||||
param->base_filename[0] = '\0';
|
param->base_filename = (char*) malloc(sizemembasefile);
|
||||||
strncpy(param->base_filename, opj_optarg, strlen(opj_optarg));
|
strcpy(param->base_filename, opj_optarg);
|
||||||
param->base_filename[strlen(opj_optarg)] = '\0';
|
|
||||||
/*printf("param->base_filename = %s [%d / %d]\n", param->base_filename, strlen(param->base_filename), sizemembasefile );*/
|
/*printf("param->base_filename = %s [%d / %d]\n", param->base_filename, strlen(param->base_filename), sizemembasefile );*/
|
||||||
break;
|
break;
|
||||||
case 't':
|
case 't':
|
||||||
sizememtestfile = (int) strlen(opj_optarg) + 1;
|
sizememtestfile = strlen(opj_optarg) + 1;
|
||||||
param->test_filename = (char*) malloc((size_t)sizememtestfile);
|
free(param->test_filename); // handle dup option
|
||||||
param->test_filename[0] = '\0';
|
param->test_filename = (char*) malloc(sizememtestfile);
|
||||||
strncpy(param->test_filename, opj_optarg, strlen(opj_optarg));
|
strcpy(param->test_filename, opj_optarg);
|
||||||
param->test_filename[strlen(opj_optarg)] = '\0';
|
|
||||||
/*printf("param->test_filename = %s [%d / %d]\n", param->test_filename, strlen(param->test_filename), sizememtestfile);*/
|
/*printf("param->test_filename = %s [%d / %d]\n", param->test_filename, strlen(param->test_filename), sizememtestfile);*/
|
||||||
break;
|
break;
|
||||||
case '?':
|
case '?':
|
||||||
|
@ -106,10 +104,10 @@ static int parse_cmdline_cmp(int argc, char **argv, test_cmp_parameters* param)
|
||||||
if (opj_optind != argc) {
|
if (opj_optind != argc) {
|
||||||
for (index = opj_optind; index < argc; index++)
|
for (index = opj_optind; index < argc; index++)
|
||||||
fprintf(stderr,"Non-option argument %s\n", argv[index]);
|
fprintf(stderr,"Non-option argument %s\n", argv[index]);
|
||||||
return EXIT_FAILURE;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
return EXIT_SUCCESS;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
|
@ -123,56 +121,22 @@ int main(int argc, char **argv)
|
||||||
unsigned char equal = 1;
|
unsigned char equal = 1;
|
||||||
|
|
||||||
/* Get parameters from command line*/
|
/* Get parameters from command line*/
|
||||||
if (parse_cmdline_cmp(argc, argv, &inParam) == EXIT_FAILURE)
|
if (parse_cmdline_cmp(argc, argv, &inParam))
|
||||||
{
|
{
|
||||||
compareRAWimages_help_display();
|
compareRAWimages_help_display();
|
||||||
|
goto cleanup;
|
||||||
/* Free Memory */
|
|
||||||
if (inParam.base_filename){
|
|
||||||
free(inParam.base_filename);
|
|
||||||
inParam.base_filename = NULL;
|
|
||||||
}
|
|
||||||
if (inParam.test_filename){
|
|
||||||
free(inParam.test_filename);
|
|
||||||
inParam.test_filename = NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
return EXIT_FAILURE;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
file_test = fopen(inParam.test_filename, "rb");
|
file_test = fopen(inParam.test_filename, "rb");
|
||||||
if (!file_test) {
|
if (!file_test) {
|
||||||
fprintf(stderr, "Failed to open %s for reading !!\n", inParam.test_filename);
|
fprintf(stderr, "Failed to open %s for reading !!\n", inParam.test_filename);
|
||||||
|
goto cleanup;
|
||||||
/* Free Memory */
|
|
||||||
if (inParam.base_filename){
|
|
||||||
free(inParam.base_filename);
|
|
||||||
inParam.base_filename = NULL;
|
|
||||||
}
|
|
||||||
if (inParam.test_filename){
|
|
||||||
free(inParam.test_filename);
|
|
||||||
inParam.test_filename = NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
return EXIT_FAILURE;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
file_base = fopen(inParam.base_filename, "rb");
|
file_base = fopen(inParam.base_filename, "rb");
|
||||||
if (!file_base) {
|
if (!file_base) {
|
||||||
fprintf(stderr, "Failed to open %s for reading !!\n", inParam.base_filename);
|
fprintf(stderr, "Failed to open %s for reading !!\n", inParam.base_filename);
|
||||||
|
goto cleanup;
|
||||||
/* Free Memory */
|
|
||||||
if (inParam.base_filename){
|
|
||||||
free(inParam.base_filename);
|
|
||||||
inParam.base_filename = NULL;
|
|
||||||
}
|
|
||||||
if (inParam.test_filename){
|
|
||||||
free(inParam.test_filename);
|
|
||||||
inParam.test_filename = NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
fclose(file_test);
|
|
||||||
return EXIT_FAILURE;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Read simultaneously the two files*/
|
/* Read simultaneously the two files*/
|
||||||
|
@ -213,24 +177,14 @@ int main(int argc, char **argv)
|
||||||
pos++;
|
pos++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(equal) fprintf(stdout,"---- TEST SUCCEED: Files are equal ----\n");
|
||||||
|
cleanup:
|
||||||
|
if(file_test) fclose(file_test);
|
||||||
|
if(file_base) fclose(file_base);
|
||||||
|
|
||||||
/* Free Memory */
|
/* Free Memory */
|
||||||
if (inParam.base_filename){
|
|
||||||
free(inParam.base_filename);
|
free(inParam.base_filename);
|
||||||
inParam.base_filename = NULL;
|
|
||||||
}
|
|
||||||
if (inParam.test_filename){
|
|
||||||
free(inParam.test_filename);
|
free(inParam.test_filename);
|
||||||
inParam.test_filename = NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
fclose(file_test);
|
return equal ? EXIT_SUCCESS : EXIT_FAILURE;
|
||||||
fclose(file_base);
|
|
||||||
|
|
||||||
if (equal)
|
|
||||||
{
|
|
||||||
fprintf(stdout,"---- TEST SUCCEED: Files are equal ----\n");
|
|
||||||
return EXIT_SUCCESS;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
return EXIT_FAILURE;
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue