using System; using System.Collections.Generic; using System.IO; using System.Text.Json; using System.Windows.Forms; using DH.Commons.Enums; using DH.Devices.Devices; using DH.Devices.PLC; namespace DH.Commons.Helper { // 配置数据模型 public class AppConfig { public List Cameras { get; set; } = new List(); public List PLCs { get; set; } = new List(); public List Detections { get; set; } = new List(); } // 配置管理工具类 public static class ConfigManager { private static readonly JsonSerializerOptions _jsonOptions = new JsonSerializerOptions { WriteIndented = true, PropertyNamingPolicy = JsonNamingPolicy.CamelCase, IgnoreNullValues = true }; // 默认路径配置 private static readonly string DefaultConfigDir = Path.Combine( Application.StartupPath, "configs" ); public static readonly string DefaultConfigPath = Path.Combine( DefaultConfigDir, "appsettings.json" ); /// /// 保存配置文件(自动处理目录和备份) /// /// 配置对象 /// 可选文件路径 public static void SaveConfig(AppConfig config, string filePath = null) { try { // 使用默认路径如果未指定 filePath ??= DefaultConfigPath; // 确保配置目录存在 var configDir = Path.GetDirectoryName(filePath); if (!Directory.Exists(configDir)) { Directory.CreateDirectory(configDir); } // 备份已有配置 if (File.Exists(filePath)) { BackupConfig(filePath); } // 序列化并保存 string json = JsonSerializer.Serialize(config, _jsonOptions); File.WriteAllText(filePath, json); } catch (Exception ex) { throw new InvalidOperationException("配置保存失败", ex); } } /// /// 加载配置文件 /// /// 可选文件路径 /// 配置对象 public static AppConfig LoadConfig(string filePath = null) { try { filePath ??= DefaultConfigPath; if (!File.Exists(filePath)) { return new AppConfig(); // 返回空配置而不是null } string json = File.ReadAllText(filePath); return JsonSerializer.Deserialize(json, _jsonOptions); } catch (Exception ex) { throw new InvalidOperationException("配置加载失败", ex); } } /// /// 创建带时间戳的备份文件 /// private static void BackupConfig(string originalPath) { try { // 创建备份目录 var backupDir = Path.Combine( Path.GetDirectoryName(originalPath), "backups" ); if (!Directory.Exists(backupDir)) { Directory.CreateDirectory(backupDir); } // 生成带时间戳的文件名 string timestamp = DateTime.Now.ToString("yyyyMMdd_HHmmss"); string fileName = $"{Path.GetFileNameWithoutExtension(originalPath)}_" + $"{timestamp}" + $"{Path.GetExtension(originalPath)}"; // 执行备份 File.Copy( originalPath, Path.Combine(backupDir, fileName), overwrite: true ); } catch (Exception ex) { throw new InvalidOperationException("配置备份失败", ex); } } /// /// 创建新的配置对象 /// public static AppConfig CreateConfig( List cameras = null, List plcs = null, List detections = null) { return new AppConfig { Cameras = cameras ?? new List(), PLCs = plcs ?? new List(), Detections = detections ?? new List() }; } } }