-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdmSerial.Android.pas
626 lines (530 loc) · 13.3 KB
/
dmSerial.Android.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
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
unit dmSerial.Android;
interface
uses
SyncObjs,
System.SysUtils,
System.Types,
System.UITypes,
System.Classes,
System.Variants,
dmSerial.Base,
diagnostics,
FMX.Types,
FMX.Colors,
FMX.Dialogs,
FMX.Memo,
Winsoft.Android.UsbSer,
Androidapi.JNIBridge,
Winsoft.Android.Usb,
neato.helpers;
type
TdmSerialAndroid = class(TdmSerialBase)
private
fError: String;
fErrorCode: integer;
fComFailure: boolean;
fDataBuffer: String;
cs: TCriticalSection;
procedure OnReceivedData(Data: TJavaArray<Byte>);
protected
//
public
onError: TNotifyEvent;
fmemoDebug: tmemo;
UsbDevices: TArray<JUsbDevice>;
Serial: TUsbSerial;
Comport: integer; // this would be the index of devices
FComSignalRX: TColorBox;
FComSignalTX: TColorBox;
FComSignalCNX: TColorBox;
requestingPermission: boolean;
constructor Create;
destructor destroy; override;
Function Open: boolean; override;
procedure Close; override;
procedure SetOnRxChar(value: TOnReceivedData);
function SendCommand(cmd: string; const readtimeout: integer = 5000; const waitfor: integer = 100): string;
override;
function SendCommandOnly(cmd: string): String; override; // Just send command and move on
function SendCommandAndWaitForValue(cmd: string; const readtimeout: integer = 5000; const waitfor: string = '';
const count: Byte = 1): string; override;
function ReadString: String; override;
function active: boolean; override;
procedure RefreshDevices(var idx: integer; var devicelist: tstringlist);
procedure PurgeInput; override;
procedure PurgeOutput; override;
procedure WaitForWriteCompletion; override;
procedure WaitForReadCompletion; override;
function ReadBuffer: String;
procedure OnDeviceAttached(Device: JUsbDevice);
procedure OnDeviceDetached(Device: JUsbDevice);
property Error: String read fError;
property ErrorCode: integer read fErrorCode;
property Failure: boolean read fComFailure;
end;
function ByteArrayToString(Data: TJavaArray<Byte>): string;
implementation
uses Androidapi.Jni.App, Androidapi.Jni.JavaTypes, Androidapi.helpers,
Androidapi.Jni.Widget, Androidapi.Jni.Os, FMX.helpers.Android, Androidapi.Jni;
Const
LineBreak = #10#13;
function Androidapi: integer;
begin
Result := TJBuild_VERSION.JavaClass.SDK_INT;
end;
function ByteArrayToString(Data: TJavaArray<Byte>): string;
begin
Result := '';
try
if (Data <> nil) and (Data.Length > 0) then
Result := TEncoding.ANSI.GetString(ToByteArray(Data));
except
on E: Exception do
ShowMessage(E.Message);
end;
end;
constructor TdmSerialAndroid.Create;
begin
inherited;
cs := TCriticalSection.Create;
Serial := TUsbSerial.Create;
Serial.OnReceivedData := OnReceivedData;
Serial.OnDeviceAttached := OnDeviceAttached;
Serial.OnDeviceDetached := OnDeviceDetached;
FComSignalRX := nil;
FComSignalTX := nil;
FComSignalCNX := nil;
requestingPermission := false;
end;
Destructor TdmSerialAndroid.destroy;
begin
Serial.Free;
cs.Free;
inherited;
end;
procedure TdmSerialAndroid.OnDeviceAttached(Device: JUsbDevice);
var
idx: integer;
devices: tstringlist;
begin
CallInUIThread(
procedure
begin
RefreshDevices(idx, devices);
end);
end;
procedure TdmSerialAndroid.OnDeviceDetached(Device: JUsbDevice);
var
idx: integer;
devices: tstringlist;
begin
CallInUIThread(
procedure
begin
RefreshDevices(idx, devices);
end);
end;
procedure TdmSerialAndroid.OnReceivedData(Data: TJavaArray<Byte>);
begin // Idea here is, TCP is a stream of data. So you will get the data possibly in 2 or more chunks.
// So build up the string and say its ready.
// Let the other code check to see if its truely ready or not.
cs.Enter;
fDataBuffer := fDataBuffer + ByteArrayToString(Data);
fDataBuffer := stringreplace(fDataBuffer, char($0D) + char($00) + char($0A), char($0D) + char($0A), [rfreplaceall]);
cs.Leave;
tthread.CreateAnonymousThread(
procedure
begin
tthread.Queue(nil,
procedure
begin
if assigned(FComSignalRX) then
FComSignalRX.Color := talphacolorrec.Red;
end);
sleep(100);
tthread.Queue(nil,
procedure
begin
if assigned(FComSignalRX) then
FComSignalRX.Color := talphacolorrec.Maroon;
end);
end).Start;
end;
procedure TdmSerialAndroid.SetOnRxChar(value: TOnReceivedData);
begin
Serial.OnReceivedData := value;
end;
function TdmSerialAndroid.ReadBuffer: String;
begin
try
cs.Enter;
try
Result := fDataBuffer;
except
on E: Exception do
begin
end;
end;
finally
cs.Leave;
end;
end;
procedure TdmSerialAndroid.RefreshDevices(var idx: integer; var devicelist: tstringlist);
var
I: integer;
Device: JUsbDevice;
begin
idx := -1;
devicelist := tstringlist.Create;
UsbDevices := Serial.UsbDevices;
if UsbDevices <> nil then
for I := 0 to Length(UsbDevices) - 1 do
begin
Device := UsbDevices[I];
if Androidapi >= 21 then
devicelist.Add(JStringToString(Device.getManufacturerName) + ' ' + JStringToString(Device.getProductName))
else
devicelist.Add(JStringToString(Device.getDeviceName));
if Device = Serial.UsbDevice then
idx := I;
end;
Close;
end;
Function TdmSerialAndroid.Open: boolean;
var
Device: JUsbDevice;
begin
try
requestingPermission := false;
try
Serial.Disconnect;
except
end;
fError := '';
fErrorCode := 0;
fComFailure := false;
Result := false;
Device := UsbDevices[Comport];
if not Serial.IsSupported(Device) then
raise Exception.Create('Unsupported device');
if not Serial.HasPermission(Device) then
begin
requestingPermission := true;
Serial.RequestPermission(Device);
Exit;
end;
Serial.Connect(Device);
Serial.Open(false);
tthread.CreateAnonymousThread(
procedure
begin
sleep(100);
tthread.Queue(nil,
procedure
begin
if assigned(FComSignalCNX) then
FComSignalCNX.Color := talphacolorrec.Yellow;
end);
end).Start;
Result := true;
except
on E: Exception do
begin
Result := false;
fError := E.Message;
if assigned(onError) then
onError(Self);
end;
end;
end;
procedure TdmSerialAndroid.Close;
begin
try
requestingPermission := false;
Serial.Close;
Serial.Disconnect;
except
on E: Exception do
begin
fError := E.Message;
if assigned(onError) then
begin
tthread.Queue(nil, // Queue Syncronize
procedure
begin
if assigned(onError) then
onError(Self);
end);
end;
end;
end;
tthread.CreateAnonymousThread(
procedure
begin
sleep(100);
tthread.Queue(nil,
procedure
begin
if assigned(FComSignalCNX) then
FComSignalCNX.Color := talphacolorrec.Olive;
end);
end).Start;
end;
function TdmSerialAndroid.SendCommandOnly(cmd: string): String;
var
sw: tstopwatch;
begin
tthread.CreateAnonymousThread(
procedure
begin
sleep(100);
tthread.Queue(nil,
procedure
begin
Self.FComSignalTX.Color := talphacolorrec.Green;
end);
end).Start;
cs.Enter;
fDataBuffer := '';
cs.Leave;
try
Result := cmd;
try
Result := '';
if assigned(fmemoDebug) then
begin
fmemoDebug.BeginUpdate;
fmemoDebug.Lines.Add(cmd);
fmemoDebug.Lines.Add('');
fmemoDebug.Lines.Add('< Call does not check response >');
fmemoDebug.GoToTextEnd;
fmemoDebug.EndUpdate;
end;
if Serial.Connected then
Serial.write(TEncoding.ANSI.GetBytes(cmd + LineBreak), 5000);
sw := tstopwatch.Create;
sw.Start;
repeat // This is blocking so beware
sleep(0);
until (pos(^Z, fDataBuffer) > 0) or (sw.ElapsedMilliseconds >= 5000);
sw.Stop;
Result := trim(fDataBuffer);
except
on E: Exception do
begin
tthread.Queue(nil, // Queue Syncronize
procedure
begin
fError := E.Message;
fErrorCode := E.HelpContext;
if assigned(onError) then
onError(Self);
end);
end;
end;
finally
tthread.CreateAnonymousThread(
procedure
begin
sleep(100);
tthread.Queue(nil,
procedure
begin
if assigned(FComSignalTX) then
FComSignalTX.Color := talphacolorrec.Darkgreen;
end);
end).Start;
end;
end;
function TdmSerialAndroid.SendCommand(cmd: string; const readtimeout: integer = 5000;
const waitfor: integer = 100): string;
var
sw: tstopwatch;
readdone: boolean;
fixData: tstringlist;
idx: integer;
breakFound: integer;
timedout: boolean;
s: string;
begin
tthread.CreateAnonymousThread(
procedure
begin
sleep(100);
tthread.Queue(nil,
procedure
begin
if assigned(FComSignalTX) then
FComSignalTX.Color := talphacolorrec.Green;
end);
end).Start;
cs.Enter;
fDataBuffer := '';
cs.Leave;
try
try
sw := tstopwatch.Create;
Result := '';
if assigned(fmemoDebug) then
fmemoDebug.Lines.Add(cmd);
if Serial.Connected then
Serial.write(TEncoding.ANSI.GetBytes(cmd + #13), readtimeout * 2);
sw := tstopwatch.Create;
sw.Start;
breakFound := 0;
timedout := false;
repeat // This is blocking so beware
cs.Enter;
breakFound := pos(char(^Z), fDataBuffer);
cs.Leave;
timedout := sw.ElapsedMilliseconds >= readtimeout * 2;
until (breakFound > 0) or (timedout);
// until (pos(^Z, fDataBuffer) > 0) or (sw.ElapsedMilliseconds >= Serial.readtimeout);
sw.Stop;
cs.Enter;
fixData := tstringlist.Create;
fixData.Text := trim(fDataBuffer);
cs.Leave;
for idx := fixData.count - 1 downto 0 do
if trim(fixData[idx]) = '' then
fixData.Delete(idx);
Result := trim(fixData.Text);
fixData.Free;
if pos('Help', Result) > 0 then
sw.Stop;
if assigned(fmemoDebug) then
begin
fmemoDebug.BeginUpdate;
fmemoDebug.Lines.Add(Result);
fmemoDebug.GoToTextEnd;
fmemoDebug.EndUpdate;
end;
except
on E: Exception do
begin
tthread.Queue(nil, // Queue Syncronize
procedure
begin
fError := E.Message;
fErrorCode := E.HelpContext;
if assigned(onError) then
onError(Self);
end);
end;
end;
finally
tthread.CreateAnonymousThread(
procedure
begin
sleep(100);
tthread.Queue(nil,
procedure
begin
if assigned(FComSignalTX) then
FComSignalTX.Color := talphacolorrec.Darkgreen;
end);
end).Start;
end;
end;
function TdmSerialAndroid.ReadString: String;
var
rbuffer: TArray<Byte>;
begin
Serial.Read(rbuffer, 5000);
Result := TEncoding.ANSI.GetString(rbuffer);
end;
function TdmSerialAndroid.SendCommandAndWaitForValue(cmd: string; const readtimeout: integer = 5000;
const waitfor: string = ''; const count: Byte = 1): string;
var
sw: tstopwatch;
begin
tthread.CreateAnonymousThread(
procedure
begin
sleep(100);
tthread.Queue(nil,
procedure
begin
if assigned(FComSignalTX) then
FComSignalTX.Color := talphacolorrec.Green;
end);
end).Start;
try
cs.Enter;
fDataBuffer := '';
cs.Leave;
Result := '';
if assigned(fmemoDebug) then
fmemoDebug.Lines.Add(cmd);
if Serial.Connected then
Serial.write(TEncoding.ANSI.GetBytes(cmd + LineBreak), 5000);
sw := tstopwatch.Create;
sw.Start;
repeat // This is blocking so beware
sleep(0);
until (OccurrencesOfChar(fDataBuffer, ^Z) = count) or (sw.ElapsedMilliseconds >= readtimeout);
sw.Stop;
Result := trim(fDataBuffer);
if assigned(fmemoDebug) then
begin
fmemoDebug.BeginUpdate;
fmemoDebug.Lines.Add(Result);
fmemoDebug.GoToTextEnd;
fmemoDebug.EndUpdate;
end;
except
on E: Exception do
begin
tthread.Queue(nil, // Queue Syncronize
procedure
begin
fError := E.Message;
fErrorCode := E.HelpContext;
if assigned(onError) then
onError(Self);
end);
end;
end;
tthread.CreateAnonymousThread(
procedure
begin
sleep(100);
tthread.Queue(nil,
procedure
begin
if assigned(FComSignalTX) then
FComSignalTX.Color := talphacolorrec.Darkgreen;
end);
end).Start;
end;
function TdmSerialAndroid.active: boolean;
begin
try
Result := Serial.Connected;
except
on E: Exception do
begin
Self.fError := E.Message;
Result := false;
end;
end;
end;
procedure TdmSerialAndroid.WaitForWriteCompletion;
begin
sleep(10);
end;
procedure TdmSerialAndroid.WaitForReadCompletion;
begin
sleep(10);
end;
procedure TdmSerialAndroid.PurgeInput;
var
Buffer: TJavaArray<Byte>;
begin
sleep(10);
end;
procedure TdmSerialAndroid.PurgeOutput;
begin
sleep(10); // no purge command it looks
end;
end.