2020-08-01 02:45:10 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2020 by William Wilgus
|
|
|
|
*
|
|
|
|
* This program 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 Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef OPEN_PLUGIN_H
|
|
|
|
#define OPEN_PLUGIN_H
|
|
|
|
|
|
|
|
/* Open_plugin module
|
|
|
|
* OP stores and retrieves plugin path and parameters by key
|
|
|
|
* from a dictionary file
|
|
|
|
*
|
|
|
|
* plugins can load other plugins
|
|
|
|
* return rb->plugin_open(path, parameter);
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __PCTOOL__
|
|
|
|
/* open_plugin path lookup */
|
|
|
|
#define OPEN_PLUGIN_DAT PLUGIN_DIR "/plugin.dat"
|
2021-10-14 03:45:00 +00:00
|
|
|
#define OPEN_RBPLUGIN_DAT PLUGIN_DIR "/rb_plugins.dat"
|
2020-08-01 02:45:10 +00:00
|
|
|
#define OPEN_PLUGIN_BUFSZ MAX_PATH
|
|
|
|
#define OPEN_PLUGIN_NAMESZ 32
|
2021-10-14 03:45:00 +00:00
|
|
|
|
|
|
|
enum {
|
|
|
|
OPEN_PLUGIN_LANG_INVALID = (-1),
|
|
|
|
OPEN_PLUGIN_LANG_IGNORE = (-2),
|
|
|
|
OPEN_PLUGIN_LANG_IGNOREALL = (-3),
|
2022-11-17 06:25:41 +00:00
|
|
|
OPEN_PLUGIN_INVALID_ENTRY = (-1),
|
|
|
|
OPEN_PLUGIN_NOT_FOUND = (-2),
|
|
|
|
OPEN_PLUGIN_NEEDS_FLUSHED = (-3),
|
2021-10-14 03:45:00 +00:00
|
|
|
};
|
|
|
|
|
2020-08-01 02:45:10 +00:00
|
|
|
struct open_plugin_entry_t
|
|
|
|
{
|
2021-10-18 05:23:07 +00:00
|
|
|
/* hash lang_id checksum need to be the first items */
|
2020-08-01 02:45:10 +00:00
|
|
|
uint32_t hash;
|
|
|
|
int32_t lang_id;
|
2021-10-18 05:23:07 +00:00
|
|
|
uint32_t checksum;
|
2020-08-01 02:45:10 +00:00
|
|
|
char name[OPEN_PLUGIN_NAMESZ+1];
|
|
|
|
/*char key[OPEN_PLUGIN_BUFSZ+1];*/
|
|
|
|
char path[OPEN_PLUGIN_BUFSZ+1];
|
|
|
|
char param[OPEN_PLUGIN_BUFSZ+1];
|
2021-10-18 05:23:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define OPEN_PLUGIN_CHECKSUM (uint32_t) \
|
|
|
|
( \
|
|
|
|
(sizeof(struct open_plugin_entry_t) << 16) + \
|
|
|
|
offsetof(struct open_plugin_entry_t, hash) + \
|
|
|
|
offsetof(struct open_plugin_entry_t, lang_id) + \
|
|
|
|
offsetof(struct open_plugin_entry_t, checksum) + \
|
|
|
|
offsetof(struct open_plugin_entry_t, name) + \
|
|
|
|
offsetof(struct open_plugin_entry_t, path) + \
|
|
|
|
offsetof(struct open_plugin_entry_t, param))
|
2020-08-01 02:45:10 +00:00
|
|
|
|
2021-10-23 06:34:18 +00:00
|
|
|
#define OPEN_PLUGIN_SEED 0x811C9DC5; //seed, 2166136261;
|
2020-08-01 02:45:10 +00:00
|
|
|
inline static void open_plugin_get_hash(const char *key, uint32_t *hash)
|
|
|
|
{
|
|
|
|
/* Calculate modified FNV1a hash of string */
|
|
|
|
const uint32_t p = 16777619;
|
2021-10-23 06:34:18 +00:00
|
|
|
*hash = OPEN_PLUGIN_SEED;
|
2020-08-01 02:45:10 +00:00
|
|
|
while(*key)
|
|
|
|
*hash = (*key++ ^ *hash) * p;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef PLUGIN
|
2022-12-10 07:44:04 +00:00
|
|
|
struct open_plugin_entry_t* open_plugin_get_entry(void);
|
2020-08-01 02:45:10 +00:00
|
|
|
uint32_t open_plugin_add_path(const char *key, const char *plugin, const char *parameter);
|
2022-12-10 07:44:04 +00:00
|
|
|
int open_plugin_load_entry(const char *key);
|
2020-08-01 02:45:10 +00:00
|
|
|
void open_plugin_browse(const char *key);
|
|
|
|
int open_plugin_run(const char *key);
|
2021-03-11 00:07:06 +00:00
|
|
|
void open_plugin_cache_flush(void); /* flush to disk */
|
2020-08-01 02:45:10 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /*ndef __PCTOOL__ */
|
|
|
|
#endif /* OPEN_PLUGIN_H */
|