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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
2012-03-26 17:56:04 +02:00
|
|
|
#include <assert.h>
|
2012-03-02 12:09:16 +01:00
|
|
|
#ifdef _WIN32
|
|
|
|
#define snprintf _snprintf /* Visual Studio */
|
|
|
|
#include <io.h>
|
|
|
|
#else
|
2011-04-14 20:37:47 +02:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
2012-03-02 12:09:16 +01:00
|
|
|
#endif
|
|
|
|
#include <sys/stat.h>
|
2011-04-14 20:37:47 +02:00
|
|
|
#include <fcntl.h>
|
2011-08-24 19:07:28 +02:00
|
|
|
#include <time.h>
|
2011-04-14 20:37:47 +02:00
|
|
|
#include "target_manager.h"
|
|
|
|
|
|
|
|
#ifdef SERVER
|
2012-03-02 11:46:04 +01:00
|
|
|
#include <curl/curl.h>
|
2011-04-14 20:37:47 +02:00
|
|
|
#include "fcgi_stdio.h"
|
|
|
|
#define logstream FCGI_stdout
|
|
|
|
#else
|
|
|
|
#define FCGI_stdout stdout
|
|
|
|
#define FCGI_stderr stderr
|
|
|
|
#define logstream stderr
|
2012-03-02 12:09:16 +01:00
|
|
|
#endif /*SERVER*/
|
2011-04-14 20:37:47 +02:00
|
|
|
|
2012-03-02 12:09:16 +01:00
|
|
|
targetlist_param_t * gene_targetlist(void)
|
2011-04-14 20:37:47 +02:00
|
|
|
{
|
2017-05-09 15:44:46 +02:00
|
|
|
targetlist_param_t *targetlist;
|
2011-04-14 20:37:47 +02:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
targetlist = (targetlist_param_t *)opj_malloc(sizeof(targetlist_param_t));
|
2011-04-14 20:37:47 +02:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
targetlist->first = NULL;
|
|
|
|
targetlist->last = NULL;
|
|
|
|
|
|
|
|
return targetlist;
|
2011-04-14 20:37:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* open jp2 format image file
|
|
|
|
*
|
2012-03-02 11:58:43 +01:00
|
|
|
* @param[in] filepath file name (.jp2)
|
|
|
|
* @param[out] tmpfname new file name if filepath is a URL
|
|
|
|
* @return file descriptor
|
2011-04-14 20:37:47 +02:00
|
|
|
*/
|
2017-05-09 15:44:46 +02:00
|
|
|
int open_jp2file(const char filepath[], char tmpfname[]);
|
2011-04-14 20:37:47 +02:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
target_param_t * gene_target(targetlist_param_t *targetlist, char *targetpath)
|
2011-04-14 20:37:47 +02:00
|
|
|
{
|
2017-05-09 15:44:46 +02:00
|
|
|
target_param_t *target;
|
|
|
|
int fd;
|
|
|
|
index_param_t *jp2idx;
|
|
|
|
char tmpfname[MAX_LENOFTID];
|
|
|
|
static int last_csn = 0;
|
|
|
|
|
|
|
|
if (targetpath[0] == '\0') {
|
|
|
|
fprintf(FCGI_stderr, "Error: exception, no targetpath in gene_target()\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
2011-04-14 20:37:47 +02:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
if ((fd = open_jp2file(targetpath, tmpfname)) == -1) {
|
|
|
|
fprintf(FCGI_stdout, "Status: 404\r\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
2011-04-14 20:37:47 +02:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
if (!(jp2idx = parse_jp2file(fd))) {
|
|
|
|
fprintf(FCGI_stdout, "Status: 501\r\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
target = (target_param_t *)opj_malloc(sizeof(target_param_t));
|
|
|
|
snprintf(target->tid, MAX_LENOFTID, "%x-%x", (unsigned int)time(NULL),
|
|
|
|
(unsigned int)rand());
|
|
|
|
target->targetname = strdup(targetpath);
|
|
|
|
target->fd = fd;
|
2012-03-02 11:46:04 +01:00
|
|
|
#ifdef SERVER
|
2017-05-09 15:44:46 +02:00
|
|
|
if (tmpfname[0]) {
|
|
|
|
target->tmpfname = strdup(tmpfname);
|
|
|
|
} else {
|
|
|
|
target->tmpfname = NULL;
|
|
|
|
}
|
2012-03-02 11:46:04 +01:00
|
|
|
#endif
|
2017-05-09 15:44:46 +02:00
|
|
|
target->csn = last_csn++;
|
|
|
|
target->codeidx = jp2idx;
|
|
|
|
target->num_of_use = 0;
|
|
|
|
target->jppstream = OPJ_TRUE;
|
|
|
|
target->jptstream = isJPTfeasible(*jp2idx);
|
|
|
|
target->next = NULL;
|
|
|
|
|
|
|
|
if (targetlist->first) { /* there are one or more entries*/
|
|
|
|
targetlist->last->next = target;
|
|
|
|
} else { /* first entry*/
|
|
|
|
targetlist->first = target;
|
|
|
|
}
|
|
|
|
targetlist->last = target;
|
2011-08-24 13:00:15 +02:00
|
|
|
|
|
|
|
#ifndef SERVER
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(logstream, "local log: target %s generated\n", targetpath);
|
2011-08-24 13:00:15 +02:00
|
|
|
#endif
|
2017-05-09 15:44:46 +02:00
|
|
|
|
|
|
|
return target;
|
2011-04-14 20:37:47 +02:00
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
void refer_target(target_param_t *reftarget, target_param_t **ptr)
|
2011-08-24 13:00:15 +02:00
|
|
|
{
|
2017-05-09 15:44:46 +02:00
|
|
|
*ptr = reftarget;
|
|
|
|
reftarget->num_of_use++;
|
2011-08-24 13:00:15 +02:00
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
void unrefer_target(target_param_t *target)
|
2011-08-24 13:00:15 +02:00
|
|
|
{
|
2017-05-09 15:44:46 +02:00
|
|
|
target->num_of_use--;
|
2011-08-24 13:00:15 +02:00
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
void delete_target(target_param_t **target)
|
2011-04-14 20:37:47 +02:00
|
|
|
{
|
2017-05-09 15:44:46 +02:00
|
|
|
close((*target)->fd);
|
2012-03-02 11:46:04 +01:00
|
|
|
|
|
|
|
#ifdef SERVER
|
2017-05-09 15:44:46 +02:00
|
|
|
if ((*target)->tmpfname) {
|
|
|
|
fprintf(FCGI_stderr, "Temporal file %s is deleted\n", (*target)->tmpfname);
|
|
|
|
remove((*target)->tmpfname);
|
|
|
|
}
|
2012-03-02 11:46:04 +01:00
|
|
|
#endif
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
if ((*target)->codeidx) {
|
|
|
|
delete_index(&(*target)->codeidx);
|
|
|
|
}
|
|
|
|
|
2011-04-14 20:37:47 +02:00
|
|
|
#ifndef SERVER
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(logstream, "local log: target: %s deleted\n", (*target)->targetname);
|
2011-04-14 20:37:47 +02:00
|
|
|
#endif
|
2011-11-03 18:20:00 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
opj_free((*target)->targetname);
|
2011-11-03 18:20:00 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
opj_free(*target);
|
2011-04-14 20:37:47 +02:00
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
void delete_target_in_list(target_param_t **target,
|
|
|
|
targetlist_param_t *targetlist)
|
2011-04-14 20:37:47 +02:00
|
|
|
{
|
2017-05-09 15:44:46 +02:00
|
|
|
target_param_t *ptr;
|
2011-04-14 20:37:47 +02:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
if (*target == targetlist->first) {
|
|
|
|
targetlist->first = (*target)->next;
|
|
|
|
} else {
|
|
|
|
ptr = targetlist->first;
|
|
|
|
while (ptr->next != *target) {
|
|
|
|
ptr = ptr->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
ptr->next = (*target)->next;
|
|
|
|
|
|
|
|
if (*target == targetlist->last) {
|
|
|
|
targetlist->last = ptr;
|
|
|
|
}
|
2011-04-14 20:37:47 +02:00
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
delete_target(target);
|
2011-04-14 20:37:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void delete_targetlist(targetlist_param_t **targetlist)
|
|
|
|
{
|
2017-05-09 15:44:46 +02:00
|
|
|
target_param_t *targetPtr, *targetNext;
|
|
|
|
|
|
|
|
targetPtr = (*targetlist)->first;
|
|
|
|
while (targetPtr != NULL) {
|
|
|
|
targetNext = targetPtr->next;
|
|
|
|
delete_target(&targetPtr);
|
|
|
|
targetPtr = targetNext;
|
|
|
|
}
|
|
|
|
opj_free(*targetlist);
|
2011-04-14 20:37:47 +02:00
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
void print_target(target_param_t *target)
|
2011-08-24 13:00:15 +02:00
|
|
|
{
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(logstream, "target:\n");
|
|
|
|
fprintf(logstream, "\t tid=%s\n", target->tid);
|
|
|
|
fprintf(logstream, "\t csn=%d\n", target->csn);
|
|
|
|
fprintf(logstream, "\t target=%s\n\n", target->targetname);
|
2011-08-24 13:00:15 +02:00
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
void print_alltarget(targetlist_param_t *targetlist)
|
2011-04-14 20:37:47 +02:00
|
|
|
{
|
2017-05-09 15:44:46 +02:00
|
|
|
target_param_t *ptr;
|
2011-04-14 20:37:47 +02:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
ptr = targetlist->first;
|
|
|
|
while (ptr != NULL) {
|
|
|
|
print_target(ptr);
|
|
|
|
ptr = ptr->next;
|
|
|
|
}
|
2011-04-14 20:37:47 +02:00
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
target_param_t * search_target(const char targetname[],
|
|
|
|
targetlist_param_t *targetlist)
|
2011-04-14 20:37:47 +02:00
|
|
|
{
|
2017-05-09 15:44:46 +02:00
|
|
|
target_param_t *foundtarget;
|
|
|
|
|
|
|
|
foundtarget = targetlist->first;
|
|
|
|
|
|
|
|
while (foundtarget != NULL) {
|
|
|
|
|
|
|
|
if (strcmp(targetname, foundtarget->targetname) == 0) {
|
|
|
|
return foundtarget;
|
|
|
|
}
|
|
|
|
|
|
|
|
foundtarget = foundtarget->next;
|
|
|
|
}
|
|
|
|
return NULL;
|
2011-04-14 20:37:47 +02:00
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
target_param_t * search_targetBytid(const char tid[],
|
|
|
|
targetlist_param_t *targetlist)
|
2011-08-24 19:07:28 +02:00
|
|
|
{
|
2017-05-09 15:44:46 +02:00
|
|
|
target_param_t *foundtarget;
|
|
|
|
|
|
|
|
foundtarget = targetlist->first;
|
|
|
|
|
|
|
|
while (foundtarget != NULL) {
|
|
|
|
|
|
|
|
if (strcmp(tid, foundtarget->tid) == 0) {
|
|
|
|
return foundtarget;
|
|
|
|
}
|
|
|
|
|
|
|
|
foundtarget = foundtarget->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
2011-08-24 19:07:28 +02:00
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
int open_remotefile(const char filepath[], char tmpfname[]);
|
2012-03-02 11:46:04 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
int open_jp2file(const char filepath[], char tmpfname[])
|
2011-04-14 20:37:47 +02:00
|
|
|
{
|
2017-05-09 15:44:46 +02:00
|
|
|
int fd;
|
|
|
|
char *data;
|
|
|
|
|
|
|
|
/* download remote target file to local storage*/
|
|
|
|
if (strncmp(filepath, "http://", 7) == 0) {
|
|
|
|
if ((fd = open_remotefile(filepath, tmpfname)) == -1) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
tmpfname[0] = 0;
|
|
|
|
if ((fd = open(filepath, O_RDONLY)) == -1) {
|
|
|
|
fprintf(FCGI_stdout, "Reason: Target %s not found\r\n", filepath);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Check resource is a JP family file.*/
|
|
|
|
if (lseek(fd, 0, SEEK_SET) == -1) {
|
|
|
|
close(fd);
|
|
|
|
fprintf(FCGI_stdout, "Reason: Target %s broken (lseek error)\r\n", filepath);
|
|
|
|
return -1;
|
2012-03-02 11:58:43 +01:00
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
data = (char *)opj_malloc(12); /* size of header*/
|
2012-03-02 11:58:43 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
if (read(fd, data, 12) != 12) {
|
|
|
|
opj_free(data);
|
|
|
|
close(fd);
|
|
|
|
fprintf(FCGI_stdout, "Reason: Target %s broken (read error)\r\n", filepath);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*data || *(data + 1) || *(data + 2) ||
|
|
|
|
*(data + 3) != 12 || strncmp(data + 4, "jP \r\n\x87\n", 8)) {
|
|
|
|
opj_free(data);
|
|
|
|
close(fd);
|
|
|
|
fprintf(FCGI_stdout, "Reason: No JPEG 2000 Signature box in target %s\r\n",
|
|
|
|
filepath);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
opj_free(data);
|
|
|
|
|
|
|
|
return fd;
|
2011-04-14 20:37:47 +02:00
|
|
|
}
|
2012-03-02 11:46:04 +01:00
|
|
|
|
|
|
|
#ifdef SERVER
|
|
|
|
static size_t write_data(void *ptr, size_t size, size_t nmemb, void *stream);
|
|
|
|
#endif
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
int open_remotefile(const char filepath[], char tmpfname[])
|
2012-03-02 11:46:04 +01:00
|
|
|
{
|
|
|
|
#ifndef SERVER
|
2017-05-09 15:44:46 +02:00
|
|
|
(void)filepath;
|
|
|
|
(void)tmpfname;
|
|
|
|
fprintf(FCGI_stderr, "Remote file can not be opened in local mode\n");
|
|
|
|
return -1;
|
2012-03-02 11:46:04 +01:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
CURL *curl_handle;
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
curl_handle = curl_easy_init();
|
|
|
|
curl_easy_setopt(curl_handle, CURLOPT_URL, filepath);
|
|
|
|
curl_easy_setopt(curl_handle, CURLOPT_NOPROGRESS, 1L);
|
|
|
|
curl_easy_setopt(curl_handle, CURLOPT_WRITEFUNCTION, write_data);
|
|
|
|
|
|
|
|
snprintf(tmpfname, MAX_LENOFTID, "%x-%x.jp2", (unsigned int)time(NULL),
|
|
|
|
(unsigned int)rand());
|
|
|
|
fprintf(FCGI_stderr, "%s is downloaded to a temporal new file %s\n", filepath,
|
|
|
|
tmpfname);
|
|
|
|
if ((fd = open(tmpfname, O_RDWR | O_CREAT | O_EXCL, S_IRWXU)) == -1) {
|
|
|
|
fprintf(FCGI_stdout, "Reason: File open error %s\r\n", tmpfname);
|
|
|
|
curl_easy_cleanup(curl_handle);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
curl_easy_setopt(curl_handle, CURLOPT_WRITEDATA, &fd);
|
|
|
|
curl_easy_perform(curl_handle);
|
2012-03-02 11:46:04 +01:00
|
|
|
curl_easy_cleanup(curl_handle);
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
return fd;
|
2012-03-02 12:09:16 +01:00
|
|
|
#endif /*SERVER*/
|
2012-03-02 11:46:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef SERVER
|
|
|
|
static size_t write_data(void *ptr, size_t size, size_t nmemb, void *stream)
|
|
|
|
{
|
2017-05-09 15:44:46 +02:00
|
|
|
int *fd = (int *)stream;
|
|
|
|
ssize_t written = write(*fd, ptr, size * nmemb);
|
|
|
|
assert(written >= 0);
|
2012-03-02 11:46:04 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
return (size_t)written;
|
2012-03-02 11:46:04 +01:00
|
|
|
}
|
2012-03-02 12:09:16 +01:00
|
|
|
#endif /*SERVER*/
|