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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
|
// ============================================================================================
// .NET API for EJDB database library http://ejdb.org
// Copyright (C) 2012-2013 Softmotions Ltd <info@softmotions.com>
//
// This file is part of EJDB.
// EJDB is free software; you can redistribute it and/or modify it under the terms of
// the GNU Lesser General Public License as published by the Free Software Foundation; either
// version 2.1 of the License or any later version. EJDB is distributed in the hope
// that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
// License for more details.
// You should have received a copy of the GNU Lesser General Public License along with EJDB;
// if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
// Boston, MA 02111-1307 USA.
// ============================================================================================
using System;
using System.IO;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Diagnostics;
using System.Linq;
namespace Ejdb.SON {
/// <summary>
/// Various BSON processing constants and shared values.
/// </summary>
public static class BSONConstants {
static BSONConstants() {
Epoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
}
/// <summary>
/// Gets or sets the epoch.
/// </summary>
public static DateTime Epoch { get; private set; }
}
/// <summary>
/// BSON field value.
/// </summary>
[Serializable]
public sealed class BSONValue : IBSONValue {
/// <summary>
/// BSON.Type
/// </summary>
public BSONType BSONType { get; internal set; }
/// <summary>
/// BSON field key.
/// </summary>
public string Key { get; internal set; }
/// <summary>
/// Deserialized BSON field value.
/// </summary>
public object Value { get; internal set; }
public BSONValue(BSONType type, string key, object value) {
this.BSONType = type;
this.Key = key;
this.Value = value;
}
public BSONValue(BSONType type, string key) : this(type, key, null) {
}
}
/// <summary>
/// BSON document deserialized data wrapper.
/// </summary>
[Serializable]
public sealed class BSONDocument : IBSONValue {
Dictionary<string, BSONValue> _fields;
readonly List<BSONValue> _fieldslist;
readonly BSONType _type;
public BSONDocument() {
this._fields = null;
this._fieldslist = new List<BSONValue>();
}
public BSONType BSONType {
get {
throw new NotImplementedException();
}
}
public BSONDocument Add(BSONValue bv) {
_fieldslist.Add(bv);
if (_fields != null) {
_fields.Add(bv.Key, bv);
}
return this;
}
public BSONValue this[string key] {
get {
return GetBSONValue(key);
}
set {
SetBSONValue(key, value);
}
}
public BSONValue GetBSONValue(string key) {
CheckFields();
return _fields[key];
}
public void SetBSONValue(string key, BSONValue val) {
CheckFields();
var ov = _fields[key];
if (ov != null) {
ov.Key = val.Key;
ov.BSONType = val.BSONType;
ov.Value = val.Value;
} else {
_fieldslist.Add(val);
_fields[key] = val;
}
}
public object GetObjectValue(string key) {
CheckFields();
var bv = _fields[key];
return bv != null ? bv.Value : null;
}
public BSONValue SetObjectValue(string key, object value) {
throw new NotImplementedException();
}
public BSONValue DropValue(string key) {
var bv = this[key];
if (bv == null) {
return bv;
}
_fields.Remove(key);
_fieldslist.RemoveAll(x => x.Key == key);
return bv;
}
void CheckFields() {
if (_fields != null) {
return;
}
_fields = new Dictionary<string, BSONValue>(Math.Max(_fieldslist.Count + 1, 32));
foreach (var bv in _fieldslist) {
_fields.Add(bv.Key, bv);
}
}
}
public class BSONIterator : IDisposable {
BinaryReader _input;
int _doclen;
BSONType _ctype = BSONType.UNKNOWN;
string _entryKey;
int _entryLen;
bool _entryDataSkipped;
BSONValue _entryDataValue;
public int DocumentLength {
get { return this._doclen; }
private set { this._doclen = value; }
}
public BSONIterator(byte[] bbuf) : this(new MemoryStream(bbuf)) {
}
public BSONIterator(Stream input) {
if (!input.CanRead) {
Dispose();
throw new IOException("Input stream must be readable");
}
if (!input.CanSeek) {
Dispose();
throw new IOException("Input stream must be seekable");
}
this._input = new BinaryReader(input, Encoding.UTF8);
this._ctype = BSONType.EOO;
this._doclen = _input.ReadInt32();
if (this._doclen < 5) {
Dispose();
throw new InvalidBSONDataException("Unexpected end of BSON document");
}
}
~BSONIterator() {
Dispose();
}
public void Dispose() {
if (_input != null) {
_input.Close();
_input = null;
}
}
public BSONType Next() {
if (_ctype == BSONType.EOO) {
return BSONType.EOO;
}
if (_ctype != BSONType.UNKNOWN) {
SkipData();
}
byte bv = _input.ReadByte();
if (!Enum.IsDefined(typeof(BSONType), bv)) {
throw new InvalidBSONDataException("Unknown bson type: " + bv);
}
_entryDataSkipped = false;
_entryDataValue = null;
_entryKey = null;
_ctype = (BSONType) bv;
_entryLen = 0;
if (_ctype != BSONType.EOO) {
ReadKey();
}
switch (_ctype) {
case BSONType.EOO:
return BSONType.EOO;
case BSONType.UNDEFINED:
case BSONType.NULL:
_entryLen = 0;
break;
case BSONType.BOOL:
_entryLen = 1;
break;
case BSONType.INT:
_entryLen = 4;
break;
case BSONType.LONG:
case BSONType.DOUBLE:
case BSONType.TIMESTAMP:
case BSONType.DATE:
_entryLen = 8;
break;
case BSONType.OID:
_entryLen = 12;
break;
case BSONType.STRING:
case BSONType.CODE:
case BSONType.SYMBOL:
_entryLen = 4 + _input.ReadInt32();
break;
case BSONType.DBREF:
_entryLen = 4 + 12 + _input.ReadInt32();
break;
case BSONType.BINDATA:
_entryLen = 4 + 1 + _input.ReadInt32();
break;
case BSONType.OBJECT:
case BSONType.ARRAY:
case BSONType.CODEWSCOPE:
_entryLen = 4 + _input.ReadInt32();
break;
case BSONType.REGEX:
_entryLen = 0;
break;
default:
throw new InvalidBSONDataException("Unknown entry type: " + _ctype);
}
return _ctype;
}
public BSONValue FetchIteratorValue() {
if (_entryDataSkipped) {
return _entryDataValue;
}
_entryDataSkipped = true;
switch (_ctype) {
case BSONType.EOO:
case BSONType.UNDEFINED:
case BSONType.NULL:
_entryDataValue = new BSONValue(_ctype, _entryKey);
break;
case BSONType.OID:
Debug.Assert(_entryLen == 12);
_entryDataValue = new BSONValue(_ctype, _entryKey, new BSONOid(_input));
break;
case BSONType.STRING:
case BSONType.CODE:
case BSONType.SYMBOL:
{
Debug.Assert(_entryLen - 4 >= 0);
string sv = Encoding.UTF8.GetString(_input.ReadBytes(_entryLen - 4));
_entryDataValue = new BSONValue(_ctype, _entryKey, sv);
break;
}
case BSONType.BOOL:
_entryDataValue = new BSONValue(_ctype, _entryKey, _input.ReadBoolean());
break;
case BSONType.INT:
_entryDataValue = new BSONValue(_ctype, _entryKey, _input.ReadInt32());
break;
case BSONType.DOUBLE:
_entryDataValue = new BSONValue(_ctype, _entryKey, _input.ReadDouble());
break;
case BSONType.LONG:
_entryDataValue = new BSONValue(_ctype, _entryKey, _input.ReadInt64());
break;
case BSONType.TIMESTAMP:
case BSONType.DATE:
break;
}
return _entryDataValue;
}
void SkipData() {
if (_entryDataSkipped) {
return;
}
_entryDataValue = null;
_entryDataSkipped = true;
if (_ctype == BSONType.REGEX) {
SkipCString();
SkipCString();
Debug.Assert(_entryLen == 0);
} else if (_entryLen > 0) {
long cpos = _input.BaseStream.Position;
if ((cpos + _entryLen) != _input.BaseStream.Seek(_entryLen, SeekOrigin.Current)) {
throw new IOException("Inconsitent seek within input BSON stream");
}
_entryLen = 0;
}
}
string ReadKey() {
_entryKey = ReadCString();
return _entryKey;
}
string ReadCString() {
List<byte> sb = new List<byte>(64);
byte bv;
while ((bv = _input.ReadByte()) != 0x00) {
sb.Add(bv);
}
return Encoding.UTF8.GetString(sb.ToArray());
}
void SkipCString() {
while ((_input.ReadByte()) != 0x00)
;
}
}
}
|