-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathClashModel.hpp
127 lines (108 loc) · 2.55 KB
/
ClashModel.hpp
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
#pragma once
struct ClashProxySpeedHistory
{
// Date time; // FIXME
uint32_t delay;
friend void from_json(const json& j, ClashProxySpeedHistory& value) {
JSON_FROM(delay);
}
};
struct ClashProxy
{
using Name = std::string; // UTF-8
enum struct Type
{
Unknown,
URLTest,
Fallback,
LoadBalance,
Selector,
Direct,
Reject,
Shadowsocks,
ShadowsocksR,
Socks5,
Http,
Vmess,
Snell,
Trojan,
Relay,
};
Name name;
Type type = Type::Unknown;
std::vector<Name> all;
std::vector<ClashProxySpeedHistory> history;
std::optional<Name> now;
friend void from_json(const json& j, ClashProxy& value) {
JSON_FROM(name);
JSON_FROM(type);
JSON_TRY_FROM(all);
JSON_FROM(history);
try { value.now.emplace(j.at("now").get<decltype(now)::value_type>()); } catch (...) {}
}
};
NLOHMANN_JSON_SERIALIZE_ENUM(ClashProxy::Type, {
{ClashProxy::Type::Unknown, nullptr},
{ClashProxy::Type::URLTest, "URLTest"},
{ClashProxy::Type::Fallback, "Fallback"},
{ClashProxy::Type::LoadBalance, "LoadBalance"},
{ClashProxy::Type::Selector, "Selector"},
{ClashProxy::Type::Direct, "Direct"},
{ClashProxy::Type::Reject, "Reject"},
{ClashProxy::Type::Shadowsocks, "Shadowsocks"},
{ClashProxy::Type::ShadowsocksR, "ShadowsocksR"},
{ClashProxy::Type::Socks5, "Socks5"},
{ClashProxy::Type::Http, "Http"},
{ClashProxy::Type::Vmess, "Vmess"},
{ClashProxy::Type::Snell, "Snell"},
{ClashProxy::Type::Trojan, "Trojan"},
{ClashProxy::Type::Relay, "Relay"},
});
struct ClashProxies
{
using MapType = std::unordered_map<ClashProxy::Name, ClashProxy>;
MapType proxies;
friend void from_json(const json& j, ClashProxies& value) {
JSON_FROM(proxies);
}
};
ClashProxies g_clashProxies;
struct ClashProvider
{
using Name = std::string; // UTF-8
enum struct Type
{
Unknown,
Proxy,
String,
};
enum struct VehicleType
{
Unknown,
HTTP,
File,
Compatible,
};
Name name;
std::vector<ClashProxy> proxies;
Type type;
VehicleType vehicleType;
};
NLOHMANN_JSON_SERIALIZE_ENUM(ClashProvider::Type, {
{ClashProvider::Type::Unknown, nullptr},
{ClashProvider::Type::Proxy, "Proxy"},
{ClashProvider::Type::String, "String"},
});
NLOHMANN_JSON_SERIALIZE_ENUM(ClashProvider::VehicleType, {
{ClashProvider::VehicleType::Unknown, nullptr},
{ClashProvider::VehicleType::HTTP, "HTTP"},
{ClashProvider::VehicleType::File, "File"},
{ClashProvider::VehicleType::Compatible, "Compatible"},
});
struct ClashProviders
{
std::map<ClashProvider::Name, ClashProvider> providers;
/*friend void from_json(const json& j, ClashProviders& value) {
JSON_FROM(providers);
}*/
};