1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
#include "migration.hpp"
#include "options/options.hpp"
using namespace migrations;
using namespace options;
#include "api/plugin-support.hpp"
#include "compat/library-path.hpp"
struct module_names : migration
{
using dylib_ptr = Modules::dylib_ptr;
using dylib_list = Modules::dylib_list;
struct module_type {
QString name, def;
dylib_list const& list;
};
Modules m { OPENTRACK_BASE_PATH + OPENTRACK_LIBRARY_PATH, dylib_load_quiet };
module_type types[3] {
{ "tracker-dll", "pt", m.trackers() },
{ "protocol-dll", "freetrack", m.protocols() },
{ "filter-dll", "accela", m.filters() },
};
bundle b { make_bundle("modules") };
QString unique_date() const override
{
return "20180428_00";
}
QString name() const override
{
return "module names";
}
bool should_run() const override
{
for (const module_type& type : types)
{
if (!b->contains(type.name))
continue;
const QString value = b->get_variant(type.name).value<QString>();
for (const dylib_ptr& lib : type.list)
{
if (value == lib->name && value != lib->module_name)
return true;
}
}
return false;
}
void run() override
{
for (module_type& type : types)
{
if (!b->contains(type.name))
continue;
const QString value = b->get_variant(type.name).value<QString>();
bool found = false;
for (const dylib_ptr& lib : type.list)
{
if (value == lib->name && value != lib->module_name)
{
qDebug() << type.name << value << "=>" << lib->module_name;
b->store_kv(type.name, lib->module_name);
found = true;
break;
}
}
if (!found)
{
qDebug() << type.name << value << "not found";
b->store_kv(type.name, QVariant());
}
}
b->save();
}
};
OPENTRACK_MIGRATION(module_names)
|