[1.5] enabled JPP stream in JPIP (result of GSoC program)
[openjpeg.git] / applications / jpip / tools / jpip_to_jp2.c
1 /*
2  * $Id$
3  *
4  * Copyright (c) 2002-2011, Communications and Remote Sensing Laboratory, Universite catholique de Louvain (UCL), Belgium
5  * Copyright (c) 2002-2011, Professor Benoit Macq
6  * Copyright (c) 2010-2011, Kaori Hagihara
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
19  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28  * POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 /*! \file
32  *  \brief jpip_to_jp2 is a program to convert JPT- JPP- stream to JP2 file
33  *
34  *  \section impinst Implementing instructions
35  *  This program takes two arguments. \n
36  *   -# Input JPT or JPP file
37  *   -# Output JP2 file\n
38  *   % ./jpip_to_jp2 input.jpt output.jp2
39  *   or
40  *   % ./jpip_to_jp2 input.jpp output.jp2
41  */
42
43 #include <stdio.h>
44 #include <sys/types.h>
45 #include <sys/stat.h>
46 #include <fcntl.h>
47 #include <unistd.h>
48 #include <stdlib.h>
49 #include "msgqueue_manager.h"
50 #include "byte_manager.h"
51 #include "ihdrbox_manager.h"
52 #include "metadata_manager.h"
53 #include "jp2k_encoder.h"
54
55 int main(int argc,char *argv[])
56 {
57   msgqueue_param_t *msgqueue;
58   int infd, outfd;
59   Byte8_t jpiplen, jp2len;
60   struct stat sb;
61   Byte_t *jpipstream, *jp2stream;
62   metadatalist_param_t *metadatalist;
63   ihdrbox_param_t *ihdrbox;
64     
65   if( argc < 3){
66     fprintf( stderr, "Too few arguments:\n");
67     fprintf( stderr, " - input  jpt or jpp file\n");
68     fprintf( stderr, " - output jp2 file\n");
69     return -1;
70   }
71
72   if(( infd = open( argv[1], O_RDONLY)) == -1){
73     fprintf( stderr, "file %s not exist\n", argv[1]);
74     return -1;
75   }
76   
77   if( fstat( infd, &sb) == -1){
78     fprintf( stderr, "input file stream is broken\n");
79     return -1;
80   }
81   jpiplen = (Byte8_t)sb.st_size;
82
83   jpipstream = (Byte_t *)malloc( jpiplen);
84
85   if( read( infd, jpipstream, jpiplen) != jpiplen){
86     fprintf( stderr, "file reading error\n");
87     free( jpipstream);
88     return -1;
89   }
90   close(infd);
91
92   metadatalist = gene_metadatalist();
93   msgqueue = gene_msgqueue( true, NULL);
94   parse_JPIPstream( jpipstream, jpiplen, 0, msgqueue);
95   parse_metamsg( msgqueue, jpipstream, jpiplen, metadatalist);
96   print_msgqueue( msgqueue);
97   //print_allmetadata( metadatalist);
98
99   ihdrbox = gene_ihdrbox( metadatalist, jpipstream);
100
101   printf("W*H: %d*%d\n", ihdrbox->height, ihdrbox->width);
102   printf("NC: %d, bpc: %d\n", ihdrbox->nc, ihdrbox->bpc);
103   
104   jp2stream = recons_jp2( msgqueue, jpipstream, msgqueue->first->csn, &jp2len);
105
106 #ifdef _WIN32
107   if(( outfd = open( argv[2], O_WRONLY|O_CREAT, _S_IREAD | _S_IWRITE)) == -1){
108 #else    
109   if(( outfd = open( argv[2], O_WRONLY|O_CREAT, S_IRWXU|S_IRWXG)) == -1){
110 #endif
111     fprintf( stderr, "file %s open error\n", argv[2]);
112     return -1;
113   }
114   
115   if( write( outfd, jp2stream, jp2len) != jp2len)
116     fprintf( stderr, "jp2 file write error\n");
117
118   //print_msgqueue( msgqueue);
119
120   free( ihdrbox);
121   free( jp2stream);
122   close(outfd);
123   
124   delete_msgqueue( &msgqueue);
125   delete_metadatalist( &metadatalist);
126
127   free( jpipstream);
128
129   return 0;
130 }