RetroArch/tasks/task_image.c

428 lines
11 KiB
C
Raw Normal View History

2016-05-10 07:54:47 +02:00
/* RetroArch - A frontend for libretro.
* Copyright (C) 2011-2016 - Daniel De Matteis
*
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdint.h>
#include <string.h>
#include <errno.h>
#include <file/nbio.h>
#include <formats/image.h>
#include <compat/strl.h>
#include <retro_assert.h>
#include <retro_miscellaneous.h>
#include <lists/string_list.h>
#include <rhash.h>
#include "../file_path_special.h"
2016-05-10 07:54:47 +02:00
#include "../verbosity.h"
#include "tasks_internal.h"
2016-05-10 07:55:31 +02:00
enum image_status_enum
2016-05-10 07:54:47 +02:00
{
2016-05-10 07:55:31 +02:00
IMAGE_STATUS_POLL = 0,
IMAGE_STATUS_TRANSFER,
IMAGE_STATUS_TRANSFER_PARSE,
IMAGE_STATUS_PROCESS_TRANSFER,
IMAGE_STATUS_PROCESS_TRANSFER_PARSE,
IMAGE_STATUS_TRANSFER_PARSE_FREE
2016-05-10 07:54:47 +02:00
};
struct nbio_image_handle
{
struct texture_image ti;
bool is_blocking;
bool is_blocking_on_processing;
bool is_finished;
transfer_cb_t cb;
void *handle;
size_t size;
unsigned processing_pos_increment;
unsigned pos_increment;
int processing_final_state;
2016-05-20 19:32:09 +02:00
enum image_status_enum status;
};
struct nbio_wrapper_handle
{
nbio_handle_t *nbio;
bool supports_rgba;
};
2016-05-10 07:54:47 +02:00
static int cb_image_menu_upload_generic(void *data, size_t len)
{
unsigned r_shift, g_shift, b_shift, a_shift;
2016-09-23 02:49:25 +02:00
nbio_handle_t *nbio = (nbio_handle_t*)data;
struct nbio_image_handle *image = (struct nbio_image_handle*)nbio->data;
2016-05-10 07:54:47 +02:00
if (!image)
2016-05-10 07:54:47 +02:00
return -1;
2016-05-13 15:18:40 +02:00
if (image->processing_final_state == IMAGE_PROCESS_ERROR ||
image->processing_final_state == IMAGE_PROCESS_ERROR_END)
2016-05-10 07:54:47 +02:00
return -1;
image_texture_set_color_shifts(
&image->ti,
&r_shift, &g_shift, &b_shift,
2016-05-10 07:54:47 +02:00
&a_shift);
image_texture_color_convert(r_shift, g_shift, b_shift,
2016-05-13 15:18:40 +02:00
a_shift, &image->ti);
2016-05-10 07:54:47 +02:00
2016-05-13 15:18:40 +02:00
image->is_blocking_on_processing = false;
image->is_blocking = true;
image->is_finished = true;
nbio->is_finished = true;
2016-05-10 07:54:47 +02:00
return 0;
}
2016-05-13 10:13:36 +02:00
static int task_image_iterate_transfer_parse(nbio_handle_t *nbio)
2016-05-10 07:54:47 +02:00
{
2016-09-23 02:49:25 +02:00
struct nbio_image_handle *image = (struct nbio_image_handle*)nbio->data;
2016-05-13 15:18:40 +02:00
if (image->handle && image->cb)
2016-05-10 07:54:47 +02:00
{
size_t len = 0;
2016-05-13 15:18:40 +02:00
image->cb(nbio, len);
2016-05-10 07:54:47 +02:00
}
return 0;
}
2016-05-13 10:13:36 +02:00
static int task_image_process(
2016-05-12 13:13:14 +02:00
nbio_handle_t *nbio,
unsigned *width,
unsigned *height)
{
2016-09-23 02:49:25 +02:00
struct nbio_image_handle *image = (struct nbio_image_handle*)nbio->data;
int retval = image_transfer_process(
image->handle,
nbio->image_type,
2016-05-13 15:18:40 +02:00
&image->ti.pixels, image->size, width, height);
2016-05-12 13:13:14 +02:00
if (retval == IMAGE_PROCESS_ERROR)
return IMAGE_PROCESS_ERROR;
2016-05-13 15:18:40 +02:00
image->ti.width = *width;
image->ti.height = *height;
2016-05-10 08:23:49 +02:00
2016-05-11 20:38:09 +02:00
return retval;
2016-05-10 08:23:49 +02:00
}
2016-05-11 03:55:09 +02:00
static int cb_image_menu_generic(nbio_handle_t *nbio)
2016-05-10 07:54:47 +02:00
{
int retval;
2016-05-10 07:54:47 +02:00
unsigned width = 0, height = 0;
2016-09-23 02:49:25 +02:00
struct nbio_image_handle *image = (struct nbio_image_handle*)nbio->data;
if (!image)
2016-05-10 07:54:47 +02:00
return -1;
retval = task_image_process(nbio, &width, &height);
if ((retval == IMAGE_PROCESS_ERROR) || (retval == IMAGE_PROCESS_ERROR_END))
return -1;
2016-05-10 07:54:47 +02:00
image->is_blocking_on_processing = (retval != IMAGE_PROCESS_END);
image->is_finished = (retval == IMAGE_PROCESS_END);
2016-05-10 07:54:47 +02:00
return 0;
}
static int cb_image_menu_thumbnail(void *data, size_t len)
{
2016-05-18 23:28:03 +02:00
nbio_handle_t *nbio = (nbio_handle_t*)data;
2016-09-23 02:49:25 +02:00
struct nbio_image_handle *image = (struct nbio_image_handle*)nbio->data;
2016-05-10 07:54:47 +02:00
2016-05-11 03:55:09 +02:00
if (cb_image_menu_generic(nbio) != 0)
2016-05-10 07:54:47 +02:00
return -1;
2016-05-13 15:18:40 +02:00
image->cb = &cb_image_menu_upload_generic;
2016-05-10 07:54:47 +02:00
return 0;
}
2016-05-13 10:13:36 +02:00
static int task_image_iterate_process_transfer(nbio_handle_t *nbio)
2016-05-11 21:22:45 +02:00
{
int retval = 0;
unsigned i, width = 0, height = 0;
2016-09-23 02:49:25 +02:00
struct nbio_image_handle *image = (struct nbio_image_handle*)nbio->data;
2016-05-11 21:22:45 +02:00
if (!image)
2016-05-11 21:22:45 +02:00
return -1;
2016-05-13 15:18:40 +02:00
for (i = 0; i < image->processing_pos_increment; i++)
2016-05-11 21:22:45 +02:00
{
2016-05-13 10:13:36 +02:00
retval = task_image_process(nbio,
2016-05-11 21:22:45 +02:00
&width, &height);
if (retval != IMAGE_PROCESS_NEXT)
break;
}
if (retval == IMAGE_PROCESS_NEXT)
return 0;
2016-05-13 15:18:40 +02:00
image->processing_final_state = retval;
2016-05-11 21:22:45 +02:00
return -1;
}
2016-05-13 10:13:36 +02:00
static int task_image_iterate_transfer(nbio_handle_t *nbio)
2016-05-10 07:54:47 +02:00
{
unsigned i;
2016-09-23 02:49:25 +02:00
struct nbio_image_handle *image = (struct nbio_image_handle*)nbio->data;
2016-05-10 07:54:47 +02:00
if (!image)
2016-05-12 13:13:14 +02:00
goto error;
2016-05-10 07:54:47 +02:00
2016-05-13 15:18:40 +02:00
if (image->is_finished)
2016-05-10 07:54:47 +02:00
return 0;
2016-05-13 15:18:40 +02:00
for (i = 0; i < image->pos_increment; i++)
2016-05-10 07:54:47 +02:00
{
2016-05-13 15:18:40 +02:00
if (!image_transfer_iterate(image->handle, nbio->image_type))
2016-05-12 13:13:14 +02:00
goto error;
2016-05-10 07:54:47 +02:00
}
return 0;
error:
return -1;
}
2016-05-27 18:14:47 +02:00
static void task_image_load_free_internal(nbio_handle_t *nbio)
2016-05-10 08:09:12 +02:00
{
2016-09-23 02:49:25 +02:00
struct nbio_image_handle *image = (struct nbio_image_handle*)nbio->data;
2016-09-23 02:50:29 +02:00
if (!image)
return;
2016-09-23 02:50:29 +02:00
image_transfer_free(image->handle, nbio->image_type);
2016-05-10 08:09:12 +02:00
2016-09-23 02:50:29 +02:00
image->handle = NULL;
image->cb = NULL;
2016-05-10 08:09:12 +02:00
}
2016-05-11 04:03:21 +02:00
static int cb_nbio_generic(nbio_handle_t *nbio, size_t *len)
2016-05-10 07:54:47 +02:00
{
2016-09-23 02:50:29 +02:00
void *ptr = NULL;
2016-09-23 02:49:25 +02:00
struct nbio_image_handle *image = (struct nbio_image_handle*)nbio->data;
2016-05-10 07:54:47 +02:00
2016-05-13 15:18:40 +02:00
if (!image || !image->handle)
2016-05-10 08:09:12 +02:00
goto error;
2016-05-10 07:54:47 +02:00
ptr = nbio_get_ptr(nbio->handle, len);
if (!ptr)
2016-05-10 08:09:12 +02:00
goto error;
2016-05-10 07:54:47 +02:00
2016-05-13 15:18:40 +02:00
image_transfer_set_buffer_ptr(image->handle, nbio->image_type, ptr);
2016-05-11 03:51:26 +02:00
2016-05-13 15:18:40 +02:00
image->size = *len;
image->pos_increment = (*len / 2) ? (*len / 2) : 1;
2016-05-19 00:16:30 +02:00
image->processing_pos_increment = (*len / 4) ? (*len / 4) : 1;
2016-05-10 07:54:47 +02:00
2016-05-13 15:18:40 +02:00
if (!image_transfer_start(image->handle, nbio->image_type))
2016-05-13 04:33:11 +02:00
goto error;
2016-05-10 07:54:47 +02:00
2016-05-13 15:18:40 +02:00
image->is_blocking = false;
image->is_finished = false;
nbio->is_finished = true;
2016-05-10 07:54:47 +02:00
return 0;
2016-05-10 08:09:12 +02:00
error:
2016-05-27 18:14:47 +02:00
task_image_load_free_internal(nbio);
if (nbio)
{
if (nbio->data)
free(nbio->data);
nbio->data = NULL;
}
2016-05-10 08:09:12 +02:00
return -1;
2016-05-10 07:54:47 +02:00
}
2016-05-11 03:56:31 +02:00
static int cb_nbio_image_menu_thumbnail(void *data, size_t len)
2016-05-10 07:54:47 +02:00
{
struct nbio_image_handle *image = NULL;
void *handle = NULL;
struct nbio_wrapper_handle *nbio = (struct nbio_wrapper_handle*)data;
2016-05-10 07:54:47 +02:00
2016-05-18 23:28:03 +02:00
if (!nbio)
goto error;
2016-05-13 04:28:16 +02:00
handle = image_transfer_new(nbio->nbio->image_type);
2016-05-13 04:28:16 +02:00
if (!handle)
2016-05-13 04:28:16 +02:00
goto error;
2016-05-18 23:28:03 +02:00
image = (struct nbio_image_handle*)nbio->nbio->data;
image->handle = handle;
image->size = len;
2016-05-13 15:18:40 +02:00
image->cb = &cb_image_menu_thumbnail;
2016-05-10 07:54:47 +02:00
return cb_nbio_generic(nbio->nbio, &len);
2016-05-13 04:28:16 +02:00
error:
return -1;
2016-05-10 07:54:47 +02:00
}
2016-05-27 18:14:47 +02:00
bool task_image_load_handler(retro_task_t *task)
2016-05-10 07:54:47 +02:00
{
struct nbio_wrapper_handle *nbio = (struct nbio_wrapper_handle *)task->state;
struct nbio_image_handle *image = (struct nbio_image_handle*)nbio->nbio->data;
2016-05-10 07:54:47 +02:00
if (image)
2016-05-10 07:54:47 +02:00
{
switch (image->status)
{
case IMAGE_STATUS_PROCESS_TRANSFER:
if (task_image_iterate_process_transfer(nbio->nbio) == -1)
image->status = IMAGE_STATUS_PROCESS_TRANSFER_PARSE;
2016-05-10 07:54:47 +02:00
break;
case IMAGE_STATUS_TRANSFER_PARSE:
task_image_iterate_transfer_parse(nbio->nbio);
if (image->is_blocking_on_processing)
image->status = IMAGE_STATUS_PROCESS_TRANSFER;
break;
case IMAGE_STATUS_TRANSFER:
if (!image->is_blocking)
if (task_image_iterate_transfer(nbio->nbio) == -1)
image->status = IMAGE_STATUS_TRANSFER_PARSE;
break;
case IMAGE_STATUS_PROCESS_TRANSFER_PARSE:
task_image_iterate_transfer_parse(nbio->nbio);
if (!image->is_finished)
break;
case IMAGE_STATUS_TRANSFER_PARSE_FREE:
case IMAGE_STATUS_POLL:
default:
break;
}
2016-05-10 07:54:47 +02:00
}
if ( (nbio->nbio && nbio->nbio->is_finished )
&& (image && image->is_finished )
&& (task && !task_get_cancelled(task)))
2016-05-10 07:54:47 +02:00
{
void *data = malloc(sizeof(image->ti));
2016-05-10 07:54:47 +02:00
if (data)
memcpy(data, &image->ti, sizeof(image->ti));
task_set_data(task, data);
2016-05-10 07:54:47 +02:00
return false;
}
return true;
}
bool task_push_image_load(bool supports_rgba,
const char *fullpath,
2016-06-20 16:14:59 +02:00
enum msg_hash_enums enum_idx, retro_task_callback_t cb, void *user_data)
2016-05-10 07:54:47 +02:00
{
retro_task_t *task = NULL;
struct nbio_t *handle = NULL;
2016-09-23 02:50:29 +02:00
struct nbio_image_handle *image = NULL;
struct nbio_wrapper_handle *nbio = NULL;
2016-05-10 07:54:47 +02:00
2016-06-20 16:14:59 +02:00
if (enum_idx == MSG_UNKNOWN)
goto error_msg;
2016-05-18 23:28:03 +02:00
task = (retro_task_t*)calloc(1, sizeof(*task));
if (!task)
goto error_msg;
2016-05-10 07:54:47 +02:00
nbio = (struct nbio_wrapper_handle*)calloc(1, sizeof(*nbio));
2016-05-10 07:54:47 +02:00
if (!nbio)
2016-05-10 08:28:48 +02:00
goto error;
2016-05-10 07:54:47 +02:00
nbio->nbio = (nbio_handle_t*)calloc(1, sizeof(*nbio->nbio));
if (!nbio->nbio)
goto error;
handle = nbio_open(fullpath, NBIO_READ);
if (!handle)
goto error;
nbio->supports_rgba = supports_rgba;
nbio->nbio->handle = handle;
image = (struct nbio_image_handle*)calloc(1, sizeof(*image));
2016-05-14 00:48:40 +02:00
if (!image)
goto error;
image->status = IMAGE_STATUS_TRANSFER;
2016-05-18 23:28:03 +02:00
nbio->nbio->data = (struct nbio_image_handle*)image;
nbio->nbio->is_finished = false;
nbio->nbio->cb = &cb_nbio_image_menu_thumbnail;
nbio->nbio->status = NBIO_STATUS_TRANSFER;
2016-05-10 07:54:47 +02:00
if (strstr(fullpath, file_path_str(FILE_PATH_PNG_EXTENSION)))
nbio->nbio->image_type = IMAGE_TYPE_PNG;
else if (strstr(fullpath, file_path_str(FILE_PATH_JPEG_EXTENSION))
|| strstr(fullpath, file_path_str(FILE_PATH_JPG_EXTENSION)))
nbio->nbio->image_type = IMAGE_TYPE_JPEG;
else if (strstr(fullpath, file_path_str(FILE_PATH_BMP_EXTENSION)))
nbio->nbio->image_type = IMAGE_TYPE_BMP;
else if (strstr(fullpath, file_path_str(FILE_PATH_TGA_EXTENSION)))
nbio->nbio->image_type = IMAGE_TYPE_TGA;
2016-05-10 07:54:47 +02:00
nbio_begin_read(handle);
task->state = nbio;
task->handler = task_file_load_handler;
task->cleanup = task_image_load_free;
task->callback = cb;
task->user_data = user_data;
2016-05-10 07:54:47 +02:00
task_queue_ctl(TASK_QUEUE_CTL_PUSH, task);
2016-05-10 08:28:48 +02:00
2016-05-10 07:54:47 +02:00
return true;
2016-05-10 08:28:48 +02:00
error:
nbio_free(handle);
task_image_load_free(task);
free(task);
if (nbio->nbio)
free(nbio->nbio);
error_msg:
2016-05-10 08:28:48 +02:00
RARCH_ERR("[image load] Failed to open '%s': %s.\n",
fullpath, strerror(errno));
2016-05-10 08:28:48 +02:00
return false;
2016-05-10 07:54:47 +02:00
}
2016-05-27 18:14:47 +02:00
void task_image_load_free(retro_task_t *task)
2016-05-10 07:54:47 +02:00
{
nbio_handle_t *nbio = task ? (nbio_handle_t*)task->state : NULL;
2016-05-10 08:09:12 +02:00
if (nbio)
{
2016-05-27 18:14:47 +02:00
task_image_load_free_internal(nbio);
if (nbio->data)
free(nbio->data);
nbio_free(nbio->handle);
nbio->data = NULL;
nbio->handle = NULL;
free(nbio);
}
}