-
Notifications
You must be signed in to change notification settings - Fork 4
/
Repository.cs
241 lines (213 loc) · 4.99 KB
/
Repository.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
235
236
237
238
239
240
241
/* Date: 28.8.2014, Time: 0:00 */
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Xml;
using System.Xml.Linq;
using System.Xml.Serialization;
namespace AlbLib
{
public abstract class Repository<T> : IRepository, IList<T>, IEnumerable<T> where T : IGameResource
{
private T[] cacheBuffer;
public bool Cache{get;set;}
public Repository()
{
cacheBuffer = new T[0];
Cache = true;
}
Type IRepository.DataType{
get{
return typeof(T);
}
}
object IRepository.Open(object id)
{
return this.Open(id);
}
object IRepository.Open(int id)
{
return this.Open(id);
}
public abstract PathInfo Path{get;}
public virtual T Open(object id)
{
if(id is int) return Open((int)id);
throw new NotImplementedException();
}
public T Open(int id)
{
if(Cache)
{
if(cacheBuffer.Length <= id)
{
Array.Resize(ref cacheBuffer, id+1);
}else{
if(cacheBuffer[id] != null)
{
return cacheBuffer[id];
}
}
return cacheBuffer[id] = GetEntry(id);
}
return GetEntry(id);
}
protected abstract T GetEntry(int id);
public IEnumerator<T> GetEnumerator()
{
foreach(var pair in this.IndexEnumerate())
{
yield return pair.Value;
}
}
IEnumerator IEnumerable.GetEnumerator()
{
return this.GetEnumerator();
}
public T this[int id]
{
get{
return Open(id);
}
set{
throw new NotImplementedException();
}
}
public virtual int Count {
get {
int c = 0;
foreach(var e in this)c++;
return c;
}
}
bool ICollection<T>.IsReadOnly {
get {
return true;
}
}
int IList<T>.IndexOf(T item)
{
throw new NotImplementedException();
}
void IList<T>.Insert(int index, T item)
{
throw new NotImplementedException();
}
void IList<T>.RemoveAt(int index)
{
throw new NotImplementedException();
}
void ICollection<T>.Add(T item)
{
throw new NotImplementedException();
}
void ICollection<T>.Clear()
{
throw new NotImplementedException();
}
bool ICollection<T>.Contains(T item)
{
foreach(var elem in this)
{
if(elem.Equals(item)) return true;
}
return false;
}
void ICollection<T>.CopyTo(T[] array, int arrayIndex)
{
foreach(var pair in this.IndexEnumerate())
{
array[arrayIndex+pair.Key-1] = pair.Value;
}
}
bool ICollection<T>.Remove(T item)
{
throw new NotImplementedException();
}
public IEnumerable<KeyValuePair<int,T>> IndexEnumerate()
{
int last = 0;
foreach(var pair in GetPairEnumerator().OrderBy(p => p.Key).Distinct(PairEqualityComparer.Instance))
{
if(pair.Key > last+1)
{
for(int i = last+1; i < pair.Key; i++)
{
yield return new KeyValuePair<int,T>(i, default(T));
}
}
yield return pair;
last = pair.Key;
}
}
private class PairEqualityComparer : IEqualityComparer<KeyValuePair<int,T>>
{
public static readonly PairEqualityComparer Instance = new PairEqualityComparer();
private PairEqualityComparer()
{
}
public int GetHashCode(KeyValuePair<int,T> obj)
{
return obj.Key;
}
public bool Equals(KeyValuePair<int, T> x, KeyValuePair<int, T> y)
{
return x.Key == y.Key;
}
}
protected abstract IEnumerable<KeyValuePair<int,T>> GetPairEnumerator();
private static readonly XNamespace xsi = "http://www.w3.org/2001/XMLSchema-instance";
private static readonly XNamespace xsd = "http://www.w3.org/2001/XMLSchema";
public XDocument ToXml()
{
string type = null;
return SetType(new XDocument(
new XElement(
"repository",
new XAttribute(XNamespace.Xmlns+"xsi", xsi),
new XAttribute(XNamespace.Xmlns+"xsd", xsd),
this.IndexEnumerate().SelectMany(p => ToXml(p.Key, p.Value, out type))
)
), type);
}
private XDocument SetType(XDocument doc, string type)
{
doc.Root.SetAttributeValue("type", type);
return doc;
}
private List<XNode> ToXml(int index, T entry, out string type)
{
var ret = new List<XNode>();
var elem = SerializeEntry(entry);
type = null;
ret.Add(new XComment(index.ToString()));
if(elem == null)
{
ret.Add(new XElement("entry", new XAttribute(xsi+"nil", true)));
}else{
type = elem.Name.ToString();
foreach(var attr in elem.Attributes(XNamespace.Xmlns+"xsi").Concat(elem.Attributes(XNamespace.Xmlns+"xsd")))
{
attr.Remove();
}
elem.Name = "entry";
ret.Add(elem);
}
return ret;
}
private XElement SerializeEntry(T entry)
{
if(entry == null) return null;
if(entry is StringRepository.StringResource) return new XElement("string", entry.ToString());
XmlSerializer ser = new XmlSerializer(typeof(T));
MemoryStream buffer = new MemoryStream();
XmlWriter writer = XmlWriter.Create(buffer);
ser.Serialize(writer, entry);
buffer.Seek(0, SeekOrigin.Begin);
XmlReader reader = XmlReader.Create(buffer);
return XElement.Load(reader);
}
}
}