forked from zeromq/clrzmq4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ZSocket.cs
1566 lines (1333 loc) · 40.1 KB
/
ZSocket.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
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Threading;
using ZeroMQ.lib;
namespace ZeroMQ
{
/// <summary>
/// Sends and receives messages, single frames and byte frames across ZeroMQ.
/// </summary>
public class ZSocket : IDisposable
{
/// <summary>
/// Create a <see cref="ZSocket"/> instance.
/// </summary>
/// <returns><see cref="ZSocket"/></returns>
public static ZSocket Create(ZContext context, ZSocketType socketType)
{
return new ZSocket(context, socketType);
}
/// <summary>
/// Create a <see cref="ZSocket"/> instance.
/// </summary>
/// <returns><see cref="ZSocket"/></returns>
public static ZSocket Create(ZContext context, ZSocketType socketType, out ZError error)
{
var socket = new ZSocket();
socket._context = context;
socket._socketType = socketType;
if (!socket.Initialize(out error))
{
return default(ZSocket);
}
return socket;
}
private ZContext _context;
private IntPtr _socketPtr;
private ZSocketType _socketType;
/// <summary>
/// Create a <see cref="ZSocket"/> instance.
/// You are using ZContext.Current!
/// </summary>
/// <returns><see cref="ZSocket"/></returns>
public ZSocket(ZSocketType socketType) : this (ZContext.Current, socketType) { }
/// <summary>
/// Create a <see cref="ZSocket"/> instance.
/// </summary>
/// <returns><see cref="ZSocket"/></returns>
public ZSocket(ZContext context, ZSocketType socketType)
{
_context = context;
_socketType = socketType;
ZError error;
if (!Initialize(out error))
{
throw new ZException(error);
}
}
protected ZSocket() { }
protected bool Initialize(out ZError error)
{
error = default(ZError);
if (IntPtr.Zero == (_socketPtr = zmq.socket(_context.ContextPtr, (Int32)_socketType)))
{
error = ZError.GetLastErr();
return false;
}
return true;
}
/// <summary>
/// Finalizes an instance of the <see cref="ZSocket"/> class.
/// </summary>
~ZSocket()
{
Dispose(false);
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
/// <summary>
/// Releases the unmanaged resources used by the <see cref="ZSocket"/>, and optionally disposes of the managed resources.
/// </summary>
/// <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
protected virtual void Dispose(bool disposing)
{
if (disposing)
{
ZError error;
Close(out error);
}
}
/// <summary>
/// Close the current socket.
/// </summary>
public void Close()
{
ZError error;
if (!Close(out error))
{
throw new ZException(error);
}
}
/// <summary>
/// Close the current socket.
/// </summary>
public bool Close(out ZError error)
{
error = ZError.None;
if (_socketPtr == IntPtr.Zero) return true;
if (-1 == zmq.close(_socketPtr))
{
error = ZError.GetLastErr();
return false;
}
_socketPtr = IntPtr.Zero;
return true;
}
public ZContext Context
{
get { return _context; }
}
public IntPtr SocketPtr
{
get { return _socketPtr; }
}
/// <summary>
/// Gets the <see cref="ZeroMQ.ZSocketType"/> value for the current socket.
/// </summary>
public ZSocketType SocketType { get { return _socketType; } }
/// <summary>
/// Bind the specified endpoint.
/// </summary>
/// <param name="endpoint">A string consisting of a transport and an address, formatted as <c><em>transport</em>://<em>address</em></c>.</param>
public void Bind(string endpoint)
{
ZError error;
if (!Bind(endpoint, out error))
{
throw new ZException(error);
}
}
/// <summary>
/// Bind the specified endpoint.
/// </summary>
/// <param name="endpoint">A string consisting of a transport and an address, formatted as <c><em>transport</em>://<em>address</em></c>.</param>
public bool Bind(string endpoint, out ZError error)
{
EnsureNotDisposed();
error = default(ZError);
if (string.IsNullOrWhiteSpace(endpoint))
{
throw new ArgumentException("IsNullOrWhiteSpace", "endpoint");
}
using (var endpointPtr = DispoIntPtr.AllocString(endpoint))
{
if (-1 == zmq.bind(_socketPtr, endpointPtr))
{
error = ZError.GetLastErr();
return false;
}
}
return true;
}
/// <summary>
/// Unbind the specified endpoint.
/// </summary>
/// <param name="endpoint">A string consisting of a transport and an address, formatted as <c><em>transport</em>://<em>address</em></c>.</param>
public void Unbind(string endpoint)
{
ZError error;
if (!Unbind(endpoint, out error))
{
throw new ZException(error);
}
}
/// <summary>
/// Unbind the specified endpoint.
/// </summary>
/// <param name="endpoint">A string consisting of a transport and an address, formatted as <c><em>transport</em>://<em>address</em></c>.</param>
public bool Unbind(string endpoint, out ZError error)
{
EnsureNotDisposed();
error = default(ZError);
if (string.IsNullOrWhiteSpace(endpoint))
{
throw new ArgumentException("IsNullOrWhiteSpace", "endpoint");
}
using (var endpointPtr = DispoIntPtr.AllocString(endpoint))
{
if (-1 == zmq.unbind(_socketPtr, endpointPtr))
{
error = ZError.GetLastErr();
return false;
}
}
return true;
}
/// <summary>
/// Connect the specified endpoint.
/// </summary>
/// <param name="endpoint">A string consisting of a transport and an address, formatted as <c><em>transport</em>://<em>address</em></c>.</param>
public void Connect(string endpoint)
{
ZError error;
if (!Connect(endpoint, out error))
{
throw new ZException(error);
}
}
/// <summary>
/// Connect the specified endpoint.
/// </summary>
/// <param name="endpoint">A string consisting of a transport and an address, formatted as <c><em>transport</em>://<em>address</em></c>.</param>
public bool Connect(string endpoint, out ZError error)
{
EnsureNotDisposed();
error = default(ZError);
if (string.IsNullOrWhiteSpace(endpoint))
{
throw new ArgumentException("IsNullOrWhiteSpace", "endpoint");
}
using (var endpointPtr = DispoIntPtr.AllocString(endpoint))
{
if (-1 == zmq.connect(_socketPtr, endpointPtr))
{
error = ZError.GetLastErr();
return false;
}
}
return true;
}
/// <summary>
/// Disconnect the specified endpoint.
/// </summary>
public void Disconnect(string endpoint)
{
ZError error;
if (!Disconnect(endpoint, out error))
{
throw new ZException(error);
}
}
/// <summary>
/// Disconnect the specified endpoint.
/// </summary>
/// <param name="endpoint">A string consisting of a transport and an address, formatted as <c><em>transport</em>://<em>address</em></c>.</param>
public bool Disconnect(string endpoint, out ZError error)
{
EnsureNotDisposed();
error = default(ZError);
if (string.IsNullOrWhiteSpace(endpoint))
{
throw new ArgumentException("IsNullOrWhiteSpace", "endpoint");
}
using (var endpointPtr = DispoIntPtr.AllocString(endpoint))
{
if (-1 == zmq.disconnect(_socketPtr, endpointPtr))
{
error = ZError.GetLastErr();
return false;
}
}
return true;
}
/// <summary>
/// Receives HARD bytes into a new byte[n]. Please don't use ReceiveBytes, use instead ReceiveFrame.
/// </summary>
public int ReceiveBytes(byte[] buffer, int offset, int count)
{
ZError error;
int length;
if (-1 == (length = ReceiveBytes(buffer, offset, count, ZSocketFlags.None, out error)))
{
throw new ZException(error);
}
return length;
}
/// <summary>
/// Receives HARD bytes into a new byte[n]. Please don't use ReceiveBytes, use instead ReceiveFrame.
/// </summary>
public int ReceiveBytes(byte[] buffer, int offset, int count, ZSocketFlags flags, out ZError error)
{
EnsureNotDisposed();
error = ZError.None;
// int zmq_recv(void* socket, void* buf, size_t len, int flags);
var pin = GCHandle.Alloc(buffer, GCHandleType.Pinned);
IntPtr pinPtr = pin.AddrOfPinnedObject() + offset;
int length;
while (-1 == (length = zmq.recv(this.SocketPtr, pinPtr, count, (int)flags)))
{
error = ZError.GetLastErr();
if (error == ZError.EINTR)
{
error = default(ZError);
continue;
}
break;
}
pin.Free();
return length;
}
/// <summary>
/// Sends HARD bytes from a byte[n]. Please don't use SendBytes, use instead SendFrame.
/// </summary>
public bool SendBytes(byte[] buffer, int offset, int count)
{
ZError error;
if (!SendBytes(buffer, offset, count, ZSocketFlags.None, out error))
{
throw new ZException(error);
}
return true;
}
/// <summary>
/// Sends HARD bytes from a byte[n]. Please don't use SendBytes, use instead SendFrame.
/// </summary>
public bool SendBytes(byte[] buffer, int offset, int count, ZSocketFlags flags, out ZError error)
{
EnsureNotDisposed();
error = ZError.None;
// int zmq_send (void *socket, void *buf, size_t len, int flags);
var pin = GCHandle.Alloc(buffer, GCHandleType.Pinned);
IntPtr pinPtr = pin.AddrOfPinnedObject() + offset;
int length;
while (-1 == (length = zmq.send(SocketPtr, pinPtr, count, (int)flags)))
{
error = ZError.GetLastErr();
if (error == ZError.EINTR)
{
error = default(ZError);
continue;
}
pin.Free();
return false;
}
pin.Free();
return true;
}
/// <summary>
/// Sends HARD bytes from a byte[n]. Please don't use SendBytes, use instead SendFrame.
/// </summary>
public bool Send(byte[] buffer, int offset, int count) {
return SendBytes(buffer, offset, count);
} // just Send*
/// <summary>
/// Sends HARD bytes from a byte[n]. Please don't use SendBytes, use instead SendFrame.
/// </summary>
public bool Send(byte[] buffer, int offset, int count, ZSocketFlags flags, out ZError error) {
return SendBytes(buffer, offset, count, flags, out error);
} // just Send*
public ZMessage ReceiveMessage()
{
return ReceiveMessage(ZSocketFlags.None);
}
public ZMessage ReceiveMessage(out ZError error)
{
return ReceiveMessage(ZSocketFlags.None, out error);
}
public ZMessage ReceiveMessage(ZSocketFlags flags)
{
ZError error;
ZMessage message = ReceiveMessage(flags, out error);
if (error != ZError.None)
{
throw new ZException(error);
}
return message;
}
public ZMessage ReceiveMessage(ZSocketFlags flags, out ZError error)
{
ZMessage message = null;
ReceiveMessage(ref message, flags, out error);
return message;
}
public bool ReceiveMessage(ref ZMessage message, out ZError error)
{
return ReceiveMessage(ref message, ZSocketFlags.None, out error);
}
public bool ReceiveMessage(ref ZMessage message, ZSocketFlags flags, out ZError error)
{
EnsureNotDisposed();
int count = int.MaxValue;
return ReceiveFrames(ref count, ref message, flags, out error);
}
public ZFrame ReceiveFrame()
{
ZError error;
ZFrame frame = ReceiveFrame(out error);
if (error != ZError.None)
{
throw new ZException(error);
}
return frame;
}
public ZFrame ReceiveFrame(out ZError error)
{
return ReceiveFrame(ZSocketFlags.None, out error);
}
public ZFrame ReceiveFrame(ZSocketFlags flags, out ZError error)
{
IEnumerable<ZFrame> frames = ReceiveFrames(1, flags & ~ZSocketFlags.More, out error);
if (frames != null)
{
foreach (ZFrame frame in frames)
{
return frame;
}
}
return null;
}
public IEnumerable<ZFrame> ReceiveFrames(int framesToReceive)
{
return ReceiveFrames(framesToReceive, ZSocketFlags.None);
}
public IEnumerable<ZFrame> ReceiveFrames(int framesToReceive, ZSocketFlags flags)
{
ZError error;
var frames = ReceiveFrames(framesToReceive, flags, out error);
if (error != ZError.None)
{
throw new ZException(error);
}
return frames;
}
public IEnumerable<ZFrame> ReceiveFrames(int framesToReceive, out ZError error)
{
return ReceiveFrames(framesToReceive, ZSocketFlags.None, out error);
}
public IEnumerable<ZFrame> ReceiveFrames(int framesToReceive, ZSocketFlags flags, out ZError error)
{
List<ZFrame> frames = null;
while (!ReceiveFrames(ref framesToReceive, ref frames, flags, out error))
{
if (error == ZError.EAGAIN && ((flags & ZSocketFlags.DontWait) == ZSocketFlags.DontWait))
{
break;
}
return null;
}
return frames;
}
public bool ReceiveFrames<ListT>(ref int framesToReceive, ref ListT frames, ZSocketFlags flags, out ZError error)
where ListT : IList<ZFrame>, new()
{
EnsureNotDisposed();
error = default(ZError);
flags = flags | ZSocketFlags.More;
do {
var frame = ZFrame.CreateEmpty();
if (framesToReceive == 1)
{
flags = flags & ~ZSocketFlags.More;
}
while (-1 == zmq.msg_recv(frame.Ptr, _socketPtr, (int)flags))
{
error = ZError.GetLastErr();
if (error == ZError.EINTR)
{
error = default(ZError);
continue;
}
frame.Dispose();
return false;
}
if (frames == null)
{
frames = new ListT();
}
frames.Add(frame);
} while (--framesToReceive > 0 && this.ReceiveMore);
return true;
}
public virtual void Send(ZMessage msg) {
SendMessage(msg);
} // just Send*
public virtual bool Send(ZMessage msg, out ZError error) {
return SendMessage(msg, out error);
} // just Send*
public virtual void Send(ZMessage msg, ZSocketFlags flags) {
SendMessage(msg, flags);
} // just Send*
public virtual bool Send(ZMessage msg, ZSocketFlags flags, out ZError error) {
return SendMessage(msg, flags, out error);
} // just Send*
public virtual void Send(IEnumerable<ZFrame> frames) {
SendFrames(frames);
} // just Send*
public virtual bool Send(IEnumerable<ZFrame> frames, out ZError error) {
return SendFrames(frames, out error);
} // just Send*
public virtual void Send(IEnumerable<ZFrame> frames, ZSocketFlags flags) {
SendFrames(frames, flags);
} // just Send*
public virtual bool Send(IEnumerable<ZFrame> frames, ZSocketFlags flags, out ZError error) {
return SendFrames(frames, flags, out error);
} // just Send*
public virtual bool Send(IEnumerable<ZFrame> frames, ref int sent, ZSocketFlags flags, out ZError error) {
return SendFrames(frames, ref sent, flags, out error);
} // just Send*
public virtual void Send(ZFrame frame) {
SendFrame(frame);
} // just Send*
public virtual bool Send(ZFrame msg, out ZError error) {
return SendFrame(msg, out error);
} // just Send*
public virtual void SendMore(ZFrame frame) {
SendFrameMore(frame);
} // just Send*
public virtual bool SendMore(ZFrame msg, out ZError error) {
return SendFrameMore(msg, out error);
} // just Send*
public virtual void SendMore(ZFrame frame, ZSocketFlags flags) {
SendFrameMore(frame, flags);
} // just Send*
public virtual bool SendMore(ZFrame msg, ZSocketFlags flags, out ZError error) {
return SendFrameMore(msg, flags, out error);
} // just Send*
public virtual void Send(ZFrame frame, ZSocketFlags flags) {
SendFrame(frame, flags);
} // just Send*
public virtual bool Send(ZFrame frame, ZSocketFlags flags, out ZError error) {
return SendFrame(frame, flags, out error);
} // just Send*
public virtual void SendMessage(ZMessage msg)
{
SendMessage(msg, ZSocketFlags.None);
}
public virtual bool SendMessage(ZMessage msg, out ZError error)
{
return SendMessage(msg, ZSocketFlags.None, out error);
}
public virtual void SendMessage(ZMessage msg, ZSocketFlags flags)
{
ZError error;
if (!SendMessage(msg, flags, out error))
{
throw new ZException(error);
}
}
public virtual bool SendMessage(ZMessage msg, ZSocketFlags flags, out ZError error)
{
return SendFrames((IEnumerable<ZFrame>)msg, flags, out error);
}
public virtual void SendFrames(IEnumerable<ZFrame> frames)
{
SendFrames(frames, ZSocketFlags.None);
}
public virtual bool SendFrames(IEnumerable<ZFrame> frames, out ZError error)
{
return SendFrames(frames, ZSocketFlags.None, out error);
}
public virtual void SendFrames(IEnumerable<ZFrame> frames, ZSocketFlags flags)
{
ZError error;
int sent = 0;
if (!SendFrames(frames, ref sent, flags, out error))
{
throw new ZException(error);
}
}
public virtual bool SendFrames(IEnumerable<ZFrame> frames, ZSocketFlags flags, out ZError error)
{
int sent = 0;
if (!SendFrames(frames, ref sent, flags, out error))
{
return false;
}
return true;
}
public virtual bool SendFrames(IEnumerable<ZFrame> frames, ref int sent, ZSocketFlags flags, out ZError error)
{
EnsureNotDisposed();
error = ZError.None;
bool more = (flags & ZSocketFlags.More) == ZSocketFlags.More;
flags = flags | ZSocketFlags.More;
bool framesIsList = frames is IList<ZFrame>;
ZFrame[] _frames = frames.ToArray();
for (int i = 0, l = _frames.Length; i < l; ++i)
{
ZFrame frame = _frames[i];
if (i == l - 1 && !more)
{
flags = flags & ~ZSocketFlags.More;
}
if (!SendFrame(frame, flags, out error))
{
return false;
}
if (framesIsList)
{
((IList<ZFrame>)frames).Remove(frame);
}
++sent;
}
return true;
}
public virtual void SendFrame(ZFrame frame)
{
SendFrame(frame, ZSocketFlags.None);
}
public virtual bool SendFrame(ZFrame msg, out ZError error)
{
return SendFrame(msg, ZSocketFlags.None, out error);
}
public virtual void SendFrameMore(ZFrame frame)
{
SendFrame(frame, ZSocketFlags.More);
}
public virtual bool SendFrameMore(ZFrame msg, out ZError error)
{
return SendFrame(msg, ZSocketFlags.More, out error);
}
public virtual void SendFrameMore(ZFrame frame, ZSocketFlags flags)
{
SendFrame(frame, flags | ZSocketFlags.More);
}
public virtual bool SendFrameMore(ZFrame msg, ZSocketFlags flags, out ZError error)
{
return SendFrame(msg, flags | ZSocketFlags.More, out error);
}
public virtual void SendFrame(ZFrame frame, ZSocketFlags flags)
{
ZError error;
if (!SendFrame(frame, flags, out error))
{
throw new ZException(error);
}
}
public virtual bool SendFrame(ZFrame frame, ZSocketFlags flags, out ZError error)
{
EnsureNotDisposed();
if (frame.IsDismissed)
{
throw new ObjectDisposedException("frame");
}
error = default(ZError);
while (-1 == zmq.msg_send(frame.Ptr, _socketPtr, (int)flags))
{
error = ZError.GetLastErr();
if (error == ZError.EINTR)
{
error = default(ZError);
continue;
}
return false;
}
// Tell IDisposable to not unallocate zmq_msg
frame.Dismiss();
return true;
}
public bool Forward(ZSocket destination, out ZMessage message, out ZError error)
{
EnsureNotDisposed();
error = default(ZError);
message = null; // message is always null
bool more = false;
using (var msg = ZFrame.CreateEmpty())
{
do
{
while (-1 == zmq.msg_recv(msg.Ptr, this.SocketPtr, (int)ZSocketFlags.None))
{
error = ZError.GetLastErr();
if (error == ZError.EINTR)
{
error = default(ZError);
continue;
}
return false;
}
// will have to receive more?
more = ReceiveMore;
// sending scope
while (-1 != zmq.msg_send(msg.Ptr, destination.SocketPtr, more ? (int)ZSocketFlags.More : (int)ZSocketFlags.None))
{
error = ZError.GetLastErr();
if (error == ZError.EINTR)
{
error = default(ZError);
continue;
}
return false;
}
// msg.Dismiss
} while (more);
} // using (msg) -> Dispose
return true;
}
private bool GetOption(ZSocketOption option, IntPtr optionValue, ref int optionLength)
{
EnsureNotDisposed();
using (var optionLengthP = DispoIntPtr.Alloc(IntPtr.Size))
{
if (IntPtr.Size == 4)
Marshal.WriteInt32(optionLengthP.Ptr, optionLength);
else if (IntPtr.Size == 8)
Marshal.WriteInt64(optionLengthP.Ptr, (long)optionLength);
else
throw new PlatformNotSupportedException();
ZError error;
while (-1 == zmq.getsockopt(this._socketPtr, (int)option, optionValue, optionLengthP.Ptr))
{
error = ZError.GetLastErr();
if (error == ZError.EINTR)
{
error = default(ZError);
continue;
}
throw new ZException(error);
}
if (IntPtr.Size == 4)
optionLength = Marshal.ReadInt32(optionLengthP.Ptr);
else if (IntPtr.Size == 8)
optionLength = (int)Marshal.ReadInt64(optionLengthP.Ptr);
else
throw new PlatformNotSupportedException();
}
return true;
}
// From options.hpp: unsigned char identity [256];
private const int MaxBinaryOptionSize = 256;
public bool GetOption(ZSocketOption option, out byte[] value, int size)
{
value = null;
int optionLength = size;
using (var optionValue = DispoIntPtr.Alloc(optionLength))
{
if (GetOption(option, optionValue, ref optionLength))
{
value = new byte[optionLength];
Marshal.Copy(optionValue, value, 0, optionLength);
return true;
}
return false;
}
}
public byte[] GetOptionBytes(ZSocketOption option, int size = MaxBinaryOptionSize)
{
byte[] result;
if (GetOption(option, out result, size))
{
return result;
}
return null;
}
public bool GetOption(ZSocketOption option, out string value)
{
value = null;
int optionLength = MaxBinaryOptionSize;
using (var optionValue = DispoIntPtr.Alloc(optionLength))
{
if (GetOption(option, optionValue, ref optionLength))
{
value = Marshal.PtrToStringAnsi(optionValue, optionLength);
return true;
}
return false;
}
}
public string GetOptionString(ZSocketOption option)
{
string result;
if (GetOption(option, out result))
{
return result;
}
return null;
}
public bool GetOption(ZSocketOption option, out Int32 value)
{
value = default(Int32);
int optionLength = Marshal.SizeOf(typeof(Int32));
using (var optionValue = DispoIntPtr.Alloc(optionLength))
{
if (GetOption(option, optionValue.Ptr, ref optionLength)) {
value = Marshal.ReadInt32(optionValue.Ptr);
return true;
}
return false;
}
}
public Int32 GetOptionInt32(ZSocketOption option)
{
Int32 result;
if (GetOption(option, out result))
{
return result;
}
return default(Int32);
}
public bool GetOption(ZSocketOption option, out UInt32 value)
{
Int32 resultValue;
bool result = GetOption(option, out resultValue);
value = (UInt32)resultValue;
return result;
}
public UInt32 GetOptionUInt32(ZSocketOption option)
{
UInt32 result;
if (GetOption(option, out result))
{
return result;
}
return default(UInt32);
}
public bool GetOption(ZSocketOption option, out Int64 value)
{
value = default(Int64);
int optionLength = Marshal.SizeOf(typeof(Int64));
using (var optionValue = DispoIntPtr.Alloc(optionLength))
{
if (GetOption(option, optionValue.Ptr, ref optionLength))
{
value = Marshal.ReadInt64(optionValue);
return true;
}
return false;
}
}
public Int64 GetOptionInt64(ZSocketOption option)
{
Int64 result;
if (GetOption(option, out result))
{
return result;
}
return default(Int64);
}
public bool GetOption(ZSocketOption option, out UInt64 value)
{
Int64 resultValue;
bool result = GetOption(option, out resultValue);
value = (UInt64)resultValue;
return result;
}
public UInt64 GetOptionUInt64(ZSocketOption option)
{
UInt64 result;
if (GetOption(option, out result))
{
return result;