fixed a bug in autotools files that prevented libfcgi to be correctly found in some...
[openjpeg.git] / applications / jpip / tools / jpip_to_j2k.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_j2k is a program to convert JPT- JPP- stream to J2K file
33  *
34  *  \section impinst Implementing instructions
35  *  This program takes two arguments. \n
36  *   -# Input  JPT or JPP file
37  *   -# Output J2K file\n
38  *   % ./jpip_to_j2k input.jpt output.j2k
39  *   or
40  *   % ./jpip_to_j2k input.jpp output.j2k
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
51
52 int main(int argc,char *argv[])
53 {
54   msgqueue_param_t *msgqueue;
55   int infd, outfd;
56   Byte8_t jpiplen, j2klen;
57   struct stat sb;
58   Byte_t *jpipstream, *j2kstream;
59   
60   if( argc < 3){
61     fprintf( stderr, "Too few arguments:\n");
62     fprintf( stderr, " - input  jpt or jpp file\n");
63     fprintf( stderr, " - output j2k file\n");
64     return -1;
65   }
66
67   if(( infd = open( argv[1], O_RDONLY)) == -1){
68     fprintf( stderr, "file %s not exist\n", argv[1]);
69     return -1;
70   }
71   
72   if( fstat( infd, &sb) == -1){
73     fprintf( stderr, "input file stream is broken\n");
74     return -1;
75   }
76   jpiplen = (Byte8_t)sb.st_size;
77
78   jpipstream = (Byte_t *)malloc( jpiplen);
79
80   if( read( infd, jpipstream, jpiplen) != jpiplen){
81     fprintf( stderr, "file reading error\n");
82     free( jpipstream);
83     return -1;
84   }
85   close(infd);
86
87   msgqueue = gene_msgqueue( true, NULL);
88   parse_JPIPstream( jpipstream, jpiplen, 0, msgqueue);
89   
90   //print_msgqueue( msgqueue);
91
92   j2kstream = recons_j2k( msgqueue, jpipstream, msgqueue->first->csn, 0, &j2klen);
93   
94   delete_msgqueue( &msgqueue);
95   free( jpipstream);
96
97 #ifdef _WIN32
98   if(( outfd = open( argv[2], O_WRONLY|O_CREAT, _S_IREAD | _S_IWRITE)) == -1){
99 #else
100   if(( outfd = open( argv[2], O_WRONLY|O_CREAT, S_IRWXU|S_IRWXG)) == -1){
101 #endif
102     fprintf( stderr, "file %s open error\n", argv[2]);
103     return -1;
104   }
105   
106   if( write( outfd, j2kstream, j2klen) != j2klen)
107     fprintf( stderr, "j2k file write error\n");
108
109   free( j2kstream);
110   close(outfd);
111
112   return 0;
113 }