wanshenmean
2026-03-13 58376d519aeb76ef78d38b737c0c57f8d982fb52
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
using WIDESEAWCS_S7Simulator.Core.Entities;
using WIDESEAWCS_S7Simulator.Core.Enums;
using WIDESEAWCS_S7Simulator.Core.Interfaces;
using WIDESEAWCS_S7Simulator.Core.Persistence;
using WIDESEAWCS_S7Simulator.Core.Server;
 
namespace WIDESEAWCS_S7Simulator.Core.Manager
{
    /// <summary>
    /// 仿真器实例管理器实现
    /// 管理多个S7服务器实例的生命周期,提供线程安全的CRUD操作
    /// </summary>
    public class SimulatorInstanceManager : ISimulatorInstanceManager
    {
        private readonly ConcurrentDictionary<string, IS7ServerInstance> _instances = new();
        private readonly IPersistenceService _persistenceService;
        private readonly ILogger<SimulatorInstanceManager> _logger;
        private readonly ILoggerFactory _loggerFactory;
 
        /// <inheritdoc/>
        public event EventHandler<InstanceStateChangedEventArgs>? InstanceStateChanged;
 
        /// <summary>
        /// 构造函数
        /// </summary>
        /// <param name="persistenceService">持久化服务</param>
        /// <param name="logger">日志记录器</param>
        /// <param name="loggerFactory">日志工厂</param>
        public SimulatorInstanceManager(
            IPersistenceService persistenceService,
            ILogger<SimulatorInstanceManager> logger,
            ILoggerFactory loggerFactory)
        {
            _persistenceService = persistenceService ?? throw new ArgumentNullException(nameof(persistenceService));
            _logger = logger ?? throw new ArgumentNullException(nameof(logger));
            _loggerFactory = loggerFactory ?? throw new ArgumentNullException(nameof(loggerFactory));
        }
 
        /// <inheritdoc/>
        public IReadOnlyList<IS7ServerInstance> GetAllInstances()
        {
            return _instances.Values.ToList().AsReadOnly();
        }
 
        /// <inheritdoc/>
        public IS7ServerInstance? GetInstance(string instanceId)
        {
            if (string.IsNullOrWhiteSpace(instanceId))
            {
                return null;
            }
 
            _instances.TryGetValue(instanceId, out var instance);
            return instance;
        }
 
        /// <inheritdoc/>
        public bool InstanceExists(string instanceId)
        {
            return !string.IsNullOrWhiteSpace(instanceId) && _instances.ContainsKey(instanceId);
        }
 
        /// <inheritdoc/>
        public async Task<IS7ServerInstance> CreateInstanceAsync(InstanceConfig config)
        {
            if (config == null)
            {
                throw new ArgumentNullException(nameof(config));
            }
 
            // 如果没有提供ID,生成新的GUID
            if (string.IsNullOrWhiteSpace(config.Id))
            {
                config.Id = Guid.NewGuid().ToString("N");
                _logger.LogDebug("为实例生成新ID: {InstanceId}", config.Id);
            }
 
            // 检查ID是否已存在
            if (_instances.ContainsKey(config.Id))
            {
                throw new InvalidOperationException($"实例ID {config.Id} 已存在");
            }
 
            try
            {
                // 创建实例
                var instanceLogger = _loggerFactory.CreateLogger<S7ServerInstance>();
                var instance = new S7ServerInstance(config, instanceLogger);
 
                // 添加到字典
                if (!_instances.TryAdd(config.Id, instance))
                {
                    throw new InvalidOperationException($"无法将实例 {config.Id} 添加到管理器");
                }
 
                // 保存配置
                await _persistenceService.SaveInstanceConfigAsync(config);
 
                // 触发状态变化事件
                OnInstanceStateChanged(new InstanceStateChangedEventArgs
                {
                    InstanceId = config.Id,
                    OldStatus = InstanceStatus.Stopped,
                    NewStatus = InstanceStatus.Stopped,
                    InstanceState = instance.GetState()
                });
 
                _logger.LogInformation("已创建实例 {InstanceId} ({InstanceName})", config.Id, config.Name);
                return instance;
            }
            catch (Exception ex)
            {
                _logger.LogError(ex, "创建实例 {InstanceId} 时发生错误", config.Id);
                throw;
            }
        }
 
