forked from kolod/modalarm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig.cs
More file actions
191 lines (162 loc) · 5.73 KB
/
Config.cs
File metadata and controls
191 lines (162 loc) · 5.73 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
/*
* Copyright 2017-2018 Alexandr Kolodkin
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*
* Product : Rapid SCADA
* Module : ModAlarm
* Summary : Module configuration
*
* Author : Alexandr Kolodkin
* Created : 2017
* Modified : 2018
*/
using System;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
using System.Runtime.Serialization;
using System.Text;
using System.Xml;
namespace Scada.Server.Modules
{
/// <summary>
/// Module configuration
/// <para>Конфигурация модуля</para>
/// </summary>
internal class Config
{
/// <summary>
/// Имя файла конфигурации
/// </summary>
private const string configFileName = "ModAlarm.xml";
/// <summary>
/// Список каналов и аудиофайлов
/// </summary>
public SortedDictionary<int,string> channels = new SortedDictionary<int, string>();
/// <summary>
/// Конструктор, ограничивающий создание объекта без параметров
/// </summary>
private Config()
{
}
/// <summary>
/// Конструктор
/// </summary>
public Config(string configDir)
{
fileName = ScadaUtils.NormalDir(configDir) + configFileName;
SetToDefault();
}
/// <summary>
/// Получить полное имя файла конфигурации
/// </summary>
public string fileName { get; private set; }
/// <summary>
/// Установить значения параметров конфигурации по умолчанию
/// </summary>
private void SetToDefault()
{
channels.Clear();
}
/// <summary>
/// Добавить аварию
/// </summary>
public bool AddChannel(int channel, string path)
{
if (channel < 0) return false;
if (channel > 65535) return false;
if (path == "") return false;
if (!File.Exists(path)) return false;
if (channels.ContainsKey(channel)) return false;
channels.Add(channel, path);
return true;
}
/// <summary>
/// Загрузить конфигурацию модуля
/// </summary>
public bool Load(out string errMsg)
{
SetToDefault();
try
{
errMsg = "";
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(fileName);
XmlNode root = xmlDoc.DocumentElement;
foreach (XmlNode alert in root.SelectNodes("Alarm"))
{
int channel = alert.GetChildAsInt("Channel", -1);
string soundFileName = alert.GetChildAsString("Sound", "");
AddChannel(channel, soundFileName);
}
// Конвертация настроек модуля версии 1.1 и ниже
int oldChannel = root.GetChildAsInt("Chanel", -1);
string oldSound = root.GetChildAsString("Sound", "");
if (AddChannel(oldChannel, oldSound)) Save(out errMsg);
return true;
}
catch (FileNotFoundException ex)
{
errMsg = ModPhrases.LoadModSettingsError + ": " + ex.Message +
Environment.NewLine + ModPhrases.ConfigureModule;
return false;
}
catch (Exception ex)
{
errMsg = ModPhrases.LoadModSettingsError + ": " + ex.Message;
return false;
}
}
/// <summary>
/// Сохранить конфигурацию модуля
/// </summary>
public bool Save(out string errMsg)
{
try
{
XmlDocument xmlDoc = new XmlDocument();
XmlDeclaration xmlDecl = xmlDoc.CreateXmlDeclaration("1.0", "utf-8", null);
xmlDoc.AppendChild(xmlDecl);
XmlElement root = xmlDoc.CreateElement("ModAlarm");
xmlDoc.AppendChild(root);
foreach(KeyValuePair<int, string> channel in channels)
{
XmlElement alert = xmlDoc.CreateElement("Alarm");
alert.AppendElem("Channel", channel.Key);
alert.AppendElem("Sound", channel.Value);
root.AppendChild(alert);
}
xmlDoc.Save(fileName);
errMsg = "";
return true;
}
catch (Exception ex)
{
errMsg = ModPhrases.SaveModSettingsError + ": " + ex.Message;
return false;
}
}
/// <summary>
/// Клонировать конфигурацию модуля
/// </summary>
public Config Clone()
{
Config configCopy = new Config();
configCopy.fileName = fileName;
configCopy.channels = channels;
return configCopy;
}
}
}