RetroArch/tasks/task_database.c

434 lines
12 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-06-02 14:49:35 +00:00
#include <compat/strcasestr.h>
#include <compat/strl.h>
#include "../dir_list_special.h"
2015-05-05 16:49:14 +00:00
#include "../file_ops.h"
2015-05-05 16:43:51 +00:00
#include "../general.h"
#include "../runloop_data.h"
#include "tasks.h"
2015-05-05 16:43:51 +00:00
#ifdef HAVE_LIBRETRODB
2015-05-05 16:43:51 +00:00
#ifdef HAVE_ZLIB
static int zlib_compare_crc32(const char *name, const char *valid_exts,
const uint8_t *cdata, unsigned cmode, uint32_t csize, uint32_t size,
uint32_t crc32, void *userdata)
{
2015-05-24 06:06:29 +00:00
database_state_handle_t *db_state = (database_state_handle_t*)userdata;
db_state->crc = crc32;
2015-05-24 06:06:29 +00:00
strlcpy(db_state->zip_name, name, sizeof(db_state->zip_name));
#if 0
RARCH_LOG("Going to compare CRC 0x%x for %s\n", crc32, name);
#endif
2015-05-05 16:43:51 +00:00
return 1;
}
#endif
2015-05-23 19:56:17 +00:00
static int database_info_iterate_start
(database_info_handle_t *db, const char *name)
{
2015-06-12 20:37:06 +00:00
char msg[PATH_MAX_LENGTH] = {0};
snprintf(msg, sizeof(msg),
#ifdef _WIN32
"%Iu/%Iu: Scanning %s...\n",
#else
"%zu/%zu: Scanning %s...\n",
#endif
2015-05-23 19:56:17 +00:00
db->list_ptr, db->list->size, name);
if (msg[0] != '\0')
rarch_main_msg_queue_push(msg, 1, 180, true);
#if 0
2015-05-23 19:56:17 +00:00
RARCH_LOG("msg: %s\n", msg);
#endif
2015-05-23 19:56:17 +00:00
db->status = DATABASE_STATUS_ITERATE;
return 0;
}
2015-05-23 14:41:33 +00:00
static int database_info_iterate_playlist(
2015-05-23 19:56:17 +00:00
database_state_handle_t *db_state,
2015-05-05 16:43:51 +00:00
database_info_handle_t *db, const char *name)
{
2015-06-12 20:37:06 +00:00
char parent_dir[PATH_MAX_LENGTH] = {0};
2015-05-05 16:43:51 +00:00
path_parent_dir(parent_dir);
if (!strcmp(path_get_extension(name), "zip"))
{
#ifdef HAVE_ZLIB
db->type = DATABASE_TYPE_ITERATE_ZIP;
memset(&db->state, 0, sizeof(zlib_transfer_t));
db_state->zip_name[0] = '\0';
db->state.type = ZLIB_TRANSFER_INIT;
return 1;
2015-05-05 16:43:51 +00:00
#endif
}
else
{
ssize_t ret;
2015-05-23 19:56:17 +00:00
int read_from = read_file(name, (void**)&db_state->buf, &ret);
2015-05-05 16:43:51 +00:00
2015-05-05 17:13:21 +00:00
if (read_from != 1 || ret <= 0)
2015-05-05 16:43:51 +00:00
return 0;
#ifdef HAVE_ZLIB
2015-05-24 06:04:13 +00:00
db_state->crc = zlib_crc32_calculate(db_state->buf, ret);
2015-05-05 16:43:51 +00:00
#endif
db->type = DATABASE_TYPE_CRC_LOOKUP;
return 1;
2015-05-05 16:43:51 +00:00
}
2015-05-23 18:53:43 +00:00
return 0;
}
static int database_info_list_iterate_end_no_match(database_state_handle_t *db_state)
{
/* Reached end of database list, CRC match probably didn't succeed. */
db_state->list_index = 0;
db_state->entry_index = 0;
if (db_state->crc != 0)
db_state->crc = 0;
return 0;
}
2015-05-25 05:54:44 +00:00
static int database_info_iterate_next(database_info_handle_t *db)
2015-05-23 18:53:43 +00:00
{
2015-05-05 16:43:51 +00:00
db->list_ptr++;
2015-05-23 17:18:56 +00:00
if (db->list_ptr < db->list->size)
return 0;
return -1;
2015-05-05 16:43:51 +00:00
}
static int database_info_list_iterate_new(database_state_handle_t *db_state, const char *query)
2015-05-25 05:54:44 +00:00
{
const char *new_database = db_state->list->elems[db_state->list_index].data;
#if 0
2015-05-25 05:54:44 +00:00
RARCH_LOG("Check database [%d/%d] : %s\n", (unsigned)db_state->list_index,
(unsigned)db_state->list->size, new_database);
#endif
if (db_state->info)
database_info_list_free(db_state->info);
db_state->info = database_info_list_new(new_database, query);
2015-05-25 05:54:44 +00:00
return 0;
}
/* TODO/FIXME -
* * - What 'core' to bind a playlist entry to if
* we are in Load Content (Detect Core)? Let the user
* choose the core to be loaded with it upon selecting
* the playlist entry?
2015-05-26 07:04:57 +00:00
* * - Implement ZIP handling.
**/
static int database_info_list_iterate_found_match(
database_state_handle_t *db_state,
database_info_handle_t *db,
const char *zip_name
)
{
2015-06-12 20:37:06 +00:00
char db_crc[PATH_MAX_LENGTH] = {0};
char db_playlist_path[PATH_MAX_LENGTH] = {0};
char db_playlist_base_str[PATH_MAX_LENGTH] = {0};
char entry_path_str[PATH_MAX_LENGTH] = {0};
const char *db_playlist_base = NULL;
content_playlist_t *playlist = NULL;
settings_t *settings = config_get_ptr();
const char *db_path = db_state->list->elems[db_state->list_index].data;
const char *entry_path = db ? db->list->elems[db->list_ptr].data : NULL;
database_info_t *db_info_entry = &db_state->info->list[db_state->entry_index];
db_playlist_base = path_basename(db_path);
strlcpy(db_playlist_base_str, db_playlist_base, sizeof(db_playlist_base_str));
path_remove_extension(db_playlist_base_str);
strlcat(db_playlist_base_str, ".lpl", sizeof(db_playlist_base_str));
fill_pathname_join(db_playlist_path, settings->playlist_directory,
db_playlist_base_str, sizeof(db_playlist_path));
playlist = content_playlist_init(db_playlist_path, 1000);
2015-06-09 23:13:03 +00:00
snprintf(db_crc, sizeof(db_crc), "%08X|crc", db_info_entry->crc32);
2015-05-25 19:39:50 +00:00
strlcpy(entry_path_str, entry_path, sizeof(entry_path_str));
if (zip_name && zip_name[0] != '\0')
{
strlcat(entry_path_str, "#", sizeof(entry_path_str));
strlcat(entry_path_str, zip_name, sizeof(entry_path_str));
}
#if 0
RARCH_LOG("Found match in database !\n");
RARCH_LOG("Path: %s\n", db_path);
RARCH_LOG("CRC : %s\n", db_crc);
RARCH_LOG("Playlist Path: %s\n", db_playlist_path);
RARCH_LOG("Entry Path: %s\n", entry_path);
RARCH_LOG("Playlist not NULL: %d\n", playlist != NULL);
RARCH_LOG("ZIP entry: %s\n", zip_name);
RARCH_LOG("entry path str: %s\n", entry_path_str);
#endif
content_playlist_push(playlist, entry_path_str, db_info_entry->name, "DETECT", "DETECT", db_crc, db_playlist_base_str);
content_playlist_write_file(playlist);
content_playlist_free(playlist);
return 0;
}
/* End of entries in database info list and didn't find a
* match, go to the next database. */
static int database_info_list_iterate_next(
database_state_handle_t *db_state
)
{
db_state->list_index++;
db_state->entry_index = 0;
database_info_list_free(db_state->info);
db_state->info = NULL;
return 1;
}
static int database_info_iterate_crc_lookup(
database_state_handle_t *db_state,
database_info_handle_t *db,
const char *zip_entry)
{
if ((unsigned)db_state->list_index == (unsigned)db_state->list->size)
2015-05-25 05:54:44 +00:00
return database_info_list_iterate_end_no_match(db_state);
if (db_state->entry_index == 0)
{
2015-06-12 20:37:06 +00:00
char query[50] = {0};
snprintf(query, sizeof(query), "{crc: b\"%08X\"}", swap_if_big32(db_state->crc));
database_info_list_iterate_new(db_state, query);
}
if (db_state->info)
{
database_info_t *db_info_entry = &db_state->info->list[db_state->entry_index];
2015-06-09 23:13:03 +00:00
if (db_info_entry && db_info_entry->crc32)
{
2015-05-25 05:54:44 +00:00
#if 0
2015-06-09 23:13:03 +00:00
RARCH_LOG("CRC32: 0x%08X , entry CRC32: 0x%08X (%s).\n",
db_state->crc, db_info_entry->crc32, db_info_entry->name);
2015-05-25 05:54:44 +00:00
#endif
2015-06-09 23:13:03 +00:00
if (db_state->crc == db_info_entry->crc32)
database_info_list_iterate_found_match(db_state, db, zip_entry);
}
}
db_state->entry_index++;
if (db_state->entry_index >= db_state->info->count)
2015-05-25 05:54:44 +00:00
return database_info_list_iterate_next(db_state);
if (db_state->list_index < db_state->list->size)
{
/* Didn't reach the end of the database list yet,
* continue iterating. */
return 1;
}
if (db_state->info)
database_info_list_free(db_state->info);
return 0;
}
static int database_info_iterate_playlist_zip(
database_state_handle_t *db_state,
database_info_handle_t *db, const char *name)
{
bool returnerr = true;
#ifdef HAVE_ZLIB
if (db_state->crc != 0)
return database_info_iterate_crc_lookup(db_state, db, db_state->zip_name);
else
{
if (zlib_parse_file_iterate(&db->state,
&returnerr, name, NULL, zlib_compare_crc32,
(void*)db_state) != 0)
return 0;
}
#endif
return 1;
}
2015-05-23 19:56:17 +00:00
static int database_info_iterate(database_state_handle_t *state, database_info_handle_t *db)
2015-05-05 16:43:51 +00:00
{
2015-05-23 19:56:17 +00:00
const char *name = db ? db->list->elems[db->list_ptr].data : NULL;
2015-05-05 16:43:51 +00:00
if (!db || !db->list)
return -1;
if (!name)
return 0;
switch (db->type)
{
case DATABASE_TYPE_NONE:
break;
2015-05-23 14:41:33 +00:00
case DATABASE_TYPE_ITERATE:
2015-05-23 19:56:17 +00:00
return database_info_iterate_playlist(state, db, name);
case DATABASE_TYPE_ITERATE_ZIP:
return database_info_iterate_playlist_zip(state, db, name);
case DATABASE_TYPE_CRC_LOOKUP:
return database_info_iterate_crc_lookup(state, db, NULL);
2015-05-05 16:43:51 +00:00
}
return 0;
}
2015-05-23 16:45:58 +00:00
static int database_info_poll(db_handle_t *db)
{
2015-06-12 20:37:06 +00:00
char elem0[PATH_MAX_LENGTH] = {0};
char elem1[PATH_MAX_LENGTH] = {0};
2015-05-23 20:07:59 +00:00
struct string_list *str_list = NULL;
2015-05-23 16:45:58 +00:00
const char *path = msg_queue_pull(db->msg_queue);
if (!path)
return -1;
2015-05-23 20:07:59 +00:00
str_list = string_split(path, "|");
if (!str_list)
goto error;
if (str_list->size > 0)
strlcpy(elem0, str_list->elems[0].data, sizeof(elem0));
if (str_list->size > 1)
strlcpy(elem1, str_list->elems[1].data, sizeof(elem1));
if (!strcmp(elem1, "cb_db_scan_file"))
db->handle = database_info_file_init(elem0, DATABASE_TYPE_ITERATE);
else if (!strcmp(elem1, "cb_db_scan_folder"))
db->handle = database_info_dir_init(elem0, DATABASE_TYPE_ITERATE);
2015-05-23 20:07:59 +00:00
string_list_free(str_list);
2015-05-23 16:45:58 +00:00
return 0;
2015-05-23 20:07:59 +00:00
error:
if (str_list)
string_list_free(str_list);
return -1;
2015-05-23 16:45:58 +00:00
}
static void rarch_main_data_db_cleanup_state(database_state_handle_t *db_state)
{
if (!db_state)
return;
if (db_state->buf)
free(db_state->buf);
db_state->buf = NULL;
}
void rarch_main_data_db_iterate(bool is_thread, void *data)
{
2015-05-24 06:04:13 +00:00
data_runloop_t *runloop = (data_runloop_t*)data;
database_info_handle_t *db = runloop ? runloop->db.handle : NULL;
database_state_handle_t *db_state = runloop ? &runloop->db.state : NULL;
2015-05-23 19:56:17 +00:00
const char *name = db ? db->list->elems[db->list_ptr].data : NULL;
2015-05-23 16:13:23 +00:00
if (!db || !runloop)
2015-05-23 17:18:56 +00:00
goto do_poll;
switch (db->status)
{
2015-05-24 04:14:44 +00:00
case DATABASE_STATUS_ITERATE_BEGIN:
2015-05-24 06:04:13 +00:00
if (db_state && !db_state->list)
db_state->list = dir_list_new_special(NULL, DIR_LIST_DATABASES);
2015-05-24 04:14:44 +00:00
db->status = DATABASE_STATUS_ITERATE_START;
break;
2015-05-23 19:56:17 +00:00
case DATABASE_STATUS_ITERATE_START:
rarch_main_data_db_cleanup_state(db_state);
2015-05-24 06:04:13 +00:00
db_state->list_index = 0;
db_state->entry_index = 0;
2015-05-23 19:56:17 +00:00
database_info_iterate_start(db, name);
break;
case DATABASE_STATUS_ITERATE:
2015-05-23 20:46:23 +00:00
if (database_info_iterate(&runloop->db.state, db) == 0)
{
2015-05-23 20:46:23 +00:00
db->status = DATABASE_STATUS_ITERATE_NEXT;
db->type = DATABASE_TYPE_ITERATE;
}
2015-05-23 18:53:43 +00:00
break;
case DATABASE_STATUS_ITERATE_NEXT:
if (database_info_iterate_next(db) == 0)
{
2015-05-23 19:56:17 +00:00
db->status = DATABASE_STATUS_ITERATE_START;
db->type = DATABASE_TYPE_ITERATE;
}
2015-05-23 18:53:43 +00:00
else
2015-05-23 17:18:56 +00:00
{
rarch_main_msg_queue_push("Scanning of directory finished.\n", 0, 180, true);
db->status = DATABASE_STATUS_FREE;
}
break;
case DATABASE_STATUS_FREE:
2015-05-24 06:04:13 +00:00
if (db_state->list)
dir_list_free(db_state->list);
db_state->list = NULL;
rarch_main_data_db_cleanup_state(db_state);
database_info_free(db);
2015-05-23 17:18:56 +00:00
if (runloop->db.handle)
free(runloop->db.handle);
runloop->db.handle = NULL;
break;
2015-05-23 16:08:42 +00:00
default:
case DATABASE_STATUS_NONE:
2015-05-23 17:18:56 +00:00
goto do_poll;
}
return;
do_poll:
if (database_info_poll(&runloop->db) != -1)
{
if (runloop->db.handle)
2015-05-24 04:14:44 +00:00
runloop->db.handle->status = DATABASE_STATUS_ITERATE_BEGIN;
}
}
#endif