-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfigManager.cs
More file actions
211 lines (181 loc) · 6.3 KB
/
ConfigManager.cs
File metadata and controls
211 lines (181 loc) · 6.3 KB
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
using System.Text.Json;
namespace MidiForwarder
{
public partial class ConfigManager
{
private readonly string configFilePath;
private AppConfig config = new();
private static readonly JsonSerializerOptions jsonOptions = new()
{
WriteIndented = true,
PropertyNameCaseInsensitive = true
};
public AppConfig Config => config ?? new AppConfig();
public ConfigManager()
{
configFilePath = Path.Combine(
Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData),
"MidiForwarder",
"config.json"
);
LoadConfig();
}
private void LoadConfig()
{
try
{
if (File.Exists(configFilePath))
{
var json = File.ReadAllText(configFilePath);
config = JsonSerializer.Deserialize<AppConfig>(json) ?? new AppConfig();
}
else
{
config = new AppConfig();
}
}
catch
{
config = new AppConfig();
}
}
public void SaveConfig()
{
try
{
var directory = Path.GetDirectoryName(configFilePath);
if (!string.IsNullOrEmpty(directory) && !Directory.Exists(directory))
{
Directory.CreateDirectory(directory);
}
var json = JsonSerializer.Serialize(config, jsonOptions);
File.WriteAllText(configFilePath, json);
}
catch (Exception ex)
{
// 配置保存失败时不抛出异常
System.Diagnostics.Debug.WriteLine($"保存配置失败: {ex.Message}");
}
}
public void UpdateSelectedDevices(string inputDevice, string outputDevice)
{
config.SelectedInputDevice = inputDevice;
config.SelectedOutputDevice = outputDevice;
SaveConfig();
}
// 从设备信息字符串中解析ID,格式: "[ID] 设备名称"
public static int? ParseDeviceId(string deviceInfo)
{
if (string.IsNullOrEmpty(deviceInfo)) return null;
try
{
var match = MyRegex().Match(deviceInfo);
if (match.Success && int.TryParse(match.Groups[1].Value, out int id))
{
return id;
}
}
catch { }
return null;
}
// 从设备信息字符串中获取设备名称(不含ID)
public static string ParseDeviceName(string deviceInfo)
{
if (string.IsNullOrEmpty(deviceInfo)) return "";
try
{
var match = MyRegex1().Match(deviceInfo);
if (match.Success)
{
return match.Groups[1].Value.Trim();
}
}
catch { }
return deviceInfo;
}
public void UpdateAutoConnect(bool autoConnect)
{
config.AutoConnectOnStartup = autoConnect;
SaveConfig();
}
public void UpdateMinimizeToTrayOnClose(bool minimizeToTrayOnClose)
{
config.MinimizeToTrayOnClose = minimizeToTrayOnClose;
SaveConfig();
}
public void SetTrayPromptShown()
{
config.HasShownTrayPrompt = true;
SaveConfig();
}
public void UpdateLanguage(string language)
{
config.Language = language;
SaveConfig();
}
public void UpdateAutoCheckUpdate(bool autoCheck)
{
config.AutoCheckUpdate = autoCheck;
SaveConfig();
}
public void UpdateLastUpdateCheck(DateTime checkTime)
{
config.LastUpdateCheck = checkTime;
SaveConfig();
}
public void UpdateIgnoredVersion(string? version)
{
config.IgnoredVersion = version;
SaveConfig();
}
/// <summary>
/// 添加设备到有线设备排除名单(防重复)
/// </summary>
/// <param name="deviceName">设备名称</param>
/// <returns>是否成功添加(false表示已存在)</returns>
public bool AddToWiredDeviceExclusions(string deviceName)
{
if (string.IsNullOrWhiteSpace(deviceName)) return false;
// 获取纯设备名称(不含ID)
var pureName = ParseDeviceName(deviceName);
if (string.IsNullOrWhiteSpace(pureName)) return false;
// 检查是否已存在(不区分大小写)
if (config.WiredDeviceExclusions.Any(e =>
string.Equals(e, pureName, StringComparison.OrdinalIgnoreCase)))
{
return false; // 已存在
}
config.WiredDeviceExclusions.Add(pureName);
SaveConfig();
return true;
}
/// <summary>
/// 从有线设备排除名单中移除设备
/// </summary>
public bool RemoveFromWiredDeviceExclusions(string deviceName)
{
if (string.IsNullOrWhiteSpace(deviceName)) return false;
var pureName = ParseDeviceName(deviceName);
var existing = config.WiredDeviceExclusions.FirstOrDefault(e =>
string.Equals(e, pureName, StringComparison.OrdinalIgnoreCase));
if (existing != null)
{
config.WiredDeviceExclusions.Remove(existing);
SaveConfig();
return true;
}
return false;
}
/// <summary>
/// 获取有线设备排除名单
/// </summary>
public List<string> GetWiredDeviceExclusions()
{
return [.. config.WiredDeviceExclusions];
}
[System.Text.RegularExpressions.GeneratedRegex(@"^\[(\d+)\]")]
private static partial System.Text.RegularExpressions.Regex MyRegex();
[System.Text.RegularExpressions.GeneratedRegex(@"^\[\d+\]\s*(.+)$")]
private static partial System.Text.RegularExpressions.Regex MyRegex1();
}
}