test/run_input: allocate ConfigData in class GlobalInit

This commit is contained in:
Max Kellermann 2018-08-19 22:41:08 +02:00
parent dafa3f985a
commit 80839b5372
1 changed files with 10 additions and 7 deletions

View File

@ -20,7 +20,9 @@
#include "config.h"
#include "TagSave.hxx"
#include "tag/Tag.hxx"
#include "config/Global.hxx"
#include "config/File.hxx"
#include "config/Migrate.hxx"
#include "config/Data.hxx"
#include "input/InputStream.hxx"
#include "input/Init.hxx"
#include "input/Registry.hxx"
@ -101,22 +103,24 @@ ParseCommandLine(int argc, char **argv)
}
class GlobalInit {
ConfigData config;
EventThread io_thread;
public:
GlobalInit(Path config_path, bool verbose) {
SetLogThreshold(verbose ? LogLevel::DEBUG : LogLevel::INFO);
io_thread.Start();
config_global_init();
if (!config_path.IsNull()) {
ReadConfigFile(config, config_path);
Migrate(config);
}
if (!config_path.IsNull())
ReadConfigFile(config_path);
io_thread.Start();
#ifdef ENABLE_ARCHIVE
archive_plugin_init_all();
#endif
input_stream_global_init(GetGlobalConfig(),
input_stream_global_init(config,
io_thread.GetEventLoop());
}
@ -125,7 +129,6 @@ public:
#ifdef ENABLE_ARCHIVE
archive_plugin_deinit_all();
#endif
config_global_finish();
}
};