I have written a little circular buffer for integers. My requirements were to add an integer on at a time and to read from the circular buffer as though it were an array wrapping around automatically.
In use I add integers 1 at a time, until full, then do a calculation on all the values in the buffer, delete 5 values and repeat continuously.
With a small buffer size, I have tested on 17 and 29, and walking through slowly, everything seems to work ok. With a larger buffer size, typically 501, I seem to be getting wrap-around issues, but I can't see where they are.
Please can you look at the code to see if you can see the issue?
Also, if there are any speed optimisations, they would be appreciated, too.
Thank you for your help,
Mike
unit CircularBufferIntU;
interface
uses
SysUtils, Windows;
type
TIntegerCircularBuffer = class(TObject)
private
FBuffer: PIntegerArray;
FFullSize: integer;
FWritePos: integer;
FReadPos: integer;
FSampleCount: integer;
function GetIntAtIndex(AIndex: word): integer;
function GetReadAvail: integer;
function GetWriteAvail: integer;
public
constructor Create(ASize: Integer); virtual;
destructor Destroy; override;
function AddSample(const AValue: integer): boolean;
procedure Delete(ACount: integer);
procedure SetFillPoint(AFillPoint: integer);
property FullSize: integer read FFullSize;
property ReadAvail: integer read GetReadAvail;
property WriteAvail: integer read GetWriteAvail;
property SampleCount: integer read FSampleCount;
property Samples[Index: word]: integer read GetIntAtIndex; default;
end;
implementation
uses
Math;
constructor TIntegerCircularBuffer.Create(ASize: Integer);
begin
inherited Create;
FFullSize := ASize;
FSampleCount := 0;
FReadPos := 0;
FWritePos := 0;
FBuffer := AllocMem(ASize * sizeof(integer));
end;
destructor TIntegerCircularBuffer.Destroy;
begin
FreeMem(FBuffer);
inherited Destroy;
end;
function TIntegerCircularBuffer.AddSample(const AValue: integer): boolean;
begin
result := true;
if (GetWriteAvail < 1) then begin
result := false;
Exit;
end;
FBuffer^[FWritePos] := AValue;
if (FWritePos = FFullSize -1) then FWritePos := 0 else inc(FWritePos);
inc(FSampleCount);
end;
procedure TIntegerCircularBuffer.Delete(ACount: integer);
begin
if (ACount <= 0 ) then begin
Exit;
end;
if (ACount >= FSampleCount) then begin
FSampleCount := 0;
FReadPos := FWritePos;
Exit;
end;
inc(FReadPos, ACount);
FReadPos := FReadPos mod FFullSize;
dec(FSampleCount, ACount);
end;
function TIntegerCircularBuffer.GetIntAtIndex(AIndex: word): integer;
var
ii: integer;
begin
ii := FReadPos + AIndex;
if (ii > FFullSize -1) then
ii := ii - FFullSize;
result := FBuffer^[ii];
end;
function TIntegerCircularBuffer.GetReadAvail: integer;
begin
result := FSampleCount;
end;
function TIntegerCircularBuffer.GetWriteAvail: integer;
begin
result := FFullSize - FSampleCount;
end;
procedure TIntegerCircularBuffer.SetFillPoint(AFillPoint: integer);
begin
FReadPos := 0;
FWritePos := AFillPoint;
FillChar(FBuffer^[0], SizeOf(Integer)* FFullSize, 0);
end;
end.