-
Notifications
You must be signed in to change notification settings - Fork 4
/
socketget.go
258 lines (231 loc) · 6.75 KB
/
socketget.go
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
package zmq2
/*
#include <zmq.h>
#include "zmq2.h"
#include <stdint.h>
*/
import "C"
import (
"strings"
"time"
"unsafe"
)
func (soc *Socket) getString(opt C.int, bufsize int) (string, error) {
if !soc.opened {
return "", ErrorSocketClosed
}
value := make([]byte, bufsize)
size := C.size_t(bufsize)
if i, err := C.zmq_getsockopt(soc.soc, opt, unsafe.Pointer(&value[0]), &size); i != 0 {
return "", errget(err)
}
return strings.TrimRight(string(value[:int(size)]), "\x00"), nil
}
func (soc *Socket) getInt(opt C.int) (int, error) {
if !soc.opened {
return 0, ErrorSocketClosed
}
value := C.int(0)
size := C.size_t(unsafe.Sizeof(value))
if i, err := C.zmq_getsockopt(soc.soc, opt, unsafe.Pointer(&value), &size); i != 0 {
return 0, errget(err)
}
return int(value), nil
}
func (soc *Socket) getInt64(opt C.int) (int64, error) {
if !soc.opened {
return 0, ErrorSocketClosed
}
value := C.int64_t(0)
size := C.size_t(unsafe.Sizeof(value))
if i, err := C.zmq_getsockopt(soc.soc, opt, unsafe.Pointer(&value), &size); i != 0 {
return 0, errget(err)
}
return int64(value), nil
}
func (soc *Socket) getUInt64(opt C.int) (uint64, error) {
if !soc.opened {
return 0, ErrorSocketClosed
}
value := C.uint64_t(0)
size := C.size_t(unsafe.Sizeof(value))
if i, err := C.zmq_getsockopt(soc.soc, opt, unsafe.Pointer(&value), &size); i != 0 {
return 0, errget(err)
}
return uint64(value), nil
}
func (soc *Socket) getUInt32(opt C.int) (uint32, error) {
if !soc.opened {
return 0, ErrorSocketClosed
}
value := C.uint32_t(0)
size := C.size_t(unsafe.Sizeof(value))
if i, err := C.zmq_getsockopt(soc.soc, opt, unsafe.Pointer(&value), &size); i != 0 {
return 0, errget(err)
}
return uint32(value), nil
}
// ZMQ_TYPE: Retrieve socket type
//
// See: http://api.zeromq.org/2-2:zmq-getsockopt#toc3
func (soc *Socket) GetType() (Type, error) {
v, err := soc.getInt(C.ZMQ_TYPE)
return Type(v), err
}
// ZMQ_RCVMORE: More message data parts to follow
//
// See: http://api.zeromq.org/2-2:zmq-getsockopt#toc4
func (soc *Socket) GetRcvmore() (bool, error) {
v, err := soc.getInt64(C.ZMQ_RCVMORE)
return v != 0, err
}
// ZMQ_HWM: Retrieve high water mark
//
// See: http://api.zeromq.org/2-2:zmq-getsockopt#toc5
func (soc *Socket) GetHwm() (uint64, error) {
return soc.getUInt64(C.ZMQ_HWM)
}
// ZMQ_RCVTIMEO: Maximum time before a socket operation returns with EAGAIN
//
// Returns time.Duration(-1) for infinite
//
// Returns ErrorNotImplemented in 0MQ version 2.1
//
// See: http://api.zeromq.org/2-2:zmq-getsockopt#toc6
func (soc *Socket) GetRcvtimeo() (time.Duration, error) {
major, minor, _ := Version()
if major == 2 && minor < 2 {
return 0, ErrorNotImplemented
}
v, err := soc.getInt(C.ZMQ_RCVTIMEO)
if v < 0 {
return time.Duration(-1), err
}
return time.Duration(v) * time.Millisecond, err
}
// ZMQ_SNDTIMEO: Maximum time before a socket operation returns with EAGAIN
//
// Returns time.Duration(-1) for infinite
//
// Returns ErrorNotImplemented in 0MQ version 2.1
//
// See: http://api.zeromq.org/2-2:zmq-getsockopt#toc7
func (soc *Socket) GetSndtimeo() (time.Duration, error) {
major, minor, _ := Version()
if major == 2 && minor < 2 {
return 0, ErrorNotImplemented
}
v, err := soc.getInt(C.ZMQ_SNDTIMEO)
if v < 0 {
return time.Duration(-1), err
}
return time.Duration(v) * time.Millisecond, err
}
// ZMQ_SWAP: Retrieve disk offload size
//
// See: http://api.zeromq.org/2-2:zmq-getsockopt#toc8
func (soc *Socket) GetSwap() (int64, error) {
return soc.getInt64(C.ZMQ_SWAP)
}
// ZMQ_AFFINITY: Retrieve I/O thread affinity
//
// See: http://api.zeromq.org/2-2:zmq-getsockopt#toc9
func (soc *Socket) GetAffinity() (uint64, error) {
return soc.getUInt64(C.ZMQ_AFFINITY)
}
// ZMQ_IDENTITY: Retrieve socket identity
//
// See: http://api.zeromq.org/2-2:zmq-getsockopt#toc10
func (soc *Socket) GetIdentity() (string, error) {
return soc.getString(C.ZMQ_IDENTITY, 256)
}
// ZMQ_RATE: Retrieve multicast data rate
//
// See: http://api.zeromq.org/2-2:zmq-getsockopt#toc11
func (soc *Socket) GetRate() (int64, error) {
return soc.getInt64(C.ZMQ_RATE)
}
// ZMQ_RECOVERY_IVL: Get multicast recovery interval
//
// Note: return time is time.Duration
//
// See: http://api.zeromq.org/2-2:zmq-getsockopt#toc12
func (soc *Socket) GetRecoveryIvl() (time.Duration, error) {
v, e := soc.getInt64(C.ZMQ_RECOVERY_IVL)
return time.Duration(v) * time.Second, e
}
// ZMQ_RECOVERY_IVL_MSEC: Get multicast recovery interval in milliseconds
//
// Note: return time is time.Duration
//
// See: http://api.zeromq.org/2-2:zmq-getsockopt#toc13
func (soc *Socket) GetRecoveryIvlMsec() (time.Duration, error) {
v, e := soc.getInt64(C.ZMQ_RECOVERY_IVL_MSEC)
if v == -1 {
return -1, e
}
return time.Duration(v) * time.Millisecond, e
}
// ZMQ_MCAST_LOOP: Control multicast loop-back
//
// See: http://api.zeromq.org/2-2:zmq-getsockopt#toc14
func (soc *Socket) GetMcastLoop() (bool, error) {
v, e := soc.getInt64(C.ZMQ_MCAST_LOOP)
if v == 0 {
return false, e
}
return true, e
}
// ZMQ_SNDBUF: Retrieve kernel transmit buffer size
//
// See: http://api.zeromq.org/2-2:zmq-getsockopt#toc15
func (soc *Socket) GetSndbuf(value int) (uint64, error) {
return soc.getUInt64(C.ZMQ_SNDBUF)
}
// ZMQ_RCVBUF: Retrieve kernel receive buffer size
//
// See: http://api.zeromq.org/2-2:zmq-getsockopt#toc16
func (soc *Socket) GetRcvbuf(value int) (uint64, error) {
return soc.getUInt64(C.ZMQ_RCVBUF)
}
// ZMQ_LINGER: Retrieve linger period for socket shutdown
//
// Returns time.Duration(-1) for infinite
//
// See: http://api.zeromq.org/2-2:zmq-getsockopt#toc17
func (soc *Socket) GetLinger() (time.Duration, error) {
v, err := soc.getInt(C.ZMQ_LINGER)
if v < 0 {
return time.Duration(-1), err
}
return time.Duration(v) * time.Millisecond, err
}
// ZMQ_RECONNECT_IVL: Retrieve reconnection interval
//
// See: http://api.zeromq.org/2-2:zmq-getsockopt#toc18
func (soc *Socket) GetReconnectIvl() (time.Duration, error) {
v, err := soc.getInt(C.ZMQ_RECONNECT_IVL)
return time.Duration(v) * time.Millisecond, err
}
// ZMQ_RECONNECT_IVL_MAX: Retrieve maximum reconnection interval
//
// See: http://api.zeromq.org/2-2:zmq-getsockopt#toc19
func (soc *Socket) GetReconnectIvlMax() (time.Duration, error) {
v, err := soc.getInt(C.ZMQ_RECONNECT_IVL_MAX)
return time.Duration(v) * time.Millisecond, err
}
// ZMQ_BACKLOG: Retrieve maximum length of the queue of outstanding connections
//
// See: http://api.zeromq.org/2-2:zmq-getsockopt#toc20
func (soc *Socket) GetBacklog() (int, error) {
return soc.getInt(C.ZMQ_BACKLOG)
}
// ZMQ_FD: Retrieve file descriptor associated with the socket
// see socketget_unix.go and socketget_windows.go
// ZMQ_EVENTS: Retrieve socket event state
//
// See: http://api.zeromq.org/2-2:zmq-getsockopt#toc22
func (soc *Socket) GetEvents() (State, error) {
v, err := soc.getUInt32(C.ZMQ_EVENTS)
return State(v), err
}