-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTypableMap.cs
234 lines (198 loc) · 5.67 KB
/
TypableMap.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
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using Misuzilla.Net.Irc;
using Misuzilla.Applications.TwitterIrcGateway;
using Misuzilla.Applications.TwitterIrcGateway.AddIns;
using Misuzilla.Applications.TwitterIrcGateway.AddIns.TypableMap;
using TypableMap;
namespace Spica.Applications.TwitterIrcGateway.AddIns.Bind
{
#region Repository
public interface ITypableMapGenericRepository<T>
{
void SetSize(Int32 size);
String Add(T value);
Boolean TryGetValue(String typableMapId, out T value);
}
public class TypableMapGenericMemoryRepository<T> : ITypableMapGenericRepository<T>
{
private TypableMap<T> _typableMap;
public TypableMapGenericMemoryRepository(Int32 size)
{
_typableMap = new TypableMap<T>(size);
}
public void SetSize(int size)
{
_typableMap = new TypableMap<T>(size);
}
public String Add(T value)
{
return _typableMap.Add(value);
}
public Boolean TryGetValue(String typableMapId, out T value)
{
return _typableMap.TryGetValue(typableMapId, out value);
}
}
public class TypableMapStatusRepositoryWrapper : ITypableMapGenericRepository<Status>
{
private ITypableMapStatusRepository _repository;
public TypableMapStatusRepositoryWrapper(ITypableMapStatusRepository repository)
{
_repository = repository;
}
public void SetSize(int size)
{
_repository.SetSize(size);
}
public string Add(Status value)
{
return _repository.Add(value);
}
public bool TryGetValue(string typableMapId, out Status value)
{
return _repository.TryGetValue(typableMapId, out value);
}
}
#endregion
#region Factory
public interface ITypableMapGenericRepositoryFactory<T>
{
ITypableMapGenericRepository<T> Create(Int32 size);
}
public class TypableMapGenericMemoryRepositoryFactory<T> : ITypableMapGenericRepositoryFactory<T>
{
public ITypableMapGenericRepository<T> Create(Int32 size)
{
return new TypableMapGenericMemoryRepository<T>(size);
}
}
#endregion
public interface ITypableMapGenericCommand<T>
{
String CommandName { get; }
Boolean Process(TypableMapGenericCommandProcessor<T> processor, PrivMsgMessage msg, T value, String args);
}
public class TypableMapGenericCommandProcessor<T>
{
private Int32 _keySize;
private ITypableMapGenericRepositoryFactory<T> _factory;
private Dictionary<String, ITypableMapGenericCommand<T>> _commands;
private Regex _regex;
public Session Session { get; private set; }
public Object State { get; private set; }
public ITypableMapGenericRepository<T> TypableMap { get; private set; }
public Int32 TypableMapKeySize
{
get
{
return _keySize;
}
set
{
if (value < 1)
value = 1;
if (_keySize != value)
{
_keySize = value;
TypableMap = _factory.Create(_keySize);
}
}
}
public TypableMapGenericCommandProcessor(ITypableMapGenericRepositoryFactory<T> factory, Session session, Int32 keySize, Object state)
{
Session = session;
State = state;
_keySize = keySize;
_commands = new Dictionary<String, ITypableMapGenericCommand<T>>(StringComparer.InvariantCultureIgnoreCase);
_factory = factory;
TypableMap = factory.Create(keySize);
}
private void UpdateRegex()
{
List<String> keys = new List<string>();
foreach (var key in _commands.Keys)
keys.Add(Regex.Escape(key));
_regex = new Regex(@"^\s*(?<cmd>" + (String.Join("|", keys.ToArray())) + @")\s+(?<tid>[^\s]+)(\s*|\s+(?<args>.*))$", RegexOptions.IgnoreCase);
}
public ITypableMapGenericCommand<T> AddCommand(ITypableMapGenericCommand<T> command)
{
_commands[command.CommandName] = command;
UpdateRegex();
return command;
}
public Boolean RemoveCommand(ITypableMapGenericCommand<T> command)
{
return RemoveCommand(command.CommandName);
}
public Boolean RemoveCommand(String command)
{
Boolean retVal = _commands.Remove(command);
if (_commands.Count != 0)
{
UpdateRegex();
}
return retVal;
}
public Boolean Process(PrivMsgMessage message)
{
if (_commands.Count == 0)
return false;
Match match = _regex.Match(message.Content);
if (match.Success)
{
T value;
if (TypableMap.TryGetValue(match.Groups["tid"].Value, out value))
{
ITypableMapGenericCommand<T> command = _commands[match.Groups["cmd"].Value];
command.Process(this, message, value, match.Groups["args"].Value);
}
else
{
Session.SendServer(new NoticeMessage
{
Receiver = message.Receiver,
Content = "エラー: 指定された TypableMap の ID は存在しません。"
});
}
return true; // 握りつぶす
}
return false;
}
}
#region Command
public class NoticeCommand<T> : ITypableMapGenericCommand<T>
{
private String _name;
private Func<T, String> _func;
public string CommandName { get { return _name; } }
public NoticeCommand(String name, Func<T, String> func)
{
_name = name;
_func = func;
}
public bool Process(TypableMapGenericCommandProcessor<T> processor, PrivMsgMessage msg, T value, string args)
{
processor.Session.SendServer(new NoticeMessage
{
Receiver = msg.Receiver,
Content = _func(value)
});
return true;
}
}
public class PermalinkCommand<T> : NoticeCommand<T>
{
public PermalinkCommand(Func<T, String> func)
: base("u", func) { }
}
public class HomelinkCommand<T> : NoticeCommand<T>
{
public HomelinkCommand(Func<T, String> func)
: base("h", func) { }
}
#endregion
}