1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-05 09:48:42 +00:00
RetroArch/libretro-db
Rob Loach b0a2df41dd
libretro-db: Ignore compiled binaries
This makes it so that the compiled libretro-db binaries are ignored from git.
2018-04-14 14:08:28 -04:00
..
lua Add hint defines to libretro.h 2017-12-11 12:53:47 +01:00
.gitignore libretro-db: Ignore compiled binaries 2018-04-14 14:08:28 -04:00
bintree.c Header update #1 2017-01-22 13:40:32 +01:00
bintree.h Header update #1 2017-01-22 13:40:32 +01:00
c_converter_test.sh (libretro-db) c_converter: implement a binary search tree, improves 2016-01-24 03:16:25 +01:00
c_converter.c Update c_converter with libretro-common vfs changes 2017-12-20 20:15:33 -05:00
dat_converter Change this back 2016-01-26 08:41:07 +01:00
libretrodb_tool.c Clean up trailing whitespace 2017-12-12 00:24:18 -08:00
libretrodb.c Don't use mmap for libretrodb - using mmap seems 2018-02-13 07:34:19 +01:00
libretrodb.h Header update #1 2017-01-22 13:40:32 +01:00
Makefile Update c_converter with libretro-common vfs changes 2017-12-20 20:15:33 -05:00
query.c Clean up trailing whitespace 2017-12-12 00:24:18 -08:00
query.h Header update #1 2017-01-22 13:40:32 +01:00
README.md Add option to search libretro databases and only print game name 2017-11-15 16:42:22 -08:00
rmsgpack_dom.c Clean up trailing whitespace 2017-12-12 00:24:18 -08:00
rmsgpack_dom.h Header update #1 2017-01-22 13:40:32 +01:00
rmsgpack_test.c Add hint defines to libretro.h 2017-12-11 12:53:47 +01:00
rmsgpack.c Header update #1 2017-01-22 13:40:32 +01:00
rmsgpack.h Header update #1 2017-01-22 13:40:32 +01:00

libretrodb

A small read only database Mainly to be used by retroarch

Usage

Files specified later in the chain will override earlier ones if the same key exists multiple times.

To list out the content of a db libretrodb_tool <db file> list To create an index libretrodb_tool <db file> create-index <index name> <field name> To find an entry with an index libretrodb_tool <db file> find <index name> <value>

lua converters

In order to write you own converter you must have a lua file that implements the following functions:

-- this function gets called before the db is created and should validate the
-- arguments and set up the ground for db insertion
function init(...)
	local args = {...}
	local script_name = args[1]
end

-- this is in iterator function. It is called before each insert.
-- the function should return a table for insertion or nil when there are no
-- more records to insert.
function get_value()
	return {
		key = "value", -- will be saved as string
		num = 3, -- will be saved as int
		bin = binary("some string"), -- will be saved as binary
		unum = uint(3), -- will be saved as uint
		some_bool = true, -- will be saved as bool
	}
end

dat file converter

To convert a dat file use:

dat_converter <db file> <dat file>

If you want to merge multiple dat files you need to run:

dat_converter <db file> <match key> <dat file> ...

for example:

dat_converter snes.rdb rom.crc snes1.dat snes2.dat

Query examples

Some examples of queries you can use with libretrodbtool:

  1. Glob pattern matching Usecase : Search for all games starting with 'Street Fighter' in the 'name' field (glob pattern matching)

libretrodb_tool <db file> find "{'name':glob('Street Fighter*')}"

  1. Combined number matching query Usecase: Search for all games released on October 1995.

libretrodb_tool <db file> find "{'releasemonth':10,'releaseyear':1995}"

  1. Names only search Usecase: Search for all games released on October 1995, wont print checksums, filename or rom size, only the game name.

libretrodb_tool <db file> get-names "{'releasemonth':10,'releaseyear':1995}"

Compiling the Database

Use libretro-super to compile the entire database:

git clone git@github.com:libretro/libretro-super.git
cd libretro-super
./libretro-fetch.sh retroarch
./libretro-build-database.sh