mirror of
https://github.com/owntone/owntone-server.git
synced 2025-11-09 05:34:58 -05:00
Merge pull request #748 from chme/conf_deprecated
[conf] Gracefully handle the change of config options for modifying playlists
This commit is contained in:
@@ -180,6 +180,8 @@ static cfg_opt_t sec_mpd[] =
|
||||
CFG_INT("port", 6600, CFGF_NONE),
|
||||
CFG_INT("http_port", 0, CFGF_NONE),
|
||||
CFG_BOOL("clear_queue_on_stop_disable", cfg_false, CFGF_NONE),
|
||||
CFG_BOOL("allow_modifying_stored_playlists", cfg_false, CFGF_NODEFAULT | CFGF_DEPRECATED),
|
||||
CFG_STR("default_playlist_directory", NULL, CFGF_NODEFAULT | CFGF_DEPRECATED),
|
||||
CFG_END()
|
||||
};
|
||||
|
||||
@@ -204,6 +206,19 @@ uid_t runas_uid;
|
||||
gid_t runas_gid;
|
||||
|
||||
|
||||
static void
|
||||
logger_confuse(cfg_t *cfg, const char *format, va_list args)
|
||||
{
|
||||
char fmt[80];
|
||||
|
||||
if (cfg && cfg->name && cfg->line)
|
||||
snprintf(fmt, sizeof(fmt), "[%s:%d] %s\n", cfg->name, cfg->line, format);
|
||||
else
|
||||
snprintf(fmt, sizeof(fmt), "%s\n", format);
|
||||
|
||||
DVPRINTF(E_LOG, L_CONF, fmt, args);
|
||||
}
|
||||
|
||||
static int
|
||||
cb_loglevel(cfg_t *cfg, cfg_opt_t *opt, const char *value, void *result)
|
||||
{
|
||||
@@ -353,6 +368,8 @@ conffile_load(char *file)
|
||||
|
||||
cfg = cfg_init(toplvl_cfg, CFGF_NONE);
|
||||
|
||||
cfg_set_error_function(cfg, logger_confuse);
|
||||
|
||||
ret = cfg_parse(cfg, file);
|
||||
|
||||
if (ret == CFG_FILE_ERROR)
|
||||
|
||||
11
src/logger.c
11
src/logger.c
@@ -174,6 +174,17 @@ DPRINTF(int severity, int domain, const char *fmt, ...)
|
||||
va_end(ap);
|
||||
}
|
||||
|
||||
void
|
||||
DVPRINTF(int severity, int domain, const char *fmt, va_list ap)
|
||||
{
|
||||
// If domain and severity do not match the current log configuration, return early to
|
||||
// safe some unnecessary code execution (tiny performance gain)
|
||||
if (logger_initialized && (!((1 << domain) & logdomains) || (severity > threshold)))
|
||||
return;
|
||||
|
||||
vlogger(severity, domain, fmt, ap);
|
||||
}
|
||||
|
||||
void
|
||||
logger_ffmpeg(void *ptr, int level, const char *fmt, va_list ap)
|
||||
{
|
||||
|
||||
@@ -52,6 +52,9 @@
|
||||
void
|
||||
DPRINTF(int severity, int domain, const char *fmt, ...) __attribute__((format(printf, 3, 4)));
|
||||
|
||||
void
|
||||
DVPRINTF(int severity, int domain, const char *fmt, va_list ap);
|
||||
|
||||
void
|
||||
logger_ffmpeg(void *ptr, int level, const char *fmt, va_list ap);
|
||||
|
||||
|
||||
15
src/mpd.c
15
src/mpd.c
@@ -4848,6 +4848,21 @@ int mpd_init(void)
|
||||
if (pl_dir)
|
||||
default_pl_dir = safe_asprintf("/file:%s", pl_dir);
|
||||
|
||||
/* Handle deprecated config options */
|
||||
if (0 < cfg_opt_size(cfg_getopt(cfg_getsec(cfg, "mpd"), "allow_modifying_stored_playlists")))
|
||||
{
|
||||
DPRINTF(E_LOG, L_MPD, "Found deprecated option 'allow_modifying_stored_playlists' in section 'mpd', please update configuration file (move option to section 'library').\n");
|
||||
allow_modifying_stored_playlists = cfg_getbool(cfg_getsec(cfg, "mpd"), "allow_modifying_stored_playlists");
|
||||
}
|
||||
if (0 < cfg_opt_size(cfg_getopt(cfg_getsec(cfg, "mpd"), "default_playlist_directory")))
|
||||
{
|
||||
DPRINTF(E_LOG, L_MPD, "Found deprecated option 'default_playlist_directory' in section 'mpd', please update configuration file (move option to section 'library').\n");
|
||||
free(default_pl_dir);
|
||||
pl_dir = cfg_getstr(cfg_getsec(cfg, "mpd"), "default_playlist_directory");
|
||||
if (pl_dir)
|
||||
default_pl_dir = safe_asprintf("/file:%s", pl_dir);
|
||||
}
|
||||
|
||||
DPRINTF(E_INFO, L_MPD, "mpd thread init\n");
|
||||
|
||||
ret = pthread_create(&tid_mpd, NULL, mpd, NULL);
|
||||
|
||||
Reference in New Issue
Block a user