-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathradionode.pas
505 lines (430 loc) · 11.1 KB
/
radionode.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
unit RadioNode;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, UComplex, Math, RadioModule, GenFFT;
type
{ TDataFlowNode }
TDataFlowNode = class
private
FNext: TDataFlowNode;
FOnSendToNext: TReceiveData;
FCache: array of Complex;
FHoldCount: Integer;
protected
procedure DoReceiveData(const P: PComplex; const Len: Integer); virtual;
public
destructor Destroy; override;
procedure SendToNext(const P: PComplex; const Len: Integer);
procedure ReceiveData(const P: PComplex; const Len: Integer);
procedure Hold;
procedure ReleaseHold;
function Connect(ANext: TDataFlowNode): TDataFlowNode;
function LastNode: TDataFlowNode;
property Next: TDataFlowNode read FNext;
property OnSendToNext: TReceiveData read FOnSendToNext write FOnSendToNext;
end;
{ TRegulatorNode }
TRegulatorNode = class(TDataFlowNode)
private
FRegulator: TStreamRegulator;
protected
procedure DoReceiveData(const P: PComplex; const Len: Integer); override;
public
constructor Create;
destructor Destroy; override;
property Regulator: TStreamRegulator read FRegulator;
end;
{ TWindowNode }
TWindowNode = class(TDataFlowNode)
private
FWnd: array of Double;
FRegulator: TStreamRegulator;
function GetOverlap: Integer;
function GetWindowLen: Integer;
procedure RegulatedData(const P: PComplex; const Len: Integer);
procedure SetOverlap(AValue: Integer);
protected
procedure DoReceiveData(const P: PComplex; const Len: Integer); override;
public
constructor Create;
destructor Destroy; override;
procedure SetWindow(const P: PDouble; const Len: Integer);
property WindowLen: Integer read GetWindowLen;
property Overlap: Integer read GetOverlap write SetOverlap;
end;
{ TFIRNode }
TFIRNode = class(TDataFlowNode)
private
FHFIR: array of Complex;
FBuf: array of Complex;
FRes: array of Complex;
FFPlan: PFFTPlan;
FIPlan: PFFTPlan;
FRegulator: TStreamRegulator;
FTaps: Integer;
function GetProcessingSize: Integer;
procedure SetTimeDomainFIR(const P: PComplex; const Len: Integer); virtual;
procedure RegulatedData(const P: PComplex; const Len: Integer); virtual;
protected
procedure DoReceiveData(const P: PComplex; const Len: Integer); override;
public
constructor Create;
destructor Destroy; override;
procedure SetFIR(const P: PComplex; const Len: Integer; const FreqDomain: Boolean = False); overload;
procedure SetFIR(const P: PDouble; const Len: Integer);
property ProcessingSize: Integer read GetProcessingSize;
end;
{ TRealFIRNode }
TRealFIRNode = class(TFIRNode)
private
FMono: Boolean;
procedure RegulatedData(const P: PComplex; const Len: Integer); override;
procedure SetMono(AValue: Boolean);
public
property Mono: Boolean read FMono write SetMono;
end;
{ TResampleNode }
TResampleNode = class(TDataFlowNode)
private
FBuf: array [0..2048 - 1] of Complex;
FCursor: Integer;
FLastInput: Complex;
FLastScaledIndex: Double;
FInputRate: Cardinal;
FOutputRate: Cardinal;
procedure SetInputRate(AValue: Cardinal);
procedure SetOutputRate(AValue: Cardinal);
protected
procedure DoReceiveData(const P: PComplex; const Len: Integer); override;
public
constructor Create;
destructor Destroy; override;
property InputRate: Cardinal read FInputRate write SetInputRate ;
property OutputRate: Cardinal read FOutputRate write SetOutputRate;
end;
implementation
uses
SignalBasic;
{ TRealFIRNode }
procedure TRealFIRNode.RegulatedData(const P: PComplex; const Len: Integer);
var
I: Integer;
begin
if Assigned(FFPlan) then
begin
if Len <> High(FBuf) + 1 then
begin
TRadioLogger.Report(llWarn, 'TRealFIRNode.RegulatedData: Len <> High(FBuf) + 1');
Exit;
end;
end
else begin
TRadioLogger.Report(llWarn, 'TRealFIRNode.RegulatedData: FPlan = nil');
Exit;
end;
FillChar(FRes[0], Len * SizeOf(FRes[0]), 0);
FillChar(FBuf[0], Len * SizeOf(FBuf[0]), 0);
for I := 0 to Len - 1 do
FBuf[I].re := P[I].re;
Transform(FFPlan, @FBuf[0], @FBuf[0]);
for I := 0 to Len - 1 do
FBuf[I] := FBuf[I] * FHFIR[I];
Transform(FIPlan, @FBuf[0], @FBuf[0]);
for I := 0 to Len - 1 do
FRes[I].re := FBuf[I].re;
if not FMono then
begin
FillChar(FBuf[0], Len * SizeOf(FBuf[0]), 0);
for I := 0 to Len - 1 do
FBuf[I].re := P[I].im;
Transform(FFPlan, @FBuf[0], @FBuf[0]);
for I := 0 to Len - 1 do
FBuf[I] := FBuf[I] * FHFIR[I];
Transform(FIPlan, @FBuf[0], @FBuf[0]);
for I := 0 to Len - 1 do
FRes[I].im := FBuf[I].re;
end;
I := FTaps - 1;
SendToNext(@FRes[I], Len - I);
end;
procedure TRealFIRNode.SetMono(AValue: Boolean);
begin
if FMono = AValue then Exit;
FMono := AValue;
end;
{ TResampleNode }
procedure TResampleNode.SetInputRate(AValue: Cardinal);
begin
if FInputRate = AValue then Exit;
FInputRate := Max(1, AValue);
FLastScaledIndex := 0;
end;
procedure TResampleNode.SetOutputRate(AValue: Cardinal);
begin
if FOutputRate = AValue then Exit;
FOutputRate := Max(1, AValue);
FLastScaledIndex := 0;
end;
procedure TResampleNode.DoReceiveData(const P: PComplex; const Len: Integer);
label
again;
var
I: Integer = 0;
K: Double;
V: Double;
begin
if FInputRate = FOutputRate then
begin
if FCursor > 0 then
begin
SendToNext(@FBuf[0], FCursor);
FCursor := 0;
end;
SendToNext(P, Len);
Exit;
end;
V := FLastScaledIndex;
K := FInputRate / FOutputRate;
again:
while FCursor <= High(FBuf) do
begin
V := V + K;
I := Trunc(V);
if I >= Len - 1 then
begin
FLastScaledIndex := V - Len;
FLastInput := P[Len - 1];
Exit;
end;
if I >= 0 then
FBuf[FCursor] := P[I] * (V - I) + P[I + 1] * (1 + I - V)
else
FBuf[FCursor] := FLastInput * (V + 1) + P[0] * (- V);
Inc(FCursor);
end;
if FCursor = High(FBuf) + 1 then
begin
SendToNext(@FBuf[0], High(FBuf) + 1);
FCursor := 0;
goto again;
end;
end;
constructor TResampleNode.Create;
begin
FInputRate := 1;
FOutputRate := 1;
end;
destructor TResampleNode.Destroy;
begin
inherited Destroy;
end;
{ TWindowNode }
procedure TWindowNode.RegulatedData(const P: PComplex; const Len: Integer);
var
I: Integer;
begin
if Len = High(FWnd) + 1 then
for I := 0 to Len - 1 do P[I] := P[I] * FWnd[I];
SendToNext(P, Len);
end;
function TWindowNode.GetOverlap: Integer;
begin
Result := FRegulator.Overlap;
end;
function TWindowNode.GetWindowLen: Integer;
begin
Result := High(FWnd) + 1;
end;
procedure TWindowNode.SetOverlap(AValue: Integer);
begin
FRegulator.Overlap := AValue;
end;
constructor TWindowNode.Create;
begin
inherited;
FRegulator := TStreamRegulator.Create;
FRegulator.OnRegulatedData := @RegulatedData;
end;
destructor TWindowNode.Destroy;
begin
FRegulator.Free;
inherited Destroy;
end;
procedure TWindowNode.SetWindow(const P: PDouble; const Len: Integer);
begin
SetLength(FWnd, Len);
Move(P^, FWnd[0], Len * SizeOf(P^));
FRegulator.Size := Len;
end;
procedure TWindowNode.DoReceiveData(const P: PComplex; const Len: Integer);
begin
FRegulator.ReceiveData(P, Len);
end;
{ TFIRNode }
procedure TFIRNode.SetTimeDomainFIR(const P: PComplex; const Len: Integer);
var
T: array of Complex;
I: Integer;
begin
if Assigned(FFPlan) then
begin
FinalizePlan(FFPlan);
FinalizePlan(FIPlan);
end;
SetLength(T, Len);
ModArg(P, @T[0], Len);
I := NextFastSize(Max(20480, 2 * Len - 1));
FRegulator.Size := I;
SetLength(FHFIR, I);
SetLength(FBuf, I);
SetLength(FRes, I);
FillChar(FHFIR[0], I * SizeOf(FHFIR[0]), 0);
FillChar(FBuf[0], I * SizeOf(FHFIR[0]), 0);
Move(P^, FBuf[0], Len * SizeOf(FHFIR[0]));
FFPlan := BuildFFTPlan(I, False);
Transform(FFPlan, @FBuf[0], @FHFIR[0]);
FIPlan := BuildFFTPlan(I, True);
FRegulator.Overlap := Len - 1;
FTaps := Len;
end;
function TFIRNode.GetProcessingSize: Integer;
begin
Result := Length(FBuf);
end;
procedure TFIRNode.RegulatedData(const P: PComplex; const Len: Integer);
var
I: Integer;
begin
if Assigned(FFPlan) then
begin
if Len <> High(FBuf) + 1 then
begin
TRadioLogger.Report(llWarn, 'TFIRNode.RegulatedData: Len <> High(FBuf) + 1');
Exit;
end;
Transform(FFPlan, P, @FBuf[0]);
for I := 0 to Len - 1 do
FBuf[I] := FBuf[I] * FHFIR[I];
Transform(FIPlan, @FBuf[0], @FRes[0]);
I := FTaps - 1;
SendToNext(@FRes[I], Len - I);
end
else
TRadioLogger.Report(llWarn, 'TFIRNode.RegulatedData: FPlan = nil');
end;
constructor TFIRNode.Create;
begin
inherited Create;
FRegulator := TStreamRegulator.Create;
FRegulator.OnRegulatedData := @RegulatedData;
end;
destructor TFIRNode.Destroy;
begin
FRegulator.Free;
inherited Destroy;
end;
procedure TFIRNode.SetFIR(const P: PComplex; const Len: Integer;
const FreqDomain: Boolean);
var
T: array of Complex;
X: PFFTPlan;
begin
if not FreqDomain then
SetTimeDomainFIR(P, Len)
else begin
SetLength(T, Len);
X := BuildFFTPlan(Len, True);
Transform(X, P, @T[0]);
FinalizePlan(X);
SetTimeDomainFIR(@T[0], Len);
end;
end;
procedure TFIRNode.SetFIR(const P: PDouble; const Len: Integer);
var
X: array of Complex;
I: Integer;
begin
SetLength(X, Len);
for I := 0 to Len - 1 do
begin
X[I].re := P[I];
X[I].im := 0;
end;
SetTimeDomainFIR(PComplex(@X[0]), Len);
end;
procedure TFIRNode.DoReceiveData(const P: PComplex; const Len: Integer);
begin
FRegulator.ReceiveData(P, Len);
end;
{ TRegulatorNode }
procedure TRegulatorNode.DoReceiveData(const P: PComplex; const Len: Integer);
begin
FRegulator.ReceiveData(P, Len);
end;
constructor TRegulatorNode.Create;
begin
inherited Create;
FRegulator := TStreamRegulator.Create;
FRegulator.OnRegulatedData := @SendToNext;
end;
destructor TRegulatorNode.Destroy;
begin
FRegulator.Free;
inherited Destroy;
end;
{ TDataFlowNode }
procedure TDataFlowNode.DoReceiveData(const P: PComplex; const Len: Integer);
begin
end;
destructor TDataFlowNode.Destroy;
begin
if Assigned(FNext) then FNext.Free;
inherited Destroy;
end;
procedure TDataFlowNode.SendToNext(const P: PComplex; const Len: Integer);
begin
if Assigned(FOnSendToNext) then
FOnSendToNext(P, Len)
else if Assigned(FNext) then
FNext.ReceiveData(P, Len);
end;
procedure TDataFlowNode.ReceiveData(const P: PComplex; const Len: Integer);
var
I: Integer;
begin
if FHoldCount <= 0 then
DoReceiveData(P, Len)
else begin
I := High(FCache) + 1;
SetLength(FCache, High(FCache) + Len + 1);
Move(P^, FCache[I], Len * SizeOf(P^));
end;
end;
procedure TDataFlowNode.Hold;
begin
Inc(FHoldCount);
end;
procedure TDataFlowNode.ReleaseHold;
begin
Dec(FHoldCount);
if FHoldCount = 0 then
begin
if High(FCache) >= 0 then
begin
DoReceiveData(@FCache[0], High(FCache) + 1);
SetLength(FCache, 0);
end;
end;
end;
function TDataFlowNode.Connect(ANext: TDataFlowNode): TDataFlowNode;
begin
FNext := ANext;
Result := ANext;
end;
function TDataFlowNode.LastNode: TDataFlowNode;
begin
Result := Self;
while Assigned(Result.FNext) do Result := Result.FNext;
end;
end.