        /// <inheritdoc/>
        public async Task<bool> StartInstanceAsync(string instanceId)
        {
            if (string.IsNullOrWhiteSpace(instanceId))
            {
                _logger.LogWarning("尝试启动实例时提供了空ID");
                return false;
            }
 
            if (!_instances.TryGetValue(instanceId, out var instance))
            {
                _logger.LogWarning("尝试启动不存在的实例 {InstanceId}", instanceId);
                return false;
            }
 
            try
            {
                var oldState = instance.GetState();
                var oldStatus = oldState.Status;
 
                // 启动实例
                var success = instance.Start();
 
                if (success)
                {
                    var newState = instance.GetState();
 
                    // 触发状态变化事件
                    OnInstanceStateChanged(new InstanceStateChangedEventArgs
                    {
                        InstanceId = instanceId,
                        OldStatus = oldStatus,
                        NewStatus = newState.Status,
                        InstanceState = newState
                    });
 
                    _logger.LogInformation("实例 {InstanceId} 已启动", instanceId);
                }
                else
                {
                    _logger.LogWarning("实例 {InstanceId} 启动失败", instanceId);
                }
 
                return success;
            }
            catch (Exception ex)
            {
                _logger.LogError(ex, "启动实例 {InstanceId} 时发生异常", instanceId);
                return false;
            }
        }
 
        /// <inheritdoc/>
        public async Task StopInstanceAsync(string instanceId)
        {
            if (string.IsNullOrWhiteSpace(instanceId))
            {
                _logger.LogWarning("尝试停止实例时提供了空ID");
                return;
            }
 
            if (!_instances.TryGetValue(instanceId, out var instance))
            {
                _logger.LogWarning("尝试停止不存在的实例 {InstanceId}", instanceId);
                return;
            }
 
            try
            {
                var oldState = instance.GetState();
                var oldStatus = oldState.Status;
 
                // 停止实例
                instance.Stop();
 
                // 同步内存数据到持久化存储
                await _persistenceService.SaveMemoryDataAsync(instanceId, instance.MemoryStore);
 
                var newState = instance.GetState();
 
                // 触发状态变化事件
                OnInstanceStateChanged(new InstanceStateChangedEventArgs
                {
                    InstanceId = instanceId,
                    OldStatus = oldStatus,
                    NewStatus = newState.Status,
                    InstanceState = newState
                });
 
                _logger.LogInformation("实例 {InstanceId} 已停止", instanceId);
            }
            catch (Exception ex)
            {
                _logger.LogError(ex, "停止实例 {InstanceId} 时发生异常", instanceId);
            }
        }
 
        /// <inheritdoc/>
        public async Task<bool> RestartInstanceAsync(string instanceId)
        {
            if (string.IsNullOrWhiteSpace(instanceId))
            {
                _logger.LogWarning("尝试重启实例时提供了空ID");
                return false;
            }
 
            if (!_instances.TryGetValue(instanceId, out var instance))
            {
                _logger.LogWarning("尝试重启不存在的实例 {InstanceId}", instanceId);
                return false;
            }
 
            try
            {
                var oldState = instance.GetState();
                var oldStatus = oldState.Status;
 
                // 重启实例
                var success = instance.Restart();
 
                if (success)
                {
                    var newState = instance.GetState();
 
                    // 触发状态变化事件
                    OnInstanceStateChanged(new InstanceStateChangedEventArgs
                    {
                        InstanceId = instanceId,
                        OldStatus = oldStatus,
                        NewStatus = newState.Status,
                        InstanceState = newState
                    });
 
                    _logger.LogInformation("实例 {InstanceId} 已重启", instanceId);
                }
                else
                {
                    _logger.LogWarning("实例 {InstanceId} 重启失败", instanceId);
                }
 
                return success;
            }
            catch (Exception ex)
            {
                _logger.LogError(ex, "重启实例 {InstanceId} 时发生异常", instanceId);
                return false;
            }
        }
 
        /// <inheritdoc/>
        public async Task DeleteInstanceAsync(string instanceId, bool deleteConfig = true)
        {
            if (string.IsNullOrWhiteSpace(instanceId))
            {
                _logger.LogWarning("尝试删除实例时提供了空ID");
                return;
            }
 
            if (!_instances.TryRemove(instanceId, out var instance))
            {
                _logger.LogWarning("尝试删除不存在的实例 {InstanceId}", instanceId);
                return;
            }
 
            try
            {
                var oldState = instance.GetState();
 
                // 停止实例
                instance.Stop();
 
                // 释放实例资源
                instance.Dispose();
 
                // 删除配置文件
                if (deleteConfig)
                {
                    await _persistenceService.DeleteInstanceConfigAsync(instanceId);
                }
 
                // 触发状态变化事件
                OnInstanceStateChanged(new InstanceStateChangedEventArgs
                {
                    InstanceId = instanceId,
                    OldStatus = oldState.Status,
                    NewStatus = InstanceStatus.Stopped,
                    InstanceState = oldState
                });
 
                _logger.LogInformation("实例 {InstanceId} 已删除", instanceId);
            }
            catch (Exception ex)
            {
                _logger.LogError(ex, "删除实例 {InstanceId} 时发生异常", instanceId);
            }
        }
 
