vote up 5 vote down star

Hi guys!

I want create a Playlist control. I have a lot of information to display into a TStringList. I want to assign a record to TStringList.Objects instead of an object because so many objects may take a while to create/destroy. It also take a lot of RAM.

A record will be much faster and slim. How can I do that?

TYPE
 AMyRec= packed record
        FullName     : string[255];    
        RelativePath : boolean;        
        IsInvalid    : boolean;        
        InCache      : boolean;        
        etc
       end;
flag
How are you creating your records? Using New(PMyRec) will take a similar amount of time (or any other method that creates them on the heap) – Gerry Dec 14 '08 at 23:26

6 Answers

vote up 6 vote down

You can use a TList to a Pointer of your record.

Eg:

Type    
PMyrec = ^AMyRec;

usage

var
   MyRec : PMyRec;
new(MyRec);
MyRec^.Fullname := 'test';
MyRec^.RelativePath := false;

etc

{ MyList is a List you have create elsewhere }

MyList.Add(MyRec);

You'll have to handle disposing of items from the list eg

Dispose(PMyRec(MyList[Index]));

To use an item from the list:

var
  MyRec : PMyRec;

PMyRec := MyList.Items[i];
txtBox.Text = PMyRec^.Fullname;

etc

link|flag
1  
Please make the following correction: Dispose(PMyRec(MyList[Index])); The type-cast is required so that Dispose correctly disposes of the contents of the record, such as AnsiStrings, dynamic arrays, and interfaces. – Rob Kennedy Dec 15 '08 at 0:50
Whoops - well spotted – KiwiBastard Dec 17 '08 at 21:42
vote up 1 vote down

SORRY!!!! I wanted to say TStringGrid instead of TStringList. My mistake.

I have tried something like this now (based on KiwiBastard's example):

Type
 AMyRec= packed record
        FullName     : string[255];
        RelativePath : boolean;
        IsInvalid    : boolean;
       end;
 PMyrec = ^AMyRec;

procedure TPlaylst.Button1Click(Sender: TObject);
VAR MyRec1, MyRec2: PMyRec;
    PlaylistCtrl: TStringGrid;
begin
 {SET}
 new(MyRec1);
 MyRec1^.Fullname := 'test';
 MyRec1^.RelativePath := false;
 PlaylistCtrl.Objects[1,1]:= MyRec1;    <------ Compiler error: "Incompatible types"


 {GET}
 ...
end;


"allocate the memory for the records takes also time." quantendrehung

Yes, but isn't an object (even the most rudimentary one, TObject) larger than a record? When you have 10000 objects, you will feel the difference. Am I wrong? :)

link|flag
Again, just do a typecast: PlaylistCtrl.Objects[1,1]:= Pointer(MyRec1); and the reverse to get the data back out: MyRec := TMyRec(PlaylistCtrl.Objects[1,1]); – Mike Sutton Dec 15 '08 at 0:36
An object is four bytes larger than the corresponding record. And Mike's second type-cast should be to PMyRec, not TMyRec. – Rob Kennedy Dec 15 '08 at 0:49
So, using records instead of objects will "eat" about the same amount of RAM? – Altar Dec 15 '08 at 1:19
you really should edit the original or create a new question. The correct answer to the original question has already been given. Stack Overflow works best when its single question, all possible answers. – skamradt Dec 15 '08 at 3:45
vote up 1 vote down

Are you sure you are willing to allocate all those objects? By the look on the record structure it looks like you want an object per row - not per cell. To do that you have at least 2 options:

  1. (My favorite because of the freedom it gives) You use TDrawGrid instead and draw the content of your cell manually. It's really not that hard!
  2. You make an object that encapsulates this record. It's an easy one as well, like for example:

type
  TMyRec= packed record
    FullName     : string[255];
    RelativePath : boolean;
    IsInvalid    : boolean;
  end;
  TMyData = object (TObject)
  private
    FData: TMRec;
  public
    constructor Create(AData: TMyRec);
    property FullName: String read FData.FullName write FData.FullName;
    property RelativePath: Boolean read FData.RelativePath write FData.RelativePath;
    property IsInvalid: Boolean read FData.IsInvalid write FData.IsInvalid;
  end;

...

constructor TMyData.Create(AData: TMyRec);
begin
  FData := AData;
end;

Now whenever you want to hook up your data to the grid you just pack it into that object and you can then use the Objects collection.

Now instead of going through all that hassle just create an event handler for TDrawGrid.DrawCell like

procedure TMainForm.GrdPathsDrawCell(Sender: Object; ...);

use GrdPaths.Canvas.Handle with DrawText or if Unicode is needed use DrawTextW (both come from Windows API so there's tons of examples of how to use it) and you'll save you and your client a lot of frustration, memory and above all - time.

link|flag
vote up 1 vote down

you can using the record Pointer.

List.AddObject(MyRecord.FullName, @MyRecord);
link|flag
No, you can't do that. The record is bigger than four bytes. Square peg, round hole. – Rob Kennedy Dec 15 '08 at 0:45
Yes you can. Every Tlist has a 4-byte Object you can use for any purpose. You can allocate your record and set this object as a pointer to the record so you can easily find it. So this is the correct answer. – lkessler Dec 15 '08 at 3:15
Wouldn't you need to make sure you put the record on the heap instead of the stack? If it is on the stack then it will be stale when it goes out of scope. – Jim McKeeth Dec 15 '08 at 4:08
That would be @MyRecord and would not work outside of the method since the record is tack based. – Lars Truijens Dec 15 '08 at 8:23
This will not work, because a record is not an object and not a pointer either. You would have to make sure the record is stored on the heap and assign a pointer to it to the list. – Thomas Mueller Dec 15 '08 at 10:04
show 1 more comment
vote up 0 vote down

allocate the memory for the records takes also time.

create your record and put the pointer to the objects in stringlist.

link|flag
vote up 0 vote down

Doesn't creating a large number of objects (over 30000) take more memory than creating the same amount of records?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.