[trunk]formatted some messages. Removed -version option to disambiguate
[openjpeg.git] / src / bin / jp2 / opj_dump.c
1 /*
2  * The copyright in this software is being made available under the 2-clauses 
3  * BSD License, included below. This software may be subject to other third 
4  * party and contributor rights, including patent rights, and no such rights
5  * are granted under this license.
6  *
7  * Copyright (c) 2010, Mathieu Malaterre, GDCM
8  * Copyright (c) 2011-2012, Centre National d'Etudes Spatiales (CNES), France 
9  * Copyright (c) 2012, CS Systemes d'Information, France
10  * All rights reserved.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions and the following disclaimer.
17  * 2. Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in the
19  *    documentation and/or other materials provided with the distribution.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
22  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
25  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31  * POSSIBILITY OF SUCH DAMAGE.
32  */
33 #include "opj_config.h"
34
35 #include <stdio.h>
36 #include <string.h>
37 #include <stdlib.h>
38 #include <math.h>
39
40 #ifdef _WIN32
41 #include "windirent.h"
42 #else
43 #include <dirent.h>
44 #endif /* _WIN32 */
45
46 #ifdef _WIN32
47 #include <windows.h>
48 #else
49 #include <strings.h>
50 #define _stricmp strcasecmp
51 #define _strnicmp strncasecmp
52 #endif /* _WIN32 */
53
54 #include "openjpeg.h"
55 #include "opj_getopt.h"
56 #include "convert.h"
57 #include "index.h"
58
59 #include "format_defs.h"
60
61 typedef struct dircnt{
62         /** Buffer for holding images read from Directory*/
63         char *filename_buf;
64         /** Pointer to the buffer*/
65         char **filename;
66 }dircnt_t;
67
68
69 typedef struct img_folder{
70         /** The directory path of the folder containing input images*/
71         char *imgdirpath;
72         /** Output format*/
73         const char *out_format;
74         /** Enable option*/
75         char set_imgdir;
76         /** Enable Cod Format for output*/
77         char set_out_format;
78
79   int flag;
80 }img_fol_t;
81
82 /* -------------------------------------------------------------------------- */
83 /* Declarations                                                               */
84 static int get_num_images(char *imgdirpath);
85 static int load_images(dircnt_t *dirptr, char *imgdirpath);
86 static int get_file_format(const char *filename);
87 static char get_next_file(int imageno,dircnt_t *dirptr,img_fol_t *img_fol, opj_dparameters_t *parameters);
88 static int infile_format(const char *fname);
89
90 static int parse_cmdline_decoder(int argc, char **argv, opj_dparameters_t *parameters,img_fol_t *img_fol);
91
92 /* -------------------------------------------------------------------------- */
93 static void decode_help_display(void) {
94     fprintf(stdout,"This is the opj_dump utility from the OpenJPEG project.\n"
95             "It has been compiled against openjp2 library v%s.\n\n",opj_version());
96     fprintf(stdout,"HELP\n----\n\n");
97         fprintf(stdout,"- the -h option displays this help information on screen\n\n");
98
99 /* UniPG>> */
100         fprintf(stdout,"List of parameters for the JPEG 2000 "
101 #ifdef USE_JPWL
102                 "+ JPWL "
103 #endif /* USE_JPWL */
104         "dump utility:\n");
105 /* <<UniPG */
106         fprintf(stdout,"\n");
107         fprintf(stdout,"\n");
108         fprintf(stdout,"  -ImgDir \n");
109         fprintf(stdout,"        Image file Directory path \n");
110         fprintf(stdout,"  -i <compressed file>\n");
111         fprintf(stdout,"    REQUIRED only if an Input image directory not specified\n");
112         fprintf(stdout,"    Currently accepts J2K-files, JP2-files and JPT-files. The file type\n");
113         fprintf(stdout,"    is identified based on its suffix.\n");
114         fprintf(stdout,"  -o <output file>\n");
115         fprintf(stdout,"    OPTIONAL\n");
116         fprintf(stdout,"    Output file where file info will be dump.\n");
117         fprintf(stdout,"    By default it will be in the stdout.\n");
118     fprintf(stdout,"  -quiet "); /* FIXME WIP_MSD */
119         fprintf(stdout,"    OPTIONAL\n");
120     fprintf(stdout,"    Suppress informative messages\n");
121     fprintf(stdout,"    By default verbose mode is on.\n");
122         fprintf(stdout,"\n");
123 }
124
125 /* -------------------------------------------------------------------------- */
126 static int get_num_images(char *imgdirpath){
127         DIR *dir;
128         struct dirent* content; 
129         int num_images = 0;
130
131         /*Reading the input images from given input directory*/
132
133         dir= opendir(imgdirpath);
134         if(!dir){
135                 fprintf(stderr,"Could not open Folder %s\n",imgdirpath);
136                 return 0;
137         }
138         
139         while((content=readdir(dir))!=NULL){
140                 if(strcmp(".",content->d_name)==0 || strcmp("..",content->d_name)==0 )
141                         continue;
142                 num_images++;
143         }
144         return num_images;
145 }
146
147 /* -------------------------------------------------------------------------- */
148 static int load_images(dircnt_t *dirptr, char *imgdirpath){
149         DIR *dir;
150         struct dirent* content; 
151         int i = 0;
152
153         /*Reading the input images from given input directory*/
154
155         dir= opendir(imgdirpath);
156         if(!dir){
157                 fprintf(stderr,"Could not open Folder %s\n",imgdirpath);
158                 return 1;
159         }else   {
160                 fprintf(stderr,"Folder opened successfully\n");
161         }
162         
163         while((content=readdir(dir))!=NULL){
164                 if(strcmp(".",content->d_name)==0 || strcmp("..",content->d_name)==0 )
165                         continue;
166
167                 strcpy(dirptr->filename[i],content->d_name);
168                 i++;
169         }
170         return 0;       
171 }
172
173 /* -------------------------------------------------------------------------- */
174 static int get_file_format(const char *filename) {
175         unsigned int i;
176         static const char *extension[] = {"pgx", "pnm", "pgm", "ppm", "bmp","tif", "raw", "tga", "png", "j2k", "jp2", "jpt", "j2c", "jpc"  };
177         static const int format[] = { PGX_DFMT, PXM_DFMT, PXM_DFMT, PXM_DFMT, BMP_DFMT, TIF_DFMT, RAW_DFMT, TGA_DFMT, PNG_DFMT, J2K_CFMT, JP2_CFMT, JPT_CFMT, J2K_CFMT, J2K_CFMT };
178         char * ext = strrchr(filename, '.');
179         if (ext == NULL)
180                 return -1;
181         ext++;
182         if(ext) {
183                 for(i = 0; i < sizeof(format)/sizeof(*format); i++) {
184                         if(_strnicmp(ext, extension[i], 3) == 0) {
185                                 return format[i];
186                         }
187                 }
188         }
189
190         return -1;
191 }
192
193 /* -------------------------------------------------------------------------- */
194 static char get_next_file(int imageno,dircnt_t *dirptr,img_fol_t *img_fol, opj_dparameters_t *parameters){
195         char image_filename[OPJ_PATH_LEN], infilename[OPJ_PATH_LEN],outfilename[OPJ_PATH_LEN],temp_ofname[OPJ_PATH_LEN];
196         char *temp_p, temp1[OPJ_PATH_LEN]="";
197
198         strcpy(image_filename,dirptr->filename[imageno]);
199         fprintf(stderr,"File Number %d \"%s\"\n",imageno,image_filename);
200         parameters->decod_format = get_file_format(image_filename);
201         if (parameters->decod_format == -1)
202                 return 1;
203         sprintf(infilename,"%s/%s",img_fol->imgdirpath,image_filename);
204         strncpy(parameters->infile, infilename, sizeof(infilename));
205
206         /*Set output file*/
207         strcpy(temp_ofname,strtok(image_filename,"."));
208         while((temp_p = strtok(NULL,".")) != NULL){
209                 strcat(temp_ofname,temp1);
210                 sprintf(temp1,".%s",temp_p);
211         }
212         if(img_fol->set_out_format==1){
213                 sprintf(outfilename,"%s/%s.%s",img_fol->imgdirpath,temp_ofname,img_fol->out_format);
214                 strncpy(parameters->outfile, outfilename, sizeof(outfilename));
215         }
216         return 0;
217 }
218
219 /* -------------------------------------------------------------------------- */
220 #define JP2_RFC3745_MAGIC "\x00\x00\x00\x0c\x6a\x50\x20\x20\x0d\x0a\x87\x0a"
221 #define JP2_MAGIC "\x0d\x0a\x87\x0a"
222 /* position 45: "\xff\x52" */
223 #define J2K_CODESTREAM_MAGIC "\xff\x4f\xff\x51"
224
225 static int infile_format(const char *fname)
226 {
227         FILE *reader;
228         const char *s, *magic_s;
229         int ext_format, magic_format;
230         unsigned char buf[12];
231         size_t l_nb_read; 
232
233         reader = fopen(fname, "rb");
234
235         if (reader == NULL)
236                 return -1;
237
238         memset(buf, 0, 12);
239         l_nb_read = fread(buf, 1, 12, reader);
240         fclose(reader);
241         if (l_nb_read != 12)
242                 return -1;
243
244
245
246         ext_format = get_file_format(fname);
247
248         if (ext_format == JPT_CFMT)
249                 return JPT_CFMT;
250
251         if (memcmp(buf, JP2_RFC3745_MAGIC, 12) == 0 || memcmp(buf, JP2_MAGIC, 4) == 0) {
252                 magic_format = JP2_CFMT;
253                 magic_s = ".jp2";
254         }
255         else if (memcmp(buf, J2K_CODESTREAM_MAGIC, 4) == 0) {
256                 magic_format = J2K_CFMT;
257                 magic_s = ".j2k or .jpc or .j2c";
258         }
259         else
260                 return -1;
261
262         if (magic_format == ext_format)
263                 return ext_format;
264
265         s = fname + strlen(fname) - 4;
266
267         fputs("\n===========================================\n", stderr);
268         fprintf(stderr, "The extension of this file is incorrect.\n"
269                                         "FOUND %s. SHOULD BE %s\n", s, magic_s);
270         fputs("===========================================\n", stderr);
271
272         return magic_format;
273 }
274 /* -------------------------------------------------------------------------- */
275 /**
276  * Parse the command line
277  */
278 /* -------------------------------------------------------------------------- */
279 static int parse_cmdline_decoder(int argc, char **argv, opj_dparameters_t *parameters,img_fol_t *img_fol) {
280         int totlen, c;
281         opj_option_t long_option[]={
282         {"ImgDir",REQ_ARG, NULL ,'y'}
283         };
284     const char optlist[] = "i:o:f:hv";
285
286         totlen=sizeof(long_option);
287         img_fol->set_out_format = 0;
288         do {
289                 c = opj_getopt_long(argc, argv,optlist,long_option,totlen);
290                 if (c == -1)
291                         break;
292                 switch (c) {
293                         case 'i':                       /* input file */
294                         {
295                                 char *infile = opj_optarg;
296                                 parameters->decod_format = infile_format(infile);
297                                 switch(parameters->decod_format) {
298                                         case J2K_CFMT:
299                                                 break;
300                                         case JP2_CFMT:
301                                                 break;
302                                         case JPT_CFMT:
303                     break;
304                 default:
305                     fprintf(stderr,
306                             "[ERROR] Unknown input file format: %s \n"
307                             "        Known file formats are *.j2k, *.jp2, *.jpc or *.jpt\n",
308                             infile);
309                     return 1;
310                                 }
311                                 strncpy(parameters->infile, infile, sizeof(parameters->infile)-1);
312                         }
313                         break;
314
315                                 /* ------------------------------------------------------ */
316
317                         case 'o':     /* output file */
318                         {
319                           char *outfile = opj_optarg;
320                           strncpy(parameters->outfile, outfile, sizeof(parameters->outfile)-1);
321                         }
322                         break;
323                                 
324                                 /* ----------------------------------------------------- */
325       case 'f':                         /* flag */
326         img_fol->flag = atoi(opj_optarg);
327         break;
328                                 /* ----------------------------------------------------- */
329
330                         case 'h':                       /* display an help description */
331                                 decode_help_display();
332                                 return 1;                               
333
334                                 /* ------------------------------------------------------ */
335
336                         case 'y':                       /* Image Directory path */
337                         {
338                                 img_fol->imgdirpath = (char*)malloc(strlen(opj_optarg) + 1);
339                                 strcpy(img_fol->imgdirpath,opj_optarg);
340                                 img_fol->set_imgdir=1;
341                         }
342                         break;
343
344                         /* ----------------------------------------------------- */
345
346             case 'v':                   /* Verbose mode */
347                         {
348                 parameters->m_verbose = 1;
349                         }
350                         break;
351                         
352                                 /* ----------------------------------------------------- */
353         default:
354             fprintf(stderr, "[WARNING] An invalid option has been ignored.\n");
355             break;
356         }
357         }while(c != -1);
358
359         /* check for possible errors */
360         if(img_fol->set_imgdir==1){
361                 if(!(parameters->infile[0]==0)){
362             fprintf(stderr, "[ERROR] options -ImgDir and -i cannot be used together.\n");
363                         return 1;
364                 }
365                 if(img_fol->set_out_format == 0){
366             fprintf(stderr, "[ERROR] When -ImgDir is used, -OutFor <FORMAT> must be used.\n");
367             fprintf(stderr, "Only one format allowed.\n"
368                             "Valid format are PGM, PPM, PNM, PGX, BMP, TIF, RAW and TGA.\n");
369                         return 1;
370                 }
371                 if(!(parameters->outfile[0] == 0)){
372             fprintf(stderr, "[ERROR] options -ImgDir and -o cannot be used together\n");
373                         return 1;
374                 }
375         }else{
376                 if(parameters->infile[0] == 0) {
377             fprintf(stderr, "[ERROR] Required parameter is missing\n");
378                         fprintf(stderr, "Example: %s -i image.j2k\n",argv[0]);
379             fprintf(stderr, "   Help: %s -h\n",argv[0]);
380                         return 1;
381                 }
382         }
383
384         return 0;
385 }
386
387 /* -------------------------------------------------------------------------- */
388
389 /**
390 sample error debug callback expecting no client object
391 */
392 static void error_callback(const char *msg, void *client_data) {
393         (void)client_data;
394         fprintf(stdout, "[ERROR] %s", msg);
395 }
396 /**
397 sample warning debug callback expecting no client object
398 */
399 static void warning_callback(const char *msg, void *client_data) {
400         (void)client_data;
401         fprintf(stdout, "[WARNING] %s", msg);
402 }
403 /**
404 sample debug callback expecting no client object
405 */
406 static void info_callback(const char *msg, void *client_data) {
407         (void)client_data;
408         fprintf(stdout, "[INFO] %s", msg);
409 }
410
411 /* -------------------------------------------------------------------------- */
412 /**
413  * OPJ_DUMP MAIN
414  */
415 /* -------------------------------------------------------------------------- */
416 int main(int argc, char *argv[])
417 {
418         FILE *fout = NULL;
419
420         opj_dparameters_t parameters;                   /* Decompression parameters */
421         opj_image_t* image = NULL;                                      /* Image structure */
422         opj_codec_t* l_codec = NULL;                            /* Handle to a decompressor */
423         opj_stream_t *l_stream = NULL;                          /* Stream */
424         opj_codestream_info_v2_t* cstr_info = NULL;
425         opj_codestream_index_t* cstr_index = NULL;
426
427         OPJ_INT32 num_images, imageno;
428         img_fol_t img_fol;
429         dircnt_t *dirptr = NULL;
430
431 #ifdef MSD
432         OPJ_BOOL l_go_on = OPJ_TRUE;
433         OPJ_UINT32 l_max_data_size = 1000;
434         OPJ_BYTE * l_data = (OPJ_BYTE *) malloc(1000);
435 #endif
436
437         /* Set decoding parameters to default values */
438         opj_set_default_decoder_parameters(&parameters);
439
440         /* Initialize img_fol */
441         memset(&img_fol,0,sizeof(img_fol_t));
442   img_fol.flag = OPJ_IMG_INFO | OPJ_J2K_MH_INFO | OPJ_J2K_MH_IND;
443
444         /* Parse input and get user encoding parameters */
445         if(parse_cmdline_decoder(argc, argv, &parameters,&img_fol) == 1) {
446                 return EXIT_FAILURE;
447         }
448
449         /* Initialize reading of directory */
450         if(img_fol.set_imgdir==1){      
451                 int it_image;
452                 num_images=get_num_images(img_fol.imgdirpath);
453
454                 dirptr=(dircnt_t*)malloc(sizeof(dircnt_t));
455                 if(dirptr){
456                         dirptr->filename_buf = (char*)malloc((size_t)num_images*OPJ_PATH_LEN*sizeof(char));     /* Stores at max 10 image file names*/
457                         dirptr->filename = (char**) malloc((size_t)num_images*sizeof(char*));
458
459                         if(!dirptr->filename_buf){
460                                 return EXIT_FAILURE;
461                         }
462
463                         for(it_image=0;it_image<num_images;it_image++){
464                                 dirptr->filename[it_image] = dirptr->filename_buf + it_image*OPJ_PATH_LEN;
465                         }
466                 }
467                 if(load_images(dirptr,img_fol.imgdirpath)==1){
468                         return EXIT_FAILURE;
469                 }
470
471                 if (num_images==0){
472                         fprintf(stdout,"Folder is empty\n");
473                         return EXIT_FAILURE;
474                 }
475         }else{
476                 num_images=1;
477         }
478
479         /* Try to open for writing the output file if necessary */
480         if (parameters.outfile[0] != 0){
481                 fout = fopen(parameters.outfile,"w");
482                 if (!fout){
483                         fprintf(stderr, "ERROR -> failed to open %s for writing\n", parameters.outfile);
484                         return EXIT_FAILURE;
485                 }
486         }
487         else
488                 fout = stdout;
489
490         /* Read the header of each image one by one */
491         for(imageno = 0; imageno < num_images ; imageno++){
492
493                 fprintf(stderr,"\n");
494
495                 if(img_fol.set_imgdir==1){
496                         if (get_next_file(imageno, dirptr,&img_fol, &parameters)) {
497                                 fprintf(stderr,"skipping file...\n");
498                                 continue;
499                         }
500                 }
501
502                 /* Read the input file and put it in memory */
503                 /* ---------------------------------------- */
504
505                 l_stream = opj_stream_create_default_file_stream(parameters.infile,1);
506                 if (!l_stream){
507                         fprintf(stderr, "ERROR -> failed to create the stream from the file %s\n",parameters.infile);
508                         return EXIT_FAILURE;
509                 }
510
511                 /* Read the JPEG2000 stream */
512                 /* ------------------------ */
513
514                 switch(parameters.decod_format) {
515                         case J2K_CFMT:  /* JPEG-2000 codestream */
516                         {
517                                 /* Get a decoder handle */
518                                 l_codec = opj_create_decompress(OPJ_CODEC_J2K);
519                                 break;
520                         }
521                         case JP2_CFMT:  /* JPEG 2000 compressed image data */
522                         {
523                                 /* Get a decoder handle */
524                                 l_codec = opj_create_decompress(OPJ_CODEC_JP2);
525                                 break;
526                         }
527                         case JPT_CFMT:  /* JPEG 2000, JPIP */
528                         {
529                                 /* Get a decoder handle */
530                                 l_codec = opj_create_decompress(OPJ_CODEC_JPT);
531                                 break;
532                         }
533                         default:
534                                 fprintf(stderr, "skipping file..\n");
535                                 opj_stream_destroy(l_stream);
536                                 continue;
537                 }
538
539                 /* catch events using our callbacks and give a local context */         
540                 opj_set_info_handler(l_codec, info_callback,00);
541                 opj_set_warning_handler(l_codec, warning_callback,00);
542                 opj_set_error_handler(l_codec, error_callback,00);
543
544                 /* Setup the decoder decoding parameters using user parameters */
545                 if ( !opj_setup_decoder(l_codec, &parameters) ){
546                         fprintf(stderr, "ERROR -> opj_dump: failed to setup the decoder\n");
547                         opj_stream_destroy(l_stream);
548                         opj_destroy_codec(l_codec);
549                         fclose(fout);
550                         return EXIT_FAILURE;
551                 }
552
553                 /* Read the main header of the codestream and if necessary the JP2 boxes*/
554                 if(! opj_read_header(l_stream, l_codec, &image)){
555                         fprintf(stderr, "ERROR -> opj_dump: failed to read the header\n");
556                         opj_stream_destroy(l_stream);
557                         opj_destroy_codec(l_codec);
558                         opj_image_destroy(image);
559                         fclose(fout);
560                         return EXIT_FAILURE;
561                 }
562
563                 opj_dump_codec(l_codec, img_fol.flag, fout );
564
565                 cstr_info = opj_get_cstr_info(l_codec);
566
567                 cstr_index = opj_get_cstr_index(l_codec);
568
569                 /* close the byte stream */
570                 opj_stream_destroy(l_stream);
571
572                 /* free remaining structures */
573                 if (l_codec) {
574                         opj_destroy_codec(l_codec);
575                 }
576
577                 /* destroy the image header */
578                 opj_image_destroy(image);
579
580                 /* destroy the codestream index */
581                 opj_destroy_cstr_index(&cstr_index);
582
583                 /* destroy the codestream info */
584                 opj_destroy_cstr_info(&cstr_info);
585
586         }
587
588         /* Close the output file */
589         fclose(fout);
590
591   return EXIT_SUCCESS;
592 }