/* Copyright (C) 2010-2017 The RetroArch team * * --------------------------------------------------------------------------------------- * The following license statement only applies to this file (libretrodb_tool.c). * --------------------------------------------------------------------------------------- * * Permission is hereby granted, free of charge, * to any person obtaining a copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation the rights to * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, * and to permit persons to whom the Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include #include #include #include "libretrodb.h" #include "rmsgpack_dom.h" int main(int argc, char ** argv) { int rv; struct rmsgpack_dom_value item; const char *command = NULL; const char *path = NULL; const char *query_exp = NULL; const char *error = NULL; libretrodb_t *db = NULL; libretrodb_cursor_t *cur = NULL; libretrodb_query_t *q = NULL; if (argc < 3) { printf("Usage: %s [extra args...]\n", argv[0]); printf("Available Commands:\n"); printf("\tlist\n"); printf("\tcreate-index \n"); printf("\tfind \n"); printf("\tget-names \n"); return 1; } command = argv[2]; path = argv[1]; db = libretrodb_new(); cur = libretrodb_cursor_new(); if (!db || !cur) goto error; if ((rv = libretrodb_open(path, db)) != 0) { printf("Could not open db file '%s': %s\n", path, strerror(-rv)); goto error; } else if (memcmp(command, "list", 4) == 0) { if ((rv = libretrodb_cursor_open(db, cur, NULL)) != 0) { printf("Could not open cursor: %s\n", strerror(-rv)); goto error; } if (argc != 3) { printf("Usage: %s list\n", argv[0]); goto error; } while (libretrodb_cursor_read_item(cur, &item) == 0) { rmsgpack_dom_value_print(&item); printf("\n"); rmsgpack_dom_value_free(&item); } } else if (memcmp(command, "find", 4) == 0) { if (argc != 4) { printf("Usage: %s find \n", argv[0]); goto error; } query_exp = argv[3]; error = NULL; q = libretrodb_query_compile(db, query_exp, strlen(query_exp), &error); if (error) { printf("%s\n", error); goto error; } if ((rv = libretrodb_cursor_open(db, cur, q)) != 0) { printf("Could not open cursor: %s\n", strerror(-rv)); goto error; } while (libretrodb_cursor_read_item(cur, &item) == 0) { rmsgpack_dom_value_print(&item); printf("\n"); rmsgpack_dom_value_free(&item); } } else if (memcmp(command, "get-names", 9) == 0) { if (argc != 4) { printf("Usage: %s get-names \n", argv[0]); goto error; } query_exp = argv[3]; error = NULL; q = libretrodb_query_compile(db, query_exp, strlen(query_exp), &error); if (error) { printf("%s\n", error); goto error; } if ((rv = libretrodb_cursor_open(db, cur, q)) != 0) { printf("Could not open cursor: %s\n", strerror(-rv)); goto error; } while (libretrodb_cursor_read_item(cur, &item) == 0) { if (item.type == RDT_MAP) //should always be true, but if false the program would segfault { unsigned i; for (i = 0; i < item.val.map.len; i++) { if (item.val.map.items[i].key.type == RDT_STRING && (strncmp(item.val.map.items[i].key.val.string.buff, "name", item.val.map.items[i].key.val.string.len) == 0)) { rmsgpack_dom_value_print(&item.val.map.items[i].value); printf("\n"); } } } rmsgpack_dom_value_free(&item); } } else if (memcmp(command, "create-index", 12) == 0) { const char * index_name, * field_name; if (argc != 5) { printf("Usage: %s create-index \n", argv[0]); goto error; } index_name = argv[3]; field_name = argv[4]; libretrodb_create_index(db, index_name, field_name); } else { printf("Unknown command %s\n", argv[2]); goto error; } libretrodb_cursor_close(cur); libretrodb_close(db); error: if (db) libretrodb_free(db); if (cur) libretrodb_cursor_free(cur); if (q) libretrodb_query_free(q); return 1; }