-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathutcp.pas
324 lines (290 loc) · 9.22 KB
/
utcp.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
(******************************************************************************)
(* UTCP 23.04.2014 *)
(* *)
(* Version : 0.07 *)
(* *)
(* Author : Uwe Schächterle (Corpsman) *)
(* *)
(* Support : www.Corpsman.de *)
(* *)
(* Description : This Unit implements a Control class for the L-Net TLTCP *)
(* Component *)
(* *)
(* License : See the file license.md, located under: *)
(* https://github.com/PascalCorpsman/Software_Licenses/blob/main/license.md *)
(* for details about the license. *)
(* *)
(* It is not allowed to change or remove this text from any *)
(* source file of the project. *)
(* *)
(* Warranty : There is no warranty, neither in correctness of the *)
(* implementation, nor anything other that could happen *)
(* or go wrong, use at your own risk. *)
(* *)
(* Known Issues: none *)
(* *)
(* History : 0.01 - Initial version *)
(* 0.02 - Added LCL Support, Write *)
(* 0.04 - Added WriteByteArr *)
(* 0.03 - Added utcp.inc *)
(* 0.05 - Bugfix WriteByteArr *)
(* 0.06 - added Flush *)
(* 0.07 - change UseLCL version to use TLTCPComponent *)
(* \-> Using LCLEventer and not callaction ! *)
(* *)
(******************************************************************************)
Unit utcp;
{$MODE objfpc}{$H+}
(*
* Soll die utcp.pas als Library genutzt werden, dann sollte die utcp.inc
* aus dem Verzeichnis der utcp.pas gelöscht werden. Für jedes Projekt, welches
* utcp.pas einbindet. Muss dann im Projektordner eine seperate utcp.inc
* angelegt werden.
*)
{$I utcp.inc}
Interface
Uses
Classes, SysUtils, lnet
{$IFDEF UseLCL}
, lNetComponents
, forms
{$ENDIF}
;
Type
TLSocketEvent = lnet.TLSocketEvent;
TLSocket = lnet.TLSocket;
{ TTCP }
TTCP = Class
private
receivebuffer: Array Of Byte; // Die Empfangenen Daten
{$IFDEF UseLCL}
FCon: TLTCPComponent; // the connection
fOnOnErrorCapture: lnet.TLSocketErrorEvent;
fOnOnDisconnectCapture: TLSocketEvent;
{$ELSE}
FCon: TLTcp; // the connection
{$ENDIF}
Procedure OnDisconnectEvent(aSocket: TLSocket);
Procedure OnReceiveEvent(aSocket: TLSocket);
Procedure OnErrorEvent(Const msg: String; aSocket: TLSocket);
public
OnDisConnect: TLSocketEvent;
Constructor Create({$IFDEF UseLCL}aConnection: TLTCPComponent{$ENDIF}); virtual;
Destructor Destroy(); override;
Function Connect(IP_Address: String; Port: Word): Boolean;
Function Connected(): Boolean;
Procedure Disconnect(); // TODO: in UseLCL version this is redundant
Function RecvByte(Out Error: Boolean; Timeout: Integer = 10): Byte;
Procedure Write(Const Value: String);
Procedure WriteByteArr(Const Data: TBytes); // Sendet einen Byte Datanstrom
Procedure Flush(); // Clears the Receive buffer
End;
Implementation
{$IFNDEF UseLCL}
{$IFDEF use_own_gettickcount}
Function GetTickCount64(): QWord;
Begin
result := round(now * 1000 * 60 * 60 * 24);
End;
{$ELSE}
Uses lazutf8sysutils;
Function GetTickCount64(): QWord;
Begin
Result := lazutf8sysutils.GetTickCount64();
End;
{$ENDIF}
{$ENDIF}
{ TTCP }
Constructor TTCP.Create({$IFDEF UseLCL}aConnection: TLTCPComponent{$ENDIF});
Begin
Inherited create;
OnDisConnect := Nil;
{$IFDEF UseLCL}
FCon := aConnection;
fOnOnErrorCapture := FCon.OnError;
fOnOnDisconnectCapture := FCon.OnDisconnect;
{$ELSE}
FCon := TLTCP.Create(Nil); // create new TCP connection with no parent component -> needs to handle the .callaction's by the caller
{$ENDIF}
FCon.OnError := @OnErrorEvent;
FCon.OnReceive := @OnReceiveEvent;
FCOn.OnDisconnect := @OnDisconnectEvent;
FCon.Timeout := 1;
setlength(receivebuffer, 0);
End;
Destructor TTCP.Destroy;
Begin
{$IFDEF UseLCL}
FCon.OnError := fOnOnErrorCapture;
FCon.OnDisconnect := fOnOnDisconnectCapture;
FCon.OnReceive := Nil; // Better "nil" than a dangling reference
{$ELSE}
FCon.Free; // free the connection
{$ENDIF}
setlength(receivebuffer, 0);
End;
Procedure TTCP.OnDisconnectEvent(aSocket: TLSocket);
Begin
{$IFDEF UseLCL}
If assigned(fOnOnDisconnectCapture) Then Begin
fOnOnDisconnectCapture(aSocket);
End;
{$ENDIF}
{$IFDEF UseConsole}
Writeln('Lost connection');
{$ENDIF}
If assigned(OnDisConnect) Then Begin
OnDisConnect(aSocket);
End;
End;
Procedure TTCP.OnReceiveEvent(aSocket: TLSocket);
Var
i, asize: integer;
buf: Array[0..2047] Of Byte;
j: Integer;
Begin
asize := aSocket.Get(buf[0], 2048);
While asize > 0 Do Begin
i := high(receivebuffer);
setlength(receivebuffer, i + 1 + asize);
For j := 0 To asize - 1 Do Begin
receivebuffer[i + 1 + j] := buf[j];
End;
If asize = 2048 Then Begin
asize := aSocket.Get(buf[0], 2048);
End
Else Begin
asize := 0;
End;
End;
End;
Procedure TTCP.OnErrorEvent(Const msg: String; aSocket: TLSocket);
Begin
{$IFDEF UseLCL}
If assigned(fOnOnErrorCapture) Then Begin
fOnOnErrorCapture(msg, aSocket);
End;
{$ENDIF}
{$IFDEF UseConsole}
Writeln('Error : ' + msg); // if error occured, write it
{$ENDIF}
End;
Function TTCP.Connect(IP_Address: String; Port: Word): Boolean;
Var
t: qword;
FQuit: Boolean;
Begin
{$IFDEF DEBUG_CONSOLE}
writeln('Connecting to : ' + IP_Address + ' : ' + inttostr(port));
{$ENDIF}
FQuit := False;
If FCon.Connect(IP_Address, Port) Then Begin // if connect went ok
t := GetTickCount64;
Repeat
{$IFDEF UseLCL}
Application.ProcessMessages;
{$ELSE}
FCon.CallAction; // wait for "OnConnect"
{$ENDIF}
If GetTickCount64 > t + 2000 Then
FQuit := true;
Until FCon.Connected Or FQuit;
End
Else Begin
FQuit := true;
End;
If FQuit Then Begin
{$IFDEF UseLCL}
// Todo : Ausgabe einer Fehlermeldung
{$ENDIF}
{$IFDEF UseConsole}
writeln('Error could not establish connection.');
{$ENDIF}
End;
result := Not FQuit;
End;
Function TTCP.Connected: Boolean;
Begin
result := FCon.Connected;
End;
Procedure TTCP.Disconnect();
Begin
FCon.Disconnect(true);
End;
Function TTCP.RecvByte(Out Error: Boolean; Timeout: Integer): Byte;
Var
t: QWord;
i: Integer;
Begin
t := GetTickCount64;
While true Do Begin
// Abbruch bei Erfolg
If high(receivebuffer) > -1 Then Begin
error := false;
// Das hier ist höchst ineffizient, da ja ständig die Größe des Puffers geändert wird.
// Aber es geht, so wat..
result := receivebuffer[0];
For i := 1 To high(receivebuffer) Do Begin
receivebuffer[i - 1] := receivebuffer[i];
End;
SetLength(receivebuffer, high(receivebuffer));
exit;
End;
// Abbruch bei nicht Erfolg
If t + Timeout < GetTickCount64() Then Begin
result := 0;
error := true;
exit;
End;
{$IFDEF UseLCL}
Application.ProcessMessages;
{$ELSE}
FCon.CallAction;
{$ENDIF}
End;
End;
Procedure TTCP.Write(Const Value: String);
Begin
If fcon.SendMessage(value) <> length(Value) Then Begin
If Not FCon.Connected Then Begin
Raise Exception.Create('Error, not connected.');
End
Else Begin
Raise Exception.Create('Error, write buffer full, use cansend implementations!');
End;
End;
{$IFNDEF UseLCL}
FCon.CallAction;
{$ENDIF}
End;
Procedure TTCP.WriteByteArr(Const Data: TBytes);
{$IFDEF DEBUG_CONSOLE}
Var
s: String;
i: integer;
{$ENDIF}
Begin
{$IFDEF DEBUG_CONSOLE}
s := 'Send:';
For i := 0 To high(Data) Do Begin
s := s + format(' %0.2X', [data[i]]);
End;
writeln(s);
{$ENDIF}
If FCon.send(data[0], length(data)) <> length(data) Then Begin
If Not FCon.Connected Then Begin
Raise Exception.Create('Error, not connected.');
End
Else Begin
Raise Exception.Create('Error, write buffer full, use cansend implementations!');
End;
End;
{$IFNDEF UseLCL}
FCon.CallAction;
{$ENDIF}
End;
Procedure TTCP.Flush;
Begin
setlength(receivebuffer, 0);
End;
End.