2015-01-27 17:09:19 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2016-01-10 03:06:50 +00:00
|
|
|
* Copyright (C) 2011-2016 - Daniel De Matteis
|
2015-01-27 17:09:19 +00:00
|
|
|
* Copyright (C) 2013-2015 - Jason Fetters
|
2016-10-27 15:47:10 +00:00
|
|
|
* Copyright (C) 2016 - Brad Parker
|
2016-09-18 04:38:59 +00:00
|
|
|
*
|
2015-01-27 17:09:19 +00:00
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DATABASE_INFO_H_
|
|
|
|
#define DATABASE_INFO_H_
|
|
|
|
|
2015-02-23 00:32:50 +00:00
|
|
|
#include <stdint.h>
|
2015-01-27 17:09:19 +00:00
|
|
|
#include <stddef.h>
|
2016-02-04 19:56:22 +00:00
|
|
|
|
2016-03-20 15:14:40 +00:00
|
|
|
#include <file/archive_file.h>
|
2016-06-03 01:22:35 +00:00
|
|
|
#include <retro_common_api.h>
|
2016-02-04 19:56:22 +00:00
|
|
|
|
2016-06-03 01:22:35 +00:00
|
|
|
RETRO_BEGIN_DECLS
|
2015-01-27 17:09:19 +00:00
|
|
|
|
2015-04-14 07:27:55 +00:00
|
|
|
enum database_status
|
2015-04-14 06:10:12 +00:00
|
|
|
{
|
2015-04-14 07:27:55 +00:00
|
|
|
DATABASE_STATUS_NONE = 0,
|
|
|
|
DATABASE_STATUS_ITERATE,
|
2015-05-24 04:14:44 +00:00
|
|
|
DATABASE_STATUS_ITERATE_BEGIN,
|
2015-05-23 19:56:17 +00:00
|
|
|
DATABASE_STATUS_ITERATE_START,
|
2015-05-23 18:53:43 +00:00
|
|
|
DATABASE_STATUS_ITERATE_NEXT,
|
2015-06-26 14:04:42 +00:00
|
|
|
DATABASE_STATUS_FREE
|
2015-04-14 07:27:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum database_type
|
|
|
|
{
|
|
|
|
DATABASE_TYPE_NONE = 0,
|
2015-05-23 14:41:33 +00:00
|
|
|
DATABASE_TYPE_ITERATE,
|
2016-09-18 04:38:59 +00:00
|
|
|
DATABASE_TYPE_ITERATE_ARCHIVE,
|
2016-06-29 13:07:12 +00:00
|
|
|
DATABASE_TYPE_ITERATE_LUTRO,
|
2015-09-22 13:22:15 +00:00
|
|
|
DATABASE_TYPE_SERIAL_LOOKUP,
|
2015-06-26 14:04:42 +00:00
|
|
|
DATABASE_TYPE_CRC_LOOKUP
|
2015-04-14 06:10:12 +00:00
|
|
|
};
|
|
|
|
|
2016-09-29 08:40:25 +00:00
|
|
|
|
2015-02-16 06:25:40 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
2015-04-14 07:27:55 +00:00
|
|
|
enum database_status status;
|
|
|
|
enum database_type type;
|
2015-02-16 06:25:40 +00:00
|
|
|
size_t list_ptr;
|
|
|
|
struct string_list *list;
|
2016-01-24 21:17:11 +00:00
|
|
|
file_archive_transfer_t state;
|
2015-04-14 07:27:55 +00:00
|
|
|
} database_info_handle_t;
|
2015-02-16 06:25:40 +00:00
|
|
|
|
2015-01-27 17:09:19 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
2015-01-29 00:32:35 +00:00
|
|
|
char *name;
|
2015-06-07 16:55:58 +00:00
|
|
|
char *rom_name;
|
|
|
|
char *serial;
|
2015-01-27 17:09:19 +00:00
|
|
|
char *description;
|
2016-02-04 14:20:56 +00:00
|
|
|
char *genre;
|
2015-01-27 17:09:19 +00:00
|
|
|
char *publisher;
|
2015-06-09 22:53:31 +00:00
|
|
|
struct string_list *developer;
|
2015-01-27 17:09:19 +00:00
|
|
|
char *origin;
|
|
|
|
char *franchise;
|
2015-01-27 18:20:39 +00:00
|
|
|
char *edge_magazine_review;
|
|
|
|
char *bbfc_rating;
|
|
|
|
char *elspa_rating;
|
|
|
|
char *esrb_rating;
|
|
|
|
char *pegi_rating;
|
|
|
|
char *cero_rating;
|
2015-01-28 10:08:44 +00:00
|
|
|
char *enhancement_hw;
|
2015-06-09 23:13:03 +00:00
|
|
|
uint32_t crc32;
|
2015-02-02 03:03:46 +00:00
|
|
|
char *sha1;
|
|
|
|
char *md5;
|
2015-06-07 16:55:58 +00:00
|
|
|
unsigned size;
|
2015-02-02 03:41:31 +00:00
|
|
|
unsigned famitsu_magazine_rating;
|
2015-01-27 18:20:39 +00:00
|
|
|
unsigned edge_magazine_rating;
|
|
|
|
unsigned edge_magazine_issue;
|
|
|
|
unsigned max_users;
|
|
|
|
unsigned releasemonth;
|
|
|
|
unsigned releaseyear;
|
2016-02-04 10:55:08 +00:00
|
|
|
unsigned tgdb_rating;
|
2015-01-27 20:05:40 +00:00
|
|
|
int analog_supported;
|
|
|
|
int rumble_supported;
|
2016-02-03 12:35:59 +00:00
|
|
|
int coop_supported;
|
2015-01-27 17:09:19 +00:00
|
|
|
void *userdata;
|
|
|
|
} database_info_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
database_info_t *list;
|
|
|
|
size_t count;
|
|
|
|
} database_info_list_t;
|
|
|
|
|
2016-09-29 09:03:59 +00:00
|
|
|
typedef struct database_state_handle
|
|
|
|
{
|
|
|
|
database_info_list_t *info;
|
|
|
|
struct string_list *list;
|
|
|
|
size_t list_index;
|
|
|
|
size_t entry_index;
|
|
|
|
uint32_t crc;
|
|
|
|
uint32_t archive_crc;
|
|
|
|
uint8_t *buf;
|
2016-10-27 07:32:07 +00:00
|
|
|
char archive_name[255];
|
2016-09-29 09:03:59 +00:00
|
|
|
char serial[4096];
|
|
|
|
} database_state_handle_t;
|
|
|
|
|
2015-04-14 07:27:55 +00:00
|
|
|
database_info_list_t *database_info_list_new(const char *rdb_path,
|
|
|
|
const char *query);
|
2015-01-27 17:09:19 +00:00
|
|
|
|
|
|
|
void database_info_list_free(database_info_list_t *list);
|
|
|
|
|
2015-06-09 16:53:18 +00:00
|
|
|
database_info_handle_t *database_info_dir_init(const char *dir,
|
2015-04-14 07:27:55 +00:00
|
|
|
enum database_type type);
|
2015-02-16 06:53:27 +00:00
|
|
|
|
2015-06-09 17:01:24 +00:00
|
|
|
database_info_handle_t *database_info_file_init(const char *path,
|
|
|
|
enum database_type type);
|
|
|
|
|
2016-09-29 08:43:38 +00:00
|
|
|
void database_info_set_type(database_info_handle_t *handle, enum database_type type);
|
|
|
|
|
2016-09-29 08:59:50 +00:00
|
|
|
const char *database_info_get_current_element_name(database_info_handle_t *handle);
|
|
|
|
|
2016-09-29 09:03:59 +00:00
|
|
|
const char *database_info_get_current_name(database_state_handle_t *handle);
|
|
|
|
|
2016-09-29 08:40:25 +00:00
|
|
|
enum database_type database_info_get_type(database_info_handle_t *handle);
|
|
|
|
|
2015-06-09 16:53:18 +00:00
|
|
|
void database_info_free(database_info_handle_t *handle);
|
2015-02-16 06:53:27 +00:00
|
|
|
|
2015-05-24 17:36:28 +00:00
|
|
|
int database_info_build_query(
|
|
|
|
char *query, size_t len, const char *label, const char *path);
|
|
|
|
|
2016-02-04 19:58:53 +00:00
|
|
|
/* NOTE: Allocates memory, it is the caller's responsibility to free the
|
|
|
|
* memory after it is no longer required. */
|
2015-09-23 13:11:35 +00:00
|
|
|
char *bin_to_hex_alloc(const uint8_t *data, size_t len);
|
|
|
|
|
2016-06-03 01:22:35 +00:00
|
|
|
RETRO_END_DECLS
|
2015-01-27 17:09:19 +00:00
|
|
|
|
|
|
|
#endif /* CORE_INFO_H_ */
|