summaryrefslogtreecommitdiff
path: root/core/java/android/util/FinitePool.java
diff options
context:
space:
mode:
authorRomain Guy <>2009-03-31 17:53:57 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2009-03-31 17:53:57 -0700
commitd1b3dd058d2015cd1f2a3ef7fb3798f0d7923fe3 (patch)
treede11a78687ff10d75abd8806167d3d92f4a1c575 /core/java/android/util/FinitePool.java
parent2c62f84add1fdddd51b38d0cc373be6b8b75a28b (diff)
AI 143894: am: CL 143890 Fixes #1749387. Improve the pooling of the VelocityTracker class. This introduces a new, hidden, API for pooling objects easily.
Original author: romainguy Merged from: //branches/donutburger/... Automated import of CL 143894
Diffstat (limited to 'core/java/android/util/FinitePool.java')
-rw-r--r--core/java/android/util/FinitePool.java86
1 files changed, 86 insertions, 0 deletions
diff --git a/core/java/android/util/FinitePool.java b/core/java/android/util/FinitePool.java
new file mode 100644
index 000000000000..3ef82930e9a9
--- /dev/null
+++ b/core/java/android/util/FinitePool.java
@@ -0,0 +1,86 @@
+/*
+ * Copyright (C) 2009 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.util;
+
+/**
+ * @hide
+ */
+class FinitePool<T extends Poolable<T>> implements Pool<T> {
+ /**
+ * Factory used to create new pool objects
+ */
+ private final PoolableManager<T> mManager;
+ /**
+ * Maximum number of objects in the pool
+ */
+ private final int mLimit;
+ /**
+ * If true, mLimit is ignored
+ */
+ private final boolean mInfinite;
+
+ /**
+ * Next object to acquire
+ */
+ private T mRoot;
+ /**
+ * Number of objects in the pool
+ */
+ private int mPoolCount;
+
+ FinitePool(PoolableManager<T> manager) {
+ mManager = manager;
+ mLimit = 0;
+ mInfinite = true;
+ }
+
+ FinitePool(PoolableManager<T> manager, int limit) {
+ if (limit <= 0) throw new IllegalArgumentException("The pool limit must be > 0");
+
+ mManager = manager;
+ mLimit = limit;
+ mInfinite = false;
+ }
+
+ public T acquire() {
+ T element;
+
+ if (mRoot != null) {
+ element = mRoot;
+ mRoot = element.getNextPoolable();
+ mPoolCount--;
+ } else {
+ element = mManager.newInstance();
+ }
+
+ if (element != null) {
+ element.setNextPoolable(null);
+ mManager.onAcquired(element);
+ }
+
+ return element;
+ }
+
+ public void release(T element) {
+ if (mInfinite || mPoolCount < mLimit) {
+ mPoolCount++;
+ element.setNextPoolable(mRoot);
+ mRoot = element;
+ }
+ mManager.onReleased(element);
+ }
+}