RetroArch/runloop_data.c

385 lines
8.5 KiB
C
Raw Normal View History

/* RetroArch - A frontend for libretro.
* Copyright (C) 2011-2015 - 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/>.
*/
2015-03-15 01:00:11 +00:00
#include <retro_miscellaneous.h>
#ifdef HAVE_THREADS
#include <rthreads/rthreads.h>
#endif
2015-07-08 20:14:31 +00:00
#include "general.h"
#include "runloop_data.h"
#include "tasks/tasks.h"
#include "input/input_overlay.h"
#ifdef HAVE_MENU
#include "menu/menu.h"
#include "menu/menu_entries.h"
2015-06-13 17:12:10 +00:00
#include "menu/menu_input.h"
#endif
enum
{
THREAD_CODE_INIT = 0,
THREAD_CODE_DEINIT,
2015-06-26 16:35:35 +00:00
THREAD_CODE_ALIVE
} thread_code_enum;
2015-07-08 22:01:55 +00:00
typedef struct data_runloop
{
bool inited;
#ifdef HAVE_THREADS
bool thread_inited;
unsigned thread_code;
bool alive;
slock_t *lock;
slock_t *cond_lock;
scond_t *cond;
sthread_t *thread;
#endif
} data_runloop_t;
static char data_runloop_msg[PATH_MAX_LENGTH];
static struct data_runloop *g_data_runloop;
2015-07-08 22:01:55 +00:00
static data_runloop_t *rarch_main_data_get_ptr(void)
{
return g_data_runloop;
}
2015-03-20 00:43:58 +00:00
#ifdef HAVE_THREADS
static void data_runloop_thread_deinit(data_runloop_t *runloop)
2015-03-18 04:35:05 +00:00
{
2015-03-18 22:13:00 +00:00
if (!runloop->thread_inited)
{
slock_lock(runloop->cond_lock);
runloop->alive = false;
scond_signal(runloop->cond);
slock_unlock(runloop->cond_lock);
sthread_join(runloop->thread);
slock_free(runloop->lock);
slock_free(runloop->cond_lock);
2015-07-08 20:42:45 +00:00
rarch_main_data_overlay_thread_uninit();
scond_free(runloop->cond);
}
2015-03-18 22:13:00 +00:00
}
2015-03-20 00:43:58 +00:00
#endif
2015-03-18 22:13:00 +00:00
void rarch_main_data_deinit(void)
2015-03-18 22:13:00 +00:00
{
data_runloop_t *runloop = rarch_main_data_get_ptr();
2015-03-18 22:13:00 +00:00
2015-04-11 07:33:20 +00:00
if (!runloop)
2015-03-18 22:13:00 +00:00
return;
#ifdef HAVE_THREADS
2015-04-11 07:33:20 +00:00
if (runloop->thread_inited)
{
2015-04-11 07:33:20 +00:00
data_runloop_thread_deinit(runloop);
2015-04-12 05:17:55 +00:00
runloop->thread_inited = false;
runloop->thread_code = THREAD_CODE_DEINIT;
}
#endif
2015-04-11 07:33:20 +00:00
runloop->inited = false;
}
void rarch_main_data_free(void)
{
data_runloop_t *runloop = rarch_main_data_get_ptr();
rarch_main_data_nbio_uninit();
2015-07-08 20:03:23 +00:00
#ifdef HAVE_NETWORKING
2015-07-08 19:38:22 +00:00
rarch_main_data_http_uninit();
2015-07-08 20:03:23 +00:00
#endif
#ifdef HAVE_LIBRETRODB
rarch_main_data_db_uninit();
#endif
2015-04-11 07:33:20 +00:00
if (runloop)
free(runloop);
runloop = NULL;
}
static void data_runloop_iterate(bool is_thread)
{
rarch_main_data_nbio_iterate (is_thread);
2015-04-19 14:55:03 +00:00
#ifdef HAVE_RPNG
rarch_main_data_nbio_image_iterate (is_thread);
2015-04-19 14:55:03 +00:00
#endif
#ifdef HAVE_OVERLAY
rarch_main_data_overlay_iterate (is_thread);
#endif
#ifdef HAVE_NETWORKING
rarch_main_data_http_iterate (is_thread);
#endif
#ifdef HAVE_LIBRETRODB
rarch_main_data_db_iterate (is_thread);
#endif
}
2015-07-08 22:01:55 +00:00
bool rarch_main_data_active(void)
{
bool active = false;
driver_t *driver = driver_get_ptr();
#ifdef HAVE_LIBRETRODB
2015-07-08 20:03:23 +00:00
if (rarch_main_data_db_is_active())
2015-07-08 19:13:04 +00:00
active = true;
#endif
#ifdef HAVE_OVERLAY
2015-07-08 19:13:04 +00:00
if (driver && driver->overlay &&
(driver->overlay->state != OVERLAY_STATUS_ALIVE
&& driver->overlay->state != OVERLAY_STATUS_NONE))
active = true;
#endif
2015-07-08 19:13:04 +00:00
if (rarch_main_data_nbio_image_get_handle())
active = true;
if (rarch_main_data_nbio_get_handle())
active = true;
#ifdef HAVE_NETWORKING
2015-07-08 19:35:24 +00:00
if (rarch_main_data_http_get_handle())
2015-07-08 19:13:04 +00:00
active = true;
2015-07-08 19:35:24 +00:00
if (rarch_main_data_http_conn_get_handle())
2015-07-08 19:13:04 +00:00
active = true;
#endif
return active;
}
#ifdef HAVE_THREADS
static void data_thread_loop(void *data)
{
data_runloop_t *runloop = (data_runloop_t*)data;
RARCH_LOG("[Data Thread]: Initializing data thread.\n");
slock_lock(runloop->lock);
while (!runloop->thread_inited)
scond_wait(runloop->cond, runloop->lock);
slock_unlock(runloop->lock);
RARCH_LOG("[Data Thread]: Starting data thread.\n");
2015-04-12 05:17:55 +00:00
while (runloop->alive)
{
slock_lock(runloop->lock);
2015-03-18 23:13:54 +00:00
if (!runloop->alive)
2015-03-18 23:13:54 +00:00
break;
data_runloop_iterate(true);
2015-03-18 23:13:54 +00:00
2015-07-08 22:01:55 +00:00
if (!rarch_main_data_active())
rarch_sleep(10);
slock_unlock(runloop->lock);
}
2015-03-18 23:13:54 +00:00
RARCH_LOG("[Data Thread]: Stopping data thread.\n");
}
#endif
#ifdef HAVE_THREADS
2015-03-18 22:13:00 +00:00
static void rarch_main_data_thread_init(void)
{
data_runloop_t *runloop = rarch_main_data_get_ptr();
2015-04-11 07:33:20 +00:00
if (!runloop)
2015-04-10 21:17:29 +00:00
return;
2015-03-18 22:13:00 +00:00
2015-04-11 07:33:20 +00:00
runloop->lock = slock_new();
runloop->cond_lock = slock_new();
runloop->cond = scond_new();
2015-03-18 23:13:54 +00:00
2015-07-08 20:42:45 +00:00
#ifdef HAVE_OVERLAY
rarch_main_data_overlay_thread_init();
#endif
2015-04-11 07:33:20 +00:00
runloop->thread = sthread_create(data_thread_loop, runloop);
2015-04-10 21:20:48 +00:00
2015-04-11 07:33:20 +00:00
if (!runloop->thread)
2015-04-10 21:20:48 +00:00
goto error;
slock_lock(runloop->lock);
2015-04-11 07:33:20 +00:00
runloop->thread_inited = true;
runloop->alive = true;
runloop->thread_code = THREAD_CODE_ALIVE;
slock_unlock(runloop->lock);
2015-04-10 21:20:48 +00:00
return;
error:
2015-07-08 20:42:45 +00:00
data_runloop_thread_deinit(runloop);
2015-03-18 22:13:00 +00:00
}
2015-03-20 00:50:14 +00:00
#endif
void rarch_main_data_iterate(void)
{
data_runloop_t *runloop = rarch_main_data_get_ptr();
2015-03-20 18:48:23 +00:00
settings_t *settings = config_get_ptr();
(void)settings;
#ifdef HAVE_THREADS
2015-03-20 18:48:23 +00:00
if (settings->menu.threaded_data_runloop_enable)
2015-03-18 22:13:00 +00:00
{
2015-04-11 07:33:20 +00:00
switch (runloop->thread_code)
{
case THREAD_CODE_INIT:
rarch_main_data_thread_init();
break;
case THREAD_CODE_DEINIT:
2015-04-10 20:30:56 +00:00
case THREAD_CODE_ALIVE:
break;
}
2015-03-18 22:13:00 +00:00
}
#endif
2015-03-18 20:26:36 +00:00
#ifdef HAVE_OVERLAY
rarch_main_data_overlay_image_upload_iterate(false);
#endif
2015-04-19 14:55:03 +00:00
#ifdef HAVE_RPNG
rarch_main_data_nbio_image_upload_iterate(false);
2015-04-19 14:55:03 +00:00
#endif
2015-04-10 20:30:56 +00:00
if (data_runloop_msg[0] != '\0')
{
rarch_main_msg_queue_push(data_runloop_msg, 1, 10, true);
data_runloop_msg[0] = '\0';
}
#ifdef HAVE_MENU
menu_entries_refresh(MENU_ACTION_REFRESH);
#endif
#ifdef HAVE_THREADS
2015-04-11 07:33:20 +00:00
if (settings->menu.threaded_data_runloop_enable && runloop->alive)
2015-04-10 20:30:56 +00:00
return;
#endif
data_runloop_iterate(false);
2015-03-18 20:26:36 +00:00
}
2015-03-22 02:41:20 +00:00
static data_runloop_t *rarch_main_data_new(void)
2015-03-18 20:26:36 +00:00
{
2015-04-11 07:33:20 +00:00
data_runloop_t *runloop = (data_runloop_t*)calloc(1, sizeof(data_runloop_t));
2015-03-18 20:26:36 +00:00
2015-04-11 07:33:20 +00:00
if (!runloop)
return NULL;
2015-03-18 20:26:36 +00:00
2015-03-20 01:10:14 +00:00
#ifdef HAVE_THREADS
2015-04-11 07:33:20 +00:00
runloop->thread_inited = false;
runloop->alive = false;
2015-03-20 01:10:14 +00:00
#endif
2015-03-18 21:37:27 +00:00
2015-04-11 07:33:20 +00:00
runloop->inited = true;
2015-04-11 07:33:20 +00:00
return runloop;
2015-03-18 20:26:36 +00:00
}
void rarch_main_data_clear_state(void)
{
rarch_main_data_deinit();
2015-03-22 02:41:20 +00:00
rarch_main_data_free();
g_data_runloop = rarch_main_data_new();
if (!g_data_runloop)
return;
rarch_main_data_nbio_init();
2015-07-08 20:03:23 +00:00
#ifdef HAVE_NETWORKING
2015-07-08 19:35:24 +00:00
rarch_main_data_http_init();
2015-07-08 20:03:23 +00:00
#endif
#ifdef HAVE_LIBRETRODB
rarch_main_data_db_init();
#endif
2015-03-18 04:35:05 +00:00
}
2015-03-15 01:00:11 +00:00
void rarch_main_data_init_queues(void)
{
#ifdef HAVE_NETWORKING
2015-07-08 19:18:34 +00:00
rarch_main_data_http_init_msg_queue();
2015-03-15 01:00:11 +00:00
#endif
rarch_main_data_nbio_init_msg_queue();
#ifdef HAVE_LIBRETRODB
2015-07-08 19:48:58 +00:00
rarch_main_data_db_init_msg_queue();
#endif
2015-03-15 01:00:11 +00:00
}
void rarch_main_data_msg_queue_push(unsigned type,
const char *msg, const char *msg2,
unsigned prio, unsigned duration, bool flush)
{
2015-06-12 15:00:37 +00:00
char new_msg[PATH_MAX_LENGTH] = {0};
msg_queue_t *queue = NULL;
switch(type)
{
case DATA_TYPE_NONE:
break;
case DATA_TYPE_FILE:
queue = rarch_main_data_nbio_get_msg_queue_ptr();
if (!queue)
return;
snprintf(new_msg, sizeof(new_msg), "%s|%s", msg, msg2);
break;
case DATA_TYPE_IMAGE:
queue = rarch_main_data_nbio_image_get_msg_queue_ptr();
if (!queue)
return;
snprintf(new_msg, sizeof(new_msg), "%s|%s", msg, msg2);
break;
2015-03-15 18:32:11 +00:00
#ifdef HAVE_NETWORKING
case DATA_TYPE_HTTP:
2015-07-08 19:18:34 +00:00
queue = rarch_main_data_http_get_msg_queue_ptr();
snprintf(new_msg, sizeof(new_msg), "%s|%s", msg, msg2);
break;
2015-03-15 18:32:11 +00:00
#endif
2015-03-15 06:07:59 +00:00
#ifdef HAVE_OVERLAY
case DATA_TYPE_OVERLAY:
snprintf(new_msg, sizeof(new_msg), "%s|%s", msg, msg2);
2015-03-15 06:07:59 +00:00
break;
#endif
#ifdef HAVE_LIBRETRODB
case DATA_TYPE_DB:
2015-07-08 19:48:58 +00:00
queue = rarch_main_data_db_get_msg_queue_ptr();
snprintf(new_msg, sizeof(new_msg), "%s|%s", msg, msg2);
break;
2015-03-15 06:07:59 +00:00
#endif
}
if (!queue)
return;
if (flush)
msg_queue_clear(queue);
msg_queue_push(queue, new_msg, prio, duration);
}
2015-05-05 15:36:58 +00:00
2015-06-02 16:28:51 +00:00
void data_runloop_osd_msg(const char *msg, size_t len)
2015-05-05 15:36:58 +00:00
{
2015-06-02 16:28:51 +00:00
strlcpy(data_runloop_msg, msg, len);
2015-05-05 15:36:58 +00:00
}