-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathzmqclass.pas
431 lines (377 loc) · 11.4 KB
/
zmqclass.pas
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
unit ZMQClass;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils,
IniFiles,
zmq, ctypes;
type
T0MQSetup = record
address: string; // example is tcp://172.17.41.208:5558
hwm: integer; // high water mark
send_timeout: integer; // send timeout
recv_timeout: integer; // receiving timeout
socket_type: string; // PUB, SUB, PUSH, PULL ...
end;
{ E0MQError }
// Error nadling
// Methods that create objects return NULL if they fail.
// Methods that process data may return the number of bytes processed, or -1 on an error or failure.
// Other methods return 0 on success and -1 on an error or failure.
// The error code is provided in errno or zmq_errno().
// A descriptive error text for logging is provided by zmq_strerror().
E0MQError = class(Exception)
public
_ErrNo: Integer;
_ErrMsg: String;
constructor Create(InErrNo: Integer; InErrMsg: String);
destructor Destroy; override;
end;
{ T0MQContext }
T0MQContext = class
_Context: Pointer;
public
constructor Create;
destructor Destroy; override;
function GetContext: Pointer;
end;
{ T0MQSocket }
T0MQSocket = class
_Context: Pointer;
_Socket: Pointer;
_SocketType: cint;
_BindString: String;
_ConnectString: String;
_RecvBuffer: array[0..(65536 * 100)-1] of char;
public
constructor Create(InContext: Pointer); overload;
constructor Create(InContext: T0MQContext); overload;
destructor Destroy; override;
procedure CleanUp;
function GetSocket(InSocketType: cint): Pointer;
function BindSocket(InBindString: String): cint;
function ConnectSocket(InConnectString: String): cint;
function CloseSocket: cint;
function Send(InBuffer: Pointer; InLen: csize_t; InFlags: cint = 0): cint; overload;
function Send(var InString: String): cint;
function Recv(InBuffer: Pointer; InBufferSize: cint; InFlags: cint = 0): cint; overload;
function Recv(var OutString: String; InFlags: cint = 0; InHowMuchMilliseconds: cint = 0): cint; overload;
function SetSockOptInteger(InOption: cint; InValue: Integer): cint;
function SetSockOptInt64(InOption: cint; InValue: Int64): cint;
function GetSockOptInteger(InOption: cint): Integer;
function GetSockOptInt64(InOption: cint): Int64;
end;
var InitT0MQSetup: T0MQSetup = ({%H-});
function Get0MQError(InErrorCode: cint): String;
procedure Raise0MQError(InErrNo: Integer;
InErrMsg: String);
procedure ZeroMQReadConfiguration(InIniFile: TIniFile; InSection: String; var Out0MQSetup: T0MQSetup); overload;
procedure ZeroMQReadConfiguration(InIniFileName: String; InSection: String; var Out0MQSetup: T0MQSetup); overload;
function ZeroMQDumpSetup(var In0MQSetup: T0MQSetup): String;
implementation
function Get0MQError(InErrorCode: cint): String;
var MyErrPChar: PChar;
MyResult: String;
begin
MyResult:= '';
MyErrPChar := zmq_strerror(InErrorCode);
MyResult := String(MyErrPChar);
Result := MyResult;
end;
procedure Raise0MQError(InErrNo: Integer; InErrMsg: String);
begin
raise E0MQError.Create(InErrNo, InErrMsg);
end;
{ T0MQContext }
constructor T0MQContext.Create;
var MyError: cint;
MyErrorString: String;
begin
_Context := nil;
_Context := zmq.zmq_ctx_new();
if _Context = nil then begin
MyError := zmq_errno();
MyErrorString := Get0MQError(MyError);
Raise0MQError(MyError, MyErrorString);
end;
end;
destructor T0MQContext.Destroy;
var MyRC: cint;
MyError: cint;
MyErrorString: String;
begin
MyRC := zmq_ctx_destroy (_Context);
if MyRC = -1 then begin
MyError := zmq_errno();
MyErrorString := Get0MQError(MyError);
Raise0MQError(MyError, MyErrorString);
end;
inherited Destroy;
end;
function T0MQContext.GetContext: Pointer;
begin
Result := _Context;
end;
{ E0MQError }
constructor E0MQError.Create(InErrNo: Integer; InErrMsg: String);
begin
inherited Create(InErrMsg);
_ErrNo := InErrNo;
_ErrMsg := InErrMsg;
end;
destructor E0MQError.Destroy;
begin
inherited Destroy;
end;
{ T0MQSocket }
constructor T0MQSocket.Create(InContext: Pointer);
begin
CleanUp;
_Context := InContext;
end;
constructor T0MQSocket.Create(InContext: T0MQContext);
begin
_Context := InContext.GetContext;
end;
destructor T0MQSocket.Destroy;
begin
try
if _Socket <> nil then begin
CloseSocket;
end;
except
// I dont care about error
end;
CleanUp;
inherited Destroy;
end;
procedure T0MQSocket.CleanUp;
begin
_Context := nil;
_Socket := nil;
_SocketType := 0;
_BindString := '';
_ConnectString := '';
end;
function T0MQSocket.GetSocket(InSocketType: cint): Pointer;
var MyResult: Pointer;
MyError: cint;
MyErrorString: String;
begin
MyResult := nil;
_SocketType := InSocketType;
MyResult := zmq_socket (_Context, InSocketType);
if MyResult = nil then begin
MyError := zmq_errno();
MyErrorString := Get0MQError(MyError);
Raise0MQError(MyError, MyErrorString);
end;
_Socket := MyResult;
Result := MyResult;
end;
function T0MQSocket.BindSocket(InBindString: String): cint;
var MyRC: cint;
MyError: cint;
MyErrorString: String;
begin
_BindString := InBindString;
MyRC := zmq_bind(_Socket, PChar(InBindString));
if MyRC = -1 then begin
MyError := zmq_errno();
MyErrorString := Get0MQError(MyError);
Raise0MQError(MyError, MyErrorString);
end;
Result := MyRC;
end;
function T0MQSocket.ConnectSocket(InConnectString: String): cint;
var MyRC: cint;
MyError: cint;
MyErrorString: String;
begin
_ConnectString := InConnectString;
MyRC := zmq_connect(_Socket, PChar(InConnectString));
if MyRC = -1 then begin
MyError := zmq_errno();
MyErrorString := Get0MQError(MyError);
Raise0MQError(MyError, MyErrorString);
end;
Result := MyRC;
end;
function T0MQSocket.CloseSocket: cint;
var MyRC: cint;
MyError: cint;
MyErrorString: String;
begin
MyRC := zmq_close(_Socket);
if MyRC = -1 then begin
MyError := zmq_errno();
MyErrorString := Get0MQError(MyError);
Raise0MQError(MyError, MyErrorString);
end;
CleanUp;
Result := MyRC;
end;
function T0MQSocket.Send(InBuffer: Pointer; InLen: csize_t; InFlags: cint): cint;
var MyRC: cint;
MyError: cint;
MyErrorString: String;
begin
MyRC := zmq_send(_Socket, InBuffer, InLen, InFlags);
if MyRC = -1 then begin
MyError := zmq_errno();
MyErrorString := Get0MQError(MyError);
Raise0MQError(MyError, MyErrorString);
end;
Result := MyRC;
end;
function T0MQSocket.Send(var InString: String): cint;
begin
Result := Send(Pchar(InString), Length(InString), 0);
end;
function T0MQSocket.Recv(InBuffer: Pointer; InBufferSize: cint; InFlags: cint): cint;
var MyRC: cint;
MyError: cint;
MyErrorString: String;
begin
MyRC := zmq_recv(_Socket, InBuffer, InBufferSize, InFlags);
if ((MyRC = -1) and (InFlags = 0)) then begin
MyError := zmq_errno();
MyErrorString := Get0MQError(MyError);
Raise0MQError(MyError, MyErrorString);
end;
Result := MyRC;
end;
function T0MQSocket.Recv(var OutString: String; InFlags: cint;
InHowMuchMilliseconds: cint): cint;
var MyResult: cint;
begin
FillChar(_RecvBuffer, SizeOf(_RecvBuffer), 0);
if InFlags = ZMQ_DONTWAIT then begin
while InHowMuchMilliseconds > 0 do begin
MyResult := Recv(@_RecvBuffer, SizeOf(_RecvBuffer), InFlags);
if MyResult = -1 then begin
if zmq_errno = ZMQ_EAGAIN then begin
InHowMuchMilliseconds := InHowMuchMilliseconds - 100;
Sleep(100);
end
else begin
break;
end;
end
else begin
Break;
end;
end;
end
else begin
MyResult := Recv(@_RecvBuffer, SizeOf(_RecvBuffer), InFlags);
end;
OutString := _RecvBuffer;
Result := MyResult;
end;
function T0MQSocket.SetSockOptInteger(InOption: cint; InValue: Integer): cint;
var MyRC: cint;
MyError: cint;
MyErrorString: String;
begin
MyRC := zmq_setsockopt(_Socket, InOption, @InValue, sizeof(InValue));
if MyRC = -1 then begin
MyError := zmq_errno();
MyErrorString := Get0MQError(MyError);
Raise0MQError(MyError, MyErrorString);
end;
Result := MyRC;
end;
function T0MQSocket.SetSockOptInt64(InOption: cint; InValue: Int64): cint;
var MyRC: cint;
MyError: cint;
MyErrorString: String;
begin
MyRC := zmq_setsockopt(_Socket, InOption, @InValue, sizeof(InValue));
if MyRC = -1 then begin
MyError := zmq_errno();
MyErrorString := Get0MQError(MyError);
Raise0MQError(MyError, MyErrorString);
end;
Result := MyRC;
end;
function T0MQSocket.GetSockOptInteger(InOption: cint): Integer;
var MyRC: cint;
MyError: cint;
MyErrorString: String;
MyValue: Integer;
MySize: csize_t; //size_t
begin
MyValue := 0;
MySize := SizeOf(MyValue);
MyRC := zmq_getsockopt(_Socket, InOption, @MyValue, @MySize);
if MyRC = -1 then begin
MyError := zmq_errno();
MyErrorString := Get0MQError(MyError);
Raise0MQError(MyError, MyErrorString);
end;
Result := MyValue;
end;
function T0MQSocket.GetSockOptInt64(InOption: cint): Int64;
var MyRC: cint;
MyError: cint;
MyErrorString: String;
MyValue: Int64;
MySize: csize_t; //size_t
begin
MyValue := 0;
MySize := SizeOf(MyValue);
MyRC := zmq_getsockopt(_Socket, InOption, @MyValue, @MySize);
if MyRC = -1 then begin
MyError := zmq_errno();
MyErrorString := Get0MQError(MyError);
Raise0MQError(MyError, MyErrorString);
end;
Result := MyValue;
end;
procedure ZeroMQReadConfiguration(InIniFile: TIniFile; InSection: String;
var Out0MQSetup: T0MQSetup);
begin
Out0MQSetup := InitT0MQSetup;
Out0MQSetup.address := InIniFile.ReadString(InSection, 'address', '');
Out0MQSetup.hwm := InIniFile.ReadInteger(InSection, 'hwm', 200);
Out0MQSetup.send_timeout := InIniFile.ReadInteger(InSection, 'send_timeout', 0);
Out0MQSetup.recv_timeout := InIniFile.ReadInteger(InSection, 'recv_timeout', 0);
Out0MQSetup.socket_type := InIniFile.ReadString(InSection, 'socket_type', 'PULL');
end;
procedure ZeroMQReadConfiguration(InIniFileName: String; InSection: String;
var Out0MQSetup: T0MQSetup);
var MyIniFile: TIniFile;
begin
Out0MQSetup := InitT0MQSetup;
MyIniFile := nil;
try
if FileExists(InIniFileName) then begin
MyIniFile := TIniFile.Create(InIniFileName);
ZeroMQReadConfiguration(MyIniFile, InSection, Out0MQSetup);
if MyIniFile <> nil then begin
FreeAndNil(MyIniFile);
end;
end;
except
if MyIniFile <> nil then begin
FreeAndNil(MyIniFile);
end;
end;
end;
function ZeroMQDumpSetup(var In0MQSetup: T0MQSetup): String;
begin
Result := Format('address=%s' + #13#10 +
'hwm=%d' + #13#10 +
'recv_timeout=%d' + #13#10 +
'end_timeout=%d' + #13#10 +
'socket_type=%s',
[
In0MQSetup.address,
In0MQSetup.hwm,
In0MQSetup.recv_timeout,
In0MQSetup.send_timeout,
In0MQSetup.socket_type
]);
end;
end.