-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathScpMapper.cs
204 lines (160 loc) · 5.07 KB
/
ScpMapper.cs
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
using System;
using System.ComponentModel;
using System.IO;
using System.Reflection;
using System.Threading;
namespace ScpControl
{
public partial class ScpMapper : Component
{
protected static String m_FileName = "ScpMapper.xml";
protected static String m_FilePath = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) + "\\" + m_FileName;
protected FileSystemWatcher m_Watcher = new FileSystemWatcher(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), m_FileName);
protected DateTime m_Last = DateTime.Now;
protected Boolean m_Started = false;
public Boolean Started
{
get { return m_Started; }
}
public event EventHandler<DebugEventArgs> Debug = null;
protected virtual void LogDebug(String Data)
{
DebugEventArgs args = new DebugEventArgs(Data);
if (Debug != null)
{
Debug(this, args);
}
}
protected virtual void OnDebug(object sender, DebugEventArgs e)
{
if (Debug != null)
{
Debug(this, e);
}
}
protected void OnCreated(object sender, FileSystemEventArgs e)
{
Thread.Sleep(1000); Start();
m_Last = DateTime.Now;
}
protected void OnChanged(object sender, FileSystemEventArgs e)
{
if ((DateTime.Now - m_Last).TotalMilliseconds < 100) return;
Thread.Sleep(1000); Reload();
m_Last = DateTime.Now;
}
protected void OnDeleted(object sender, FileSystemEventArgs e)
{
Stop();
}
protected void OnRenamed(object sender, RenamedEventArgs e)
{
if (e.Name == m_FilePath)
{
Thread.Sleep(1000); Start();
m_Last = DateTime.Now;
}
else
{
Stop();
}
}
public ScpMapper()
{
InitializeComponent();
}
public ScpMapper(IContainer container)
{
container.Add(this);
InitializeComponent();
}
public virtual Boolean Open()
{
m_Watcher.NotifyFilter = NotifyFilters.Attributes | NotifyFilters.CreationTime | NotifyFilters.DirectoryName | NotifyFilters.FileName | NotifyFilters.LastAccess | NotifyFilters.LastWrite | NotifyFilters.Security | NotifyFilters.Size;
m_Watcher.Created += OnCreated;
m_Watcher.Changed += OnChanged;
m_Watcher.Deleted += OnDeleted;
m_Watcher.Renamed += OnRenamed;
return true;
}
public virtual Boolean Start()
{
if (!m_Started)
{
try
{
m_Watcher.EnableRaisingEvents = true;
m_Watcher.EnableRaisingEvents = m_Started = true;
}
catch (Exception e) { LogDebug(String.Format("-- Mapper.Start [{0}]", e.Message)); }
}
return m_Started;
}
public virtual Boolean Stop()
{
if (m_Started)
{
try
{
m_Started = false;
userMapper.Shutdown();
}
catch (Exception e) { LogDebug(String.Format("-- Mapper.Stop [{0}]", e.Message)); }
}
return !m_Started;
}
public virtual Boolean Close()
{
m_Watcher.EnableRaisingEvents = false;
m_Watcher.Created -= OnCreated;
m_Watcher.Changed -= OnChanged;
m_Watcher.Deleted -= OnDeleted;
m_Watcher.Renamed -= OnRenamed;
return true;
}
public virtual Boolean Reload()
{
Boolean Updated = false;
if (m_Started)
{
try
{
m_Watcher.EnableRaisingEvents = Updated = true;
}
catch (Exception e) { LogDebug(String.Format("-- Mapper.Reload [{0}]", e.Message)); }
}
return Updated;
}
public virtual Boolean Remap(DsModel Type, Int32 PadId, String MacAddr, Byte[] Input, Byte[] Output)
{
Boolean Mapped = false;
if (m_Started)
{
try
{
Mapped = userMapper.Remap(Type, PadId, MacAddr, Input, Output);
}
catch { }
}
return Mapped;
}
public virtual String[] Profiles
{
get { return userMapper.Profiles; }
}
public virtual String Active
{
get { return userMapper.Active; }
set
{
new Thread(() =>
{
try
{
}
catch { }
}).Start();
}
}
}
}