- 修改 VariableValueChangedEventArgs 类:
- 移除了 VariableId、VariableName、NewValue 和 UpdateTime 属性
- 添加了 Variable(VariableDto 类型)和 OldValue 属性
- 更新了构造函数以接收 VariableDto 对象和旧值
- 更新事件触发代码:
- 修改了 UpdateViewProcessor.cs 中的事件触发代码,改为传递 VariableDto 对象和旧值
- 更新事件处理代码:
- 修改了 DataEventService.cs 中的事件处理逻辑,改为访问 e.Variable 属性
- 修改了 VariableHistoryViewModel.cs 中的事件处理逻辑,改为使用 e.Variable 属性
131 lines
4.7 KiB
C#
131 lines
4.7 KiB
C#
using System.Collections.ObjectModel;
|
||
using AutoMapper;
|
||
using CommunityToolkit.Mvvm.ComponentModel;
|
||
using CommunityToolkit.Mvvm.Messaging;
|
||
using DMS.Application.DTOs;
|
||
using DMS.Application.Events;
|
||
using DMS.Application.Interfaces;
|
||
using DMS.Core.Enums;
|
||
using DMS.Core.Events;
|
||
using DMS.Core.Models;
|
||
using DMS.Message;
|
||
using DMS.WPF.Interfaces;
|
||
using DMS.WPF.ViewModels.Items;
|
||
using Microsoft.Extensions.Logging;
|
||
|
||
namespace DMS.WPF.Services;
|
||
|
||
/// <summary>
|
||
/// 数据事件服务类,负责处理数据变更事件和消息传递。
|
||
/// </summary>
|
||
public class DataEventService : IDataEventService
|
||
{
|
||
private readonly IMapper _mapper;
|
||
private readonly IDataStorageService _dataStorageService;
|
||
private readonly IEventService _eventService;
|
||
private readonly IAppDataCenterService _appDataCenterService;
|
||
private readonly IWPFDataService _wpfDataService;
|
||
private readonly ILogger<DataEventService> _logger;
|
||
|
||
/// <summary>
|
||
/// DataEventService类的构造函数。
|
||
/// </summary>
|
||
public DataEventService(IMapper mapper,
|
||
IDataStorageService dataStorageService,
|
||
IEventService eventService,
|
||
IAppDataCenterService appDataCenterService,
|
||
IWPFDataService wpfDataService,
|
||
ILogger<DataEventService> logger)
|
||
{
|
||
_mapper = mapper;
|
||
_dataStorageService = dataStorageService;
|
||
_eventService = eventService;
|
||
_appDataCenterService = appDataCenterService;
|
||
_wpfDataService = wpfDataService;
|
||
_logger = logger;
|
||
|
||
_logger?.LogInformation("正在初始化 DataEventService");
|
||
|
||
// 监听变量值变更事件
|
||
_eventService.OnVariableValueChanged += OnVariableValueChanged;
|
||
_appDataCenterService.DataLoaderService.OnLoadDataCompleted += OnLoadDataCompleted;
|
||
// 监听日志变更事件
|
||
// _appDataCenterService.OnLogChanged += _logDataService.OnNlogChanged;
|
||
|
||
_logger?.LogInformation("DataEventService 初始化完成");
|
||
}
|
||
|
||
private void OnLoadDataCompleted(object? sender, DataLoadCompletedEventArgs e)
|
||
{
|
||
_logger?.LogDebug("接收到数据加载完成事件,成功: {IsSuccess}", e.IsSuccess);
|
||
|
||
if (e.IsSuccess)
|
||
{
|
||
_logger?.LogInformation("开始加载所有数据项");
|
||
|
||
_wpfDataService.DeviceDataService.LoadAllDevices();
|
||
_logger?.LogDebug("设备数据加载完成");
|
||
|
||
_wpfDataService.VariableTableDataService.LoadAllVariableTables();
|
||
_logger?.LogDebug("变量表数据加载完成");
|
||
|
||
_wpfDataService.VariableDataService.LoadAllVariables();
|
||
_logger?.LogDebug("变量数据加载完成");
|
||
|
||
_wpfDataService.MenuDataService.LoadAllMenus();
|
||
_logger?.LogDebug("菜单数据加载完成");
|
||
|
||
_wpfDataService.MqttDataService.LoadMqttServers();
|
||
_logger?.LogDebug("MQTT服务器数据加载完成");
|
||
|
||
_wpfDataService.LogDataService.LoadAllLog();
|
||
_logger?.LogDebug("日志数据加载完成");
|
||
|
||
_logger?.LogInformation("所有数据项加载完成");
|
||
}
|
||
else
|
||
{
|
||
_logger?.LogWarning("数据加载失败");
|
||
}
|
||
}
|
||
|
||
/// <summary>
|
||
/// 处理变量值变更事件。
|
||
/// </summary>
|
||
private void OnVariableValueChanged(object? sender, VariableValueChangedEventArgs e)
|
||
{
|
||
_logger?.LogDebug("接收到变量值变更事件,变量ID: {VariableId}, 新值: {NewValue}, 更新时间: {UpdateTime}",
|
||
e.Variable.Id, e.Variable.DataValue, e.Variable.UpdatedAt);
|
||
|
||
// 在UI线程上更新变量值
|
||
App.Current.Dispatcher.BeginInvoke(new Action(() =>
|
||
{
|
||
// 查找并更新对应的变量
|
||
if (_dataStorageService.Variables.TryGetValue(e.Variable.Id,out var variableToUpdate))
|
||
{
|
||
variableToUpdate.DataValue = e.Variable.DataValue;
|
||
variableToUpdate.DisplayValue = e.Variable.DisplayValue;
|
||
variableToUpdate.UpdatedAt = e.Variable.UpdatedAt;
|
||
}
|
||
else
|
||
{
|
||
_logger?.LogWarning("在变量存储中找不到ID为 {VariableId} 的变量,无法更新值", e.Variable.Id);
|
||
}
|
||
}));
|
||
}
|
||
|
||
|
||
|
||
/// <summary>
|
||
/// 处理LoadMessage消息。
|
||
/// </summary>
|
||
public async Task Receive(LoadMessage message)
|
||
{
|
||
_logger?.LogDebug("接收到LoadMessage消息,消息类型: {MessageType}", message.GetType().Name);
|
||
|
||
// 这里可以添加加载消息处理的逻辑
|
||
// 目前是空实现,但已记录接收到消息的信息
|
||
|
||
_logger?.LogDebug("LoadMessage消息处理完成");
|
||
}
|
||
} |