vote up 3 vote down star

I have a list wrapper that maintains two Tstringlists and a TClassList

I need this to be thread safe, such that:

  • Concurrent writes are not allowed (wait state of some sort should be entered)
  • Reading while writing (or vice versa) is not allowed (wait state of some sort should be entered)
  • Concurrent reads are allowed

Any ideas on how I can do this? My instinct tells me it needs more than just a critical section, perhaps a semaphore or "usage counter", perhaps one of these in conjunction with a CS.

I'm just not quite sure where to start - anything from an overall approach in english to psuedo-code, to delphi implementation or external link would be much appreciated.

flag

67% accept rate

3 Answers

vote up 0 vote down

You really should look at TThreadList.

The methods .Add, .Remove, .Clear automatically lock the list for you. If needed, you can also lock/unlock as needed:

x.LockList; 
try 
  //do whatever
finally  
  x.Unlocklist; 
end;

TMultiReadExclusiveWriteSynchronizer is a grand idea but I don't know if they ever ironed all the bugs out. It has always had issues under load.

link|flag
That is not what the OP is wanting, as LockList() locks the list for exclusive access - parallel read access is therefore impossible. – mghie Dec 1 '08 at 8:33
I was completely unaware that TThreadList even existed until now. I had been using TStringList objects with all sorts of CriticalSections in my code. This will make life much simpler! – Mick Dec 1 '08 at 16:37
vote up 3 vote down

Have a look at this tutorial. Threading the Delphi Way

Look at Chapter 11, but it's all good stuff.

link|flag
Awesome Link. Could have used this when I was doing more in Delphi a few years ago! – KiwiBastard Nov 19 '08 at 17:20
vote up 8 vote down

You should have a look at the TMultiReadExclusiveWriteSynchronizer class declared in sysutils.pas...

link|flag
Probably the longest class name in the RTL :) – AhmetC Nov 19 '08 at 17:08
they could so easily have called it TMREWS – Steve Nov 19 '08 at 17:40
They could easily have called it TGreenIdea and conveyed as much information as TMREWS would. Don't be afraid of long identifier names. – Rob Kennedy Nov 19 '08 at 21:07

Your Answer

Get an OpenID
or

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