2011-04-14 20:37:47 +02:00
|
|
|
/*
|
2012-10-01 10:43:02 +02:00
|
|
|
* $Id$
|
2011-04-14 20:37:47 +02:00
|
|
|
*
|
2014-04-03 17:30:57 +02:00
|
|
|
* Copyright (c) 2002-2014, Universite catholique de Louvain (UCL), Belgium
|
|
|
|
* Copyright (c) 2002-2014, Professor Benoit Macq
|
2011-04-14 20:37:47 +02:00
|
|
|
* Copyright (c) 2010-2011, Kaori Hagihara
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2017-05-15 12:21:30 +02:00
|
|
|
#ifndef IMGSOCK_MANAGER_H_
|
|
|
|
# define IMGSOCK_MANAGER_H_
|
2011-04-14 20:37:47 +02:00
|
|
|
|
|
|
|
#include "byte_manager.h"
|
2012-03-02 11:46:04 +01:00
|
|
|
#include "sock_manager.h"
|
2012-10-29 17:24:39 +01:00
|
|
|
#include "opj_includes.h"
|
2011-10-18 14:38:31 +02:00
|
|
|
|
2012-03-02 12:09:16 +01:00
|
|
|
#define NUM_OF_MSGTYPES 9
|
2017-05-15 12:21:30 +02:00
|
|
|
typedef enum eMSGTYPE { JPIPSTREAM, PNMREQ, XMLREQ, TIDREQ, CIDREQ, CIDDST, SIZREQ, JP2SAVE, QUIT, MSGERROR} msgtype_t;
|
2011-04-14 20:37:47 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* indeitify client message type
|
|
|
|
*
|
|
|
|
* @param [in] connected_socket file descriptor of the connected socket
|
|
|
|
* @return message type
|
|
|
|
*/
|
2017-05-15 12:21:30 +02:00
|
|
|
msgtype_t identify_clientmsg(SOCKET connected_socket);
|
2011-04-14 20:37:47 +02:00
|
|
|
|
|
|
|
/**
|
2011-07-05 01:00:21 +02:00
|
|
|
* receive a JPT- JPP- stream from client
|
2011-04-14 20:37:47 +02:00
|
|
|
*
|
|
|
|
* @param [in] connected_socket file descriptor of the connected socket
|
2011-11-03 18:20:00 +01:00
|
|
|
* @param [out] target address of received target file name string pointer ( malloced, if not received, NULL)
|
|
|
|
* @param [out] tid address of received target identifier string pointer ( malloced, if not received, null string)
|
|
|
|
* @param [out] cid address of received channel identifier string pointer ( malloced, if not received, null string)
|
2011-04-14 20:37:47 +02:00
|
|
|
* @param [out] streamlen length of the received codestream
|
2011-07-05 01:00:21 +02:00
|
|
|
* @return JPT- JPP- codestream
|
2011-04-14 20:37:47 +02:00
|
|
|
*/
|
2017-05-15 12:21:30 +02:00
|
|
|
Byte_t * receive_JPIPstream(SOCKET connected_socket, char **target, char **tid,
|
|
|
|
char **cid, OPJ_SIZE_T *streamlen);
|
2011-04-14 20:37:47 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* send PGM/PPM image stream to the client
|
|
|
|
*
|
|
|
|
* @param [in] connected_socket file descriptor of the connected socket
|
|
|
|
* @param [in] pnmstream PGM/PPM image codestream
|
2012-03-02 12:09:16 +01:00
|
|
|
* @param [in] width width of the PGM/PPM image (different from the original image)
|
|
|
|
* @param [in] height height of the PGM/PPM image
|
2011-04-14 20:37:47 +02:00
|
|
|
* @param [in] numofcomp number of components of the image
|
|
|
|
* @param [in] maxval maximum value of the image (only 255 supported)
|
|
|
|
*/
|
2017-05-15 12:21:30 +02:00
|
|
|
void send_PNMstream(SOCKET connected_socket, Byte_t *pnmstream,
|
|
|
|
unsigned int width, unsigned int height, unsigned int numofcomp, Byte_t maxval);
|
2011-04-14 20:37:47 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* send XML data stream to the client
|
|
|
|
*
|
|
|
|
* @param [in] connected_socket file descriptor of the connected socket
|
|
|
|
* @param [in] xmlstream xml data stream
|
|
|
|
* @param [in] length legnth of the xml data stream
|
|
|
|
*/
|
2017-05-15 12:21:30 +02:00
|
|
|
void send_XMLstream(SOCKET connected_socket, Byte_t *xmlstream,
|
|
|
|
OPJ_SIZE_T length);
|
2011-04-14 20:37:47 +02:00
|
|
|
|
2011-08-25 19:13:04 +02:00
|
|
|
/**
|
|
|
|
* send TID data stream to the client
|
|
|
|
*
|
|
|
|
* @param [in] connected_socket file descriptor of the connected socket
|
|
|
|
* @param [in] tid tid string
|
|
|
|
* @param [in] tidlen legnth of the tid string
|
|
|
|
*/
|
2017-05-15 12:21:30 +02:00
|
|
|
void send_TIDstream(SOCKET connected_socket, const char *tid,
|
|
|
|
OPJ_SIZE_T tidlen);
|
2011-08-25 19:13:04 +02:00
|
|
|
|
2011-04-14 20:37:47 +02:00
|
|
|
/**
|
|
|
|
* send CID data stream to the client
|
|
|
|
*
|
|
|
|
* @param [in] connected_socket file descriptor of the connected socket
|
|
|
|
* @param [in] cid cid string
|
|
|
|
* @param [in] cidlen legnth of the cid string
|
|
|
|
*/
|
2017-05-15 12:21:30 +02:00
|
|
|
void send_CIDstream(SOCKET connected_socket, const char *cid,
|
|
|
|
OPJ_SIZE_T cidlen);
|
2011-04-14 20:37:47 +02:00
|
|
|
|
2012-03-02 12:09:16 +01:00
|
|
|
/**
|
|
|
|
* send SIZ data stream to the client
|
|
|
|
*
|
|
|
|
* @param [in] connected_socket file descriptor of the connected socket
|
|
|
|
* @param [in] width original width of the image
|
|
|
|
* @param [in] height original height of the image
|
|
|
|
*/
|
2017-05-15 12:21:30 +02:00
|
|
|
void send_SIZstream(SOCKET connected_socket, unsigned int width,
|
|
|
|
unsigned int height);
|
2012-03-02 12:09:16 +01:00
|
|
|
|
2011-04-14 20:37:47 +02:00
|
|
|
/**
|
|
|
|
* send response signal to the client
|
|
|
|
*
|
|
|
|
* @param [in] connected_socket file descriptor of the connected socket
|
|
|
|
* @param [in] succeed whether if the requested process succeeded
|
|
|
|
*/
|
2017-05-15 12:21:30 +02:00
|
|
|
void response_signal(SOCKET connected_socket, OPJ_BOOL succeed);
|
2011-04-14 20:37:47 +02:00
|
|
|
|
|
|
|
#endif /* !IMGSOCK_MANAGER_H_ */
|
|
|
|
|
|
|
|
/*! \file
|
|
|
|
* PROTOCOL specification to communicate with opj_dec_server
|
|
|
|
*
|
2011-07-05 15:35:31 +02:00
|
|
|
*\section sec1 JPIP-stream
|
|
|
|
* Cache JPT- JPP- stream in server
|
2011-04-14 20:37:47 +02:00
|
|
|
*
|
2011-08-25 19:13:04 +02:00
|
|
|
* client -> server: JPIP-stream\\n version 1.1\\n (optional for cid registration: targetnamestring\\n tidstring\\n cidstring\\n) bytelengthvalue\\n data \n
|
2011-04-14 20:37:47 +02:00
|
|
|
* server -> client: 1 or 0 (of 1Byte response signal)
|
2017-05-15 12:21:30 +02:00
|
|
|
*
|
2011-04-14 20:37:47 +02:00
|
|
|
*\section sec2 PNM request
|
|
|
|
* Get decoded PGM/PPM image
|
|
|
|
*
|
2011-09-16 16:20:00 +02:00
|
|
|
* client -> server: PNM request\\n [cid/tid]string\\n fw\\n fh\\n \n
|
2011-04-14 20:37:47 +02:00
|
|
|
* server -> client: P6 or P5 (2Byte) width (2Byte Big endian) height (2Byte Big endian) maxval (1Byte) data
|
|
|
|
*
|
|
|
|
*\section sec3 XML request
|
|
|
|
* Get XML data
|
|
|
|
*
|
|
|
|
* client -> server: XML request\\n \n
|
|
|
|
* server -> client: XML (3Byte) length (2Byte Big endian) data
|
|
|
|
*
|
2011-08-25 19:13:04 +02:00
|
|
|
*\section sec4 TID request
|
|
|
|
* Get target ID of target image
|
|
|
|
*
|
|
|
|
* client -> server: TID request\\n targetname\\n \n
|
|
|
|
* server -> client: TID (3Byte) length (1Byte) tiddata
|
|
|
|
*
|
|
|
|
*\section sec5 CID request
|
2011-04-14 20:37:47 +02:00
|
|
|
* Get Channel ID of identical target image
|
|
|
|
*
|
|
|
|
* client -> server: CID request\\n targetname\\n \n
|
|
|
|
* server -> client: CID (3Byte) length (1Byte) ciddata
|
|
|
|
*
|
2011-08-25 19:13:04 +02:00
|
|
|
*\section sec6 CID destroy
|
2011-04-14 20:37:47 +02:00
|
|
|
* Close Channel ID
|
|
|
|
*
|
|
|
|
* client -> server: CID destroy\\n ciddata \n
|
|
|
|
* server -> client: 1 or 0 (of 1Byte response signal)
|
|
|
|
*
|
2012-03-02 12:09:16 +01:00
|
|
|
*\section sec7 SIZ request
|
|
|
|
* Get original size of image
|
|
|
|
*
|
|
|
|
* client -> server: SIZ request\\n tidstring\\n cidstring\\n \n
|
|
|
|
* server -> client: SIZ (3Byte) width (3Byte Big endian) height (3Byte Big endian)
|
|
|
|
*
|
|
|
|
*\section sec8 JP2 save
|
2011-04-14 20:37:47 +02:00
|
|
|
* Save in JP2 file format
|
|
|
|
*
|
|
|
|
* client -> server: JP2 save\\n ciddata \n
|
|
|
|
* server -> client: 1 or 0 (of 1Byte response signal)
|
|
|
|
*
|
2012-03-02 12:09:16 +01:00
|
|
|
*\section sec9 QUIT
|
2011-04-14 20:37:47 +02:00
|
|
|
* Quit the opj_dec_server program
|
|
|
|
*
|
|
|
|
* client -> server: quit or QUIT
|
|
|
|
*/
|