Exemple #1
0
        public void TestResourcePoolCreatesAndReusesItems()
        {
            var resources   = new List <string>();
            var factoryMock = new Mock <IStringFactory>();

            factoryMock.Setup(x => x.GetString())
            .Returns(() =>
            {
                if (resources.Count < 5)
                {
                    var resource = Guid.NewGuid().ToString();
                    resources.Add(resource);
                    return(resource);
                }

                return(null);
            });


            using (var pool = new ResourcePool <string>(x => factoryMock.Object.GetString())
            {
                CleanupPoolItem = (resource) => CollectionAssert.Contains(resources, resource)
            })
            {
                var list  = Enumerable.Range(0, 10).ToList();
                var start = DateTime.Now;
                Parallel.ForEach(list, x =>
                {
                    using (var item = pool.GetItem())
                    {
                        string resource = item;
                        Thread.Sleep(5000);
                    }
                });

                var duration = DateTime.Now - start;
                Assert.GreaterOrEqual(duration, TimeSpan.FromSeconds(9.9));
                Assert.Less(duration, TimeSpan.FromSeconds(25));


                Parallel.ForEach(list, x =>
                {
                    using (var item = pool.GetItem())
                    {
                        string resource = item;
                    }
                });
            }
        }
        internal short SetWaitHandle(int waitTimeout)
        {
            //this uses GetNextMessageId to generate new ids, but also reuses ids as much as possible. This VASTLY reduces the number of replybuckets needed.
            ResourcePoolItem <short> idItem = idPool.GetItem();
            short       waitId = idItem.Item;
            ReplyBucket bucket = null;

            if (!replies.ContainsKey(waitId)) //we haven't used this waitId yet
            {
                replyLock.Write(() =>
                {
                    if (!replies.ContainsKey(waitId))
                    {
                        if (Log.IsDebugEnabled)
                        {
                            Log.DebugFormat("SetWaitHandle() Creates new ReplyBucket.");
                        }
                        replies.Add(waitId, new ReplyBucket());
                    }
                });
            }

            replyLock.Read(() => { bucket = replies[waitId]; });

            bucket.SetValues(waitTimeout, ReplyEvent, idItem);

            return(waitId);
        }
Exemple #3
0
        public void TestEmptyPoolThrowsExceptionIfResourcesCantBeCreated()
        {
            var factoryMock = new Mock <IStringFactory>();

            using (var pool = new ResourcePool <string>(x => factoryMock.Object.GetString()))
            {
                Assert.Throws <InvalidOperationException>(() => pool.GetItem());
            }
        }
Exemple #4
0
        public void TestPoolThrowsExceptionIfResourcesInUse()
        {
            var resources   = 0;
            var factoryMock = new Mock <IStringFactory>();

            factoryMock.Setup(x => x.GetString())
            .Returns(() => resources++ < 5 ? Guid.NewGuid().ToString() : null);

            var pool = new ResourcePool <string>(x => factoryMock.Object.GetString());
            var item = pool.GetItem();

            Assert.Throws <InvalidOperationException>(() => pool.Dispose());
        }