        /// <inheritdoc/>
        public InstanceState? GetInstanceState(string instanceId)
        {
            if (string.IsNullOrWhiteSpace(instanceId))
            {
                return null;
            }
 
            if (!_instances.TryGetValue(instanceId, out var instance))
            {
                return null;
            }
 
            return instance.GetState();
        }
 
        /// <inheritdoc/>
        public IReadOnlyList<InstanceState> GetAllInstanceStates()
        {
            return _instances.Values
                .Select(i => i.GetState())
                .ToList()
                .AsReadOnly();
        }
 
        /// <inheritdoc/>
        public async Task LoadSavedInstancesAsync(bool autoStart = true)
        {
            try
            {
                _logger.LogInformation("开始加载已保存的实例配置...");
 
                // 加载所有配置
                var configs = await _persistenceService.LoadAllInstanceConfigsAsync();
 
                if (configs == null || configs.Count == 0)
                {
                    _logger.LogInformation("没有找到已保存的实例配置");
                    return;
                }
 
                _logger.LogInformation("找到 {Count} 个已保存的实例配置", configs.Count);
 
                foreach (var config in configs)
                {
                    try
                    {
                        // 创建实例
                        var instanceLogger = _loggerFactory.CreateLogger<S7ServerInstance>();
                        var instance = new S7ServerInstance(config, instanceLogger);
 
                        // 添加到字典
                        if (_instances.TryAdd(config.Id, instance))
                        {
                            // 加载内存数据
                            try
                            {
                                await _persistenceService.LoadMemoryDataAsync(config.Id, instance.MemoryStore);
                                _logger.LogDebug("已加载实例 {InstanceId} 的内存数据", config.Id);
                            }
                            catch (Exception ex)
                            {
                                _logger.LogWarning(ex, "加载实例 {InstanceId} 的内存数据时发生警告", config.Id);
                            }
 
                            // 如果配置了自动启动,则启动实例
                            if (autoStart && config.AutoStart)
                            {
                                _logger.LogInformation("自动启动实例 {InstanceId} ({InstanceName})", config.Id, config.Name);
                                var success = instance.Start();
                                if (success)
                                {
                                    _logger.LogInformation("实例 {InstanceId} 自动启动成功", config.Id);
                                }
                                else
                                {
                                    _logger.LogWarning("实例 {InstanceId} 自动启动失败", config.Id);
                                }
                            }
 
                            // 触发状态变化事件
                            OnInstanceStateChanged(new InstanceStateChangedEventArgs
                            {
                                InstanceId = config.Id,
                                OldStatus = InstanceStatus.Stopped,
                                NewStatus = instance.State.Status,
                                InstanceState = instance.GetState()
                            });
 
                            _logger.LogInformation("已加载实例 {InstanceId} ({InstanceName})", config.Id, config.Name);
                        }
                        else
                        {
                            _logger.LogWarning("实例 {InstanceId} 已存在,跳过加载", config.Id);
                        }
                    }
                    catch (Exception ex)
                    {
                        _logger.LogError(ex, "加载实例 {InstanceId} 时发生错误", config.Id);
                    }
                }
 
                _logger.LogInformation("实例加载完成,共加载 {Count} 个实例", _instances.Count);
            }
            catch (Exception ex)
            {
                _logger.LogError(ex, "加载已保存的实例时发生异常");
            }
        }
 
        /// <inheritdoc/>
        public async Task StopAllInstancesAsync()
        {
            _logger.LogInformation("开始停止所有实例...");
 
            var instanceIds = _instances.Keys.ToList();
 
            foreach (var instanceId in instanceIds)
            {
                try
                {
                    await StopInstanceAsync(instanceId);
                }
                catch (Exception ex)
                {
                    _logger.LogError(ex, "停止实例 {InstanceId} 时发生异常", instanceId);
                }
            }
 
            _logger.LogInformation("所有实例已停止");
        }
 
        /// <inheritdoc/>
        public int GetRunningInstanceCount()
        {
            return _instances.Values.Count(i => i.State.Status == InstanceStatus.Running);
        }
 
        /// <inheritdoc/>
        public int GetTotalInstanceCount()
        {
            return _instances.Count;
        }
 
        /// <summary>
        /// 触发实例状态变化事件
        /// </summary>
        /// <param name="e">事件参数</param>
        protected virtual void OnInstanceStateChanged(InstanceStateChangedEventArgs e)
        {
            InstanceStateChanged?.Invoke(this, e);
        }
    }
}