aboutsummaryrefslogtreecommitdiff
path: root/Spv.Generator/GeneratorPool.cs
diff options
context:
space:
mode:
authorTSR Berry <20988865+TSRBerry@users.noreply.github.com>2023-04-08 01:22:00 +0200
committerMary <thog@protonmail.com>2023-04-27 23:51:14 +0200
commitcee712105850ac3385cd0091a923438167433f9f (patch)
tree4a5274b21d8b7f938c0d0ce18736d3f2993b11b1 /Spv.Generator/GeneratorPool.cs
parentcd124bda587ef09668a971fa1cac1c3f0cfc9f21 (diff)
Move solution and projects to src
Diffstat (limited to 'Spv.Generator/GeneratorPool.cs')
-rw-r--r--Spv.Generator/GeneratorPool.cs58
1 files changed, 0 insertions, 58 deletions
diff --git a/Spv.Generator/GeneratorPool.cs b/Spv.Generator/GeneratorPool.cs
deleted file mode 100644
index f6c92918..00000000
--- a/Spv.Generator/GeneratorPool.cs
+++ /dev/null
@@ -1,58 +0,0 @@
-using System.Collections.Generic;
-
-namespace Spv.Generator
-{
- public class GeneratorPool<T> where T : class, new()
- {
- private List<T[]> _pool;
- private int _chunkIndex = -1;
- private int _poolIndex = -1;
- private int _initialSize;
- private int _poolSizeIncrement;
-
- public GeneratorPool(): this(1000, 200) { }
-
- public GeneratorPool(int chunkSizeLimit, int poolSizeIncrement)
- {
- _initialSize = chunkSizeLimit;
- _poolSizeIncrement = poolSizeIncrement;
-
- _pool = new(chunkSizeLimit * 2);
-
- AddChunkIfNeeded();
- }
-
- public T Allocate()
- {
- if (++_poolIndex >= _poolSizeIncrement)
- {
- AddChunkIfNeeded();
-
- _poolIndex = 0;
- }
-
- return _pool[_chunkIndex][_poolIndex];
- }
-
- private void AddChunkIfNeeded()
- {
- if (++_chunkIndex >= _pool.Count)
- {
- T[] pool = new T[_poolSizeIncrement];
-
- for (int i = 0; i < _poolSizeIncrement; i++)
- {
- pool[i] = new T();
- }
-
- _pool.Add(pool);
- }
- }
-
- public void Clear()
- {
- _chunkIndex = 0;
- _poolIndex = -1;
- }
- }
-}