1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-05 09:48:42 +00:00
RetroArch/libretro-db
2015-06-25 17:29:44 +02:00
..
compat Rename libretrodb to libretro-db 2015-02-19 00:47:19 +01:00
.ycm_extra_conf.py Rename libretrodb to libretro-db 2015-02-19 00:47:19 +01:00
bintree.c (libretro-db) Style nits 2015-06-03 16:57:51 +02:00
bintree.h Rename libretrodb to libretro-db 2015-02-19 00:47:19 +01:00
check_style Rename libretrodb to libretro-db 2015-02-19 00:47:19 +01:00
compat_fnmatch.c Rename libretrodb to libretro-db 2015-02-19 00:47:19 +01:00
crustydiff Rename libretrodb to libretro-db 2015-02-19 00:47:19 +01:00
dat_converter Rename libretrodb to libretro-db 2015-02-19 00:47:19 +01:00
dat_converter.c (libretro-db) Style nits 2015-06-03 16:57:51 +02:00
dat_converter.lua Rename libretrodb to libretro-db 2015-02-19 00:47:19 +01:00
db_parser.c Rename libretrodb to libretro-db 2015-02-19 00:47:19 +01:00
libretrodb_endian.h Rename libretrodb to libretro-db 2015-02-19 00:47:19 +01:00
libretrodb_tool.c Cleanup some strcmps 2015-06-14 19:42:25 +02:00
libretrodb.c (libretro-db) Fix query leaks 2015-06-10 14:48:33 -03:00
libretrodb.h use buffered io with databases 2015-05-30 13:17:11 -03:00
lua_common.c Cleanups 2015-04-04 21:10:36 +02:00
lua_common.h Rename libretrodb to libretro-db 2015-02-19 00:47:19 +01:00
lua_converter.c Rename libretrodb to libretro-db 2015-02-19 00:47:19 +01:00
Makefile Rename libretrodb to libretro-db 2015-02-19 00:47:19 +01:00
query.c (libretrodb) Cleanups 2015-06-25 17:29:44 +02:00
query.h Rename libretrodb to libretro-db 2015-02-19 00:47:19 +01:00
README.md Rename libretrodb to libretro-db 2015-02-19 00:47:19 +01:00
retro_endianness.h Rename libretrodb to libretro-db 2015-02-19 00:47:19 +01:00
retro_inline.h Rename libretrodb to libretro-db 2015-02-19 00:47:19 +01:00
rmsgpack_dom.c (libretrodb) Cleanups 2015-06-25 17:29:44 +02:00
rmsgpack_dom.h use buffered io with databases 2015-05-30 13:17:11 -03:00
rmsgpack_test.c Rename libretrodb to libretro-db 2015-02-19 00:47:19 +01:00
rmsgpack.c (libretro-db) Style nits 2015-06-03 16:57:51 +02:00
rmsgpack.h use buffered io with databases 2015-05-30 13:17:11 -03:00
testlib.c Rename libretrodb to libretro-db 2015-02-19 00:47:19 +01:00
tests.lua Rename libretrodb to libretro-db 2015-02-19 00:47:19 +01:00
uncrustify Rename libretrodb to libretro-db 2015-02-19 00:47:19 +01:00
uncrustify.cfg Rename libretrodb to libretro-db 2015-02-19 00:47:19 +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}"