forked from zeromq/clrzmq4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ZMessage.cs
379 lines (322 loc) · 6.36 KB
/
ZMessage.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
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
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace ZeroMQ
{
/// <summary>
/// A single or multi-part message, sent or received via a <see cref="ZSocket"/>.
/// </summary>
public class ZMessage : IList<ZFrame>, ICloneable, IDisposable
{
private List<ZFrame> _frames;
/// <summary>
/// Initializes a new instance of the <see cref="ZMessage"/> class.
/// Creates an empty message.
/// </summary>
public ZMessage()
{
_frames = new List<ZFrame>();
}
/// <summary>
/// Initializes a new instance of the <see cref="ZMessage"/> class.
/// Creates a message that contains the given <see cref="ZFrame"/> objects.
/// </summary>
/// <param name="frames">A collection of <see cref="ZFrame"/> objects to be stored by this <see cref="ZMessage"/>.</param>
/// <exception cref="ArgumentNullException"><paramref name="frames"/> is null.</exception>
public ZMessage(IEnumerable<ZFrame> frames)
{
if (frames == null)
{
throw new ArgumentNullException("frames");
}
_frames = new List<ZFrame>(frames);
}
public void Dispose()
{
Dispose(true);
}
protected virtual void Dispose(bool disposing)
{
if (_frames != null)
{
foreach (ZFrame frame in _frames)
{
frame.Dispose();
}
}
_frames = null;
}
public void Dismiss()
{
if (_frames != null)
{
foreach (ZFrame frame in _frames)
{
frame.Dismiss();
}
}
_frames = null;
}
public void ReplaceAt(int index, ZFrame replacement)
{
ReplaceAt(index, replacement, true);
}
public ZFrame ReplaceAt(int index, ZFrame replacement, bool dispose)
{
ZFrame old = _frames[index];
_frames[index] = replacement;
if (dispose)
{
old.Dispose();
return null;
}
return old;
}
#region IList implementation
public int IndexOf(ZFrame item)
{
return _frames.IndexOf(item);
}
public void Prepend(ZFrame item)
{
Insert(0, item);
}
public void Insert(int index, ZFrame item)
{
_frames.Insert(index, item);
}
/// <summary>
/// Removes ZFrames. Note: Disposes the ZFrame.
/// </summary>
/// <returns>The <see cref="ZeroMQ.ZFrame"/>.</returns>
public void RemoveAt(int index)
{
RemoveAt(index, true);
}
/// <summary>
/// Removes ZFrames.
/// </summary>
/// <returns>The <see cref="ZeroMQ.ZFrame"/>.</returns>
/// <param name="dispose">If set to <c>false</c>, do not dispose the ZFrame.</param>
public ZFrame RemoveAt(int index, bool dispose)
{
ZFrame frame = _frames[index];
_frames.RemoveAt(index);
if (dispose)
{
frame.Dispose();
return null;
}
return frame;
}
public ZFrame Pop()
{
var result = RemoveAt(0, false);
result.Position = 0; // TODO maybe remove this here again, see https://github.com/zeromq/clrzmq4/issues/110
return result;
}
public int PopBytes(byte[] buffer, int offset, int count)
{
using (var frame = Pop())
{
return frame.Read(buffer, offset, count);
}
}
public int PopByte()
{
using (var frame = Pop())
{
return frame.ReadByte();
}
}
public byte PopAsByte()
{
using (var frame = Pop())
{
return frame.ReadAsByte();
}
}
public Int16 PopInt16()
{
using (var frame = Pop())
{
return frame.ReadInt16();
}
}
public UInt16 PopUInt16()
{
using (var frame = Pop())
{
return frame.ReadUInt16();
}
}
public Char PopChar()
{
using (var frame = Pop())
{
return frame.ReadChar();
}
}
public Int32 PopInt32()
{
using (var frame = Pop())
{
return frame.ReadInt32();
}
}
public UInt32 PopUInt32()
{
using (var frame = Pop())
{
return frame.ReadUInt32();
}
}
public Int64 PopInt64()
{
using (var frame = Pop())
{
return frame.ReadInt64();
}
}
public UInt64 PopUInt64()
{
using (var frame = Pop())
{
return frame.ReadUInt64();
}
}
public String PopString()
{
return PopString(ZContext.Encoding);
}
public String PopString(Encoding encoding)
{
using (var frame = Pop())
{
return frame.ReadString((int)frame.Length, encoding);
}
}
public String PopString(int bytesCount, Encoding encoding)
{
using (var frame = Pop())
{
return frame.ReadString(bytesCount, encoding);
}
}
public void Wrap(ZFrame frame)
{
Insert(0, new ZFrame());
Insert(0, frame);
}
public ZFrame Unwrap()
{
ZFrame frame = RemoveAt(0, false);
if (Count > 0 && this[0].Length == 0)
{
RemoveAt(0);
}
return frame;
}
public ZFrame this[int index]
{
get
{
return _frames[index];
}
set
{
_frames[index] = value;
}
}
#endregion
#region ICollection implementation
public void Append(ZFrame item)
{
Add(item);
}
public void AppendRange(IEnumerable<ZFrame> items)
{
AddRange(items);
}
public void Add(ZFrame item)
{
_frames.Add(item);
}
public void AddRange(IEnumerable<ZFrame> items)
{
_frames.AddRange(items);
}
public void Clear()
{
foreach (ZFrame frame in _frames)
{
frame.Dispose();
}
_frames.Clear();
}
public bool Contains(ZFrame item)
{
return _frames.Contains(item);
}
void ICollection<ZFrame>.CopyTo(ZFrame[] array, int arrayIndex)
{
int i = 0, count = this.Count;
foreach (ZFrame frame in this)
{
array[arrayIndex + i] = ZFrame.CopyFrom(frame);
i++; if (i >= count) break;
}
}
public bool Remove(ZFrame item)
{
if (null != Remove(item, true))
{
return false;
}
return true;
}
public ZFrame Remove(ZFrame item, bool dispose)
{
if (_frames.Remove(item))
{
if (dispose)
{
item.Dispose();
return null;
}
}
return item;
}
public int Count { get { return _frames.Count; } }
bool ICollection<ZFrame>.IsReadOnly { get { return false; } }
#endregion
#region IEnumerable implementation
public IEnumerator<ZFrame> GetEnumerator()
{
return _frames.GetEnumerator();
}
IEnumerator IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
#endregion
#region ICloneable implementation
public object Clone()
{
return Duplicate();
}
public ZMessage Duplicate()
{
var message = new ZMessage();
foreach (ZFrame frame in this)
{
message.Add(frame.Duplicate());
}
return message;
}
#endregion
}
}