I have a DirectShow push source filter written in Delphi 6 using the DSPACK component library. I am implementing a blocking strategy for the push source filter's FillBuffer() call. The push source filter receives audio data into one or more buffers stored in a collection of buffers. Every method in the buffer collection is protected by a Critical Section.
Each buffer in the collection is being fed data by a different source and each source has its own thread. The FillBuffer() call blocks until every buffer in the collection has enough data to satisfy the amount of data that the FillBuffer() was asked to provide since the data is mixed together to form a merged buffer that is returned to the caller.
Here is the strategy I have devised for avoiding race conditions and deadlocks. The buffer storage collection has a method called isEnoughData() that does this:
- Acquires the same Critical Section that is guarding all the other methods in the collection.
- Iterates each buffer checking to see if each buffer has enough data to satisfy the current request.
- If there is enough data, it returns TRUE
- If there is not enough data, it acquires a Mutex used to facilitate blocking and returns FALSE and stores the number of bytes requested that could not be filled in FNumPendingBytesRequested.
- Before returning it releases the Critical Section of course.
FillBuffer() does the following:
- Calls isEnoughData()
- If TRUE was returned, it returns the mixed (merged buffer) data to the caller in the Sample provided.
- If FALSE, it does a WaitForSingleObject() on the Mutex that was acquired by the collection during the isEnoughData() call as outlined above, thereby blocking until enough data shows up. When it acquires the Mutex, it grabs the data from the collection and returns it to the caller, then releases the Mutex.
All of the methods in the storage collection that add data to any buffer in the collection check to see if FNumPendingBytesRequested can now be satisfied before returning. If so, then the Mutex is released thereby unblocking the FillBuffer() call, which then grabs the data and returns it. Naturally, the collection releases the Mutex when it is destroyed.
This seems pretty bulletproof to me. I believe it protects adequately against race conditions between the FillBuffer() call to isEnoughData() and other threads adding data to the collection. I also can't see any places where a race condition or deadlock might occur. Am I correct on this? Any tips or caveats on the strategy are appreciated too.
The big question: The only potential trouble spot I can see is if another thread adds enough data to release the Mutex before FillBuffer() has a chance to call WaitForSingleObject() and block. But my understanding is that calling WaitForSingleObject() on a sync object that is not owned by anyone immediately returns with ownership of the object, so it should not be a problem since that means the necessary data is now available. Is my understanding correct?