vote up 2 vote down star
3

I don't want to write my own because i'm afraid i might miss something and/or rip off other people's work, so is there an ObjectPool (or similar) class existing in a library for .NET?

By object pool, i mean a class that assists caching of objects that take a long time to create, generally used to improve performance.

flag

1  
Perhaps you could describe what you expect this ObjectPool to do for you? – Matthew Scharley Nov 9 at 2:02
1  
I believe en.wikipedia.org/wiki/Object_pool is a perfect description. – RCIX Nov 9 at 2:05
instead of a wiki link, please update your question with a description of what you want an ObjectPool to do. – Mitch Wheat Nov 9 at 2:07
Added, though the link still applies. – RCIX Nov 9 at 2:11

5 Answers

vote up 4 vote down check

A while back I faced this problem and came up with a lightweight (rough'n'ready) threadsafe (I hope) pool that has proved very useful, reusable and robust:

    public class Pool<T> where T : class
    {
        private readonly Queue<AsyncResult<T>> asyncQueue = new Queue<AsyncResult<T>>();
        private readonly Func<T> createFunction;
        private readonly HashSet<T> pool;
        private readonly Action<T> resetFunction;

        public Pool(Func<T> createFunction, Action<T> resetFunction, int poolCapacity)
        {
            this.createFunction = createFunction;
            this.resetFunction = resetFunction;
            pool = new HashSet<T>();
            CreatePoolItems(poolCapacity);
        }

        public Pool(Func<T> createFunction, int poolCapacity) : this(createFunction, null, poolCapacity)
        {
        }

        public int Count
        {
            get
            {
                return pool.Count;
            }
        }

        private void CreatePoolItems(int numItems)
        {
            for (var i = 0; i < numItems; i++)
            {
                var item = createFunction();
                pool.Add(item);
            }
        }

        public void Push(T item)
        {
            if (item == null)
            {
                Console.WriteLine("Push-ing null item. ERROR");
                throw new ArgumentNullException();
            }
            if (resetFunction != null)
            {
                resetFunction(item);
            }
            lock (asyncQueue)
            {
                if (asyncQueue.Count > 0)
                {
                    var result = asyncQueue.Dequeue();
                    result.SetAsCompletedAsync(item);
                    return;
                }
            }
            lock (pool)
            {
                pool.Add(item);
            }
        }

        public T Pop()
        {
            T item;
            lock (pool)
            {
                if (pool.Count == 0)
                {
                    return null;
                }
                item = pool.First();
                pool.Remove(item);
            }
            return item;
        }

        public IAsyncResult BeginPop(AsyncCallback callback)
        {
            var result = new AsyncResult<T>();
            result.AsyncCallback = callback;
            lock (pool)
            {
                if (pool.Count == 0)
                {
                    lock (asyncQueue)
                    {
                        asyncQueue.Enqueue(result);
                        return result;
                    }
                }
                var poppedItem = pool.First();
                pool.Remove(poppedItem);
                result.SetAsCompleted(poppedItem);
                return result;
            }
        }

        public T EndPop(IAsyncResult asyncResult)
        {
            var result = (AsyncResult<T>) asyncResult;
            return result.EndInvoke();
        }
    }

In order to avoid any interface requirements of the pooled objects, both the creation and resetting of the objects is performed by user supplied delegates: i.e.

Pool<MemoryStream> msPool = new Pool<MemoryStream>(() => new MemoryStream(2048), pms => {
        pms.Position = 0;
        pms.SetLength(0);
    }, 500);

In the case that the pool is empty, the BeginPop/EndPop pair provide an APM (ish) means of retrieving the object asynchronously when one becomes available (using Jeff Richter's excellent AsyncResult<TResult> implementation).

I can't quite remember why it is constained to T : class... there's probably none.

link|flag
Why exactly would you use a HashSet? – Dan Nov 9 at 4:04
y'see, that code is now released under a CC-Wiki license so i can't use it without releasing my code under that license, and i'm not sure that i want to do that... – RCIX Nov 9 at 4:16
I don't understand how the proposed solution is related to the question. It seems like a fancy Queue rather than a ObjectsPool. – Boris Lipschitz Nov 9 at 4:29
You could use it as inspiration for your ObjectPool, rather than directly copy it. – AP Erebus Nov 9 at 4:33
When I see code like this, I just kind of "drool" thinking about how much I don't understand it, and would like to understand it :) And, one day, perhaps, I will. Yes, I voted the message up. thanks, – BillW Nov 9 at 5:51
show 2 more comments
vote up 1 vote down

In the upcoming version of .NET (4.0), there's a ConcurrentBag<T> class which can easily be utilized in an ObjectPool<T> implementation; in fact the MSDN article on the ConcurrentBag<T> class actually includes example code which is an ObjectPool<T> implementation.

If you don't have access to the latest .NET framework, I would advise implementing an ObjectPool<T> as a LinkedList<T> internally; for thread safety, you'd only need to lock the last node for adding or the first node for retrieving objects.

link|flag
vote up 0 vote down

Sounds like you need a Factory pattern with caching.

You can try use .net reflector to look at the ThreadPool implementation.

link|flag
vote up 2 vote down

CodeProject has a sample ObjectPool implementation. Have a look here. Alternatively, there are some implementations here, here, and here.

link|flag
vote up 1 vote down

How about System.Collections.Generic.Dictionary?

link|flag
2  
While a dictionary might be used in an object pool implementation, it doesn't offer any of the features (such as a strategy for satisfying requests when the pool is empty), except storage. – Jeff Sternal Nov 9 at 2:23
It's usually, straight forward to add a "Factory" support as well as multithreading. The Pool might preload the objects on start (e.g from database) or create them on fly when requested. The full design of such class depends on your requirements. – Boris Lipschitz Nov 9 at 2:31

Your Answer

Get an OpenID
or

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