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.
link|improve this question
I can not help you to solve the problem, but I've noticed two things. 1.What is the advantage of using PIntegerArray over dynamic array? As far as I see it, by introducing PIntegerArray you are complicating yourself a life. 2.What if I would like to store an Integer = 0, then your SetFillpoint function does not have to much sense or maybe I do not understand something? :) – Wodzu Dec 21 '11 at 12:01
3  
I've voted to close this as "too localized." I don't see how anyone else on the Internet would care to know the answer of what's wrong with your circular-buffer homework. Can you turn this into a question with more general interest? Maybe figure out what class of problem you're dealing with, and then ask how to debug such a problem. By the way, your code works fine for me: ideone.com/1yhh3. Maybe your test case it wrong. Or maybe mine is. – Rob Kennedy Dec 21 '11 at 13:55
I think it is a useful little uncomplicated circular buffer that others can take and make use of. It is not homework, by the way. So I'd like it kept open for the being being, please. – Mike Vincent Dec 21 '11 at 14:40
Thanks for the test at ideone.com - a new site to me. – Mike Vincent Dec 21 '11 at 14:41
1  
A dynamic array would simplify your code, Mike. You wouldn't need to do arithmetic to convert a number of buffer elements into a number of bytes. You could use array syntax for accessing the buffer instead of pointer-to-array syntax. You wouldn't need to call FreeMem at all, which means you could remove the destructor entirely. – Rob Kennedy Dec 21 '11 at 15:34
show 5 more comments
feedback

closed as too localized by Rob Kennedy, Serg, mghie, martin clayton, Graviton Dec 22 '11 at 7:55

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

Browse other questions tagged or ask your own question.