• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2007 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package android.util;
18 
19 import android.annotation.UnsupportedAppUsage;
20 
21 import com.android.internal.util.ArrayUtils;
22 import com.android.internal.util.GrowingArrayUtils;
23 
24 import libcore.util.EmptyArray;
25 
26 /**
27  * Map of {@code long} to {@code long}. Unlike a normal array of longs, there
28  * can be gaps in the indices. It is intended to be more memory efficient than using a
29  * {@code HashMap}, both because it avoids
30  * auto-boxing keys and values and its data structure doesn't rely on an extra entry object
31  * for each mapping.
32  *
33  * <p>Note that this container keeps its mappings in an array data structure,
34  * using a binary search to find keys.  The implementation is not intended to be appropriate for
35  * data structures
36  * that may contain large numbers of items.  It is generally slower than a traditional
37  * HashMap, since lookups require a binary search and adds and removes require inserting
38  * and deleting entries in the array.  For containers holding up to hundreds of items,
39  * the performance difference is not significant, less than 50%.</p>
40  *
41  * <p>It is possible to iterate over the items in this container using
42  * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using
43  * <code>keyAt(int)</code> with ascending values of the index will return the
44  * keys in ascending order, or the values corresponding to the keys in ascending
45  * order in the case of <code>valueAt(int)</code>.</p>
46  *
47  * @hide
48  */
49 public class LongSparseLongArray implements Cloneable {
50     @UnsupportedAppUsage(maxTargetSdk = 28) // The type isn't even public.
51     private long[] mKeys;
52     @UnsupportedAppUsage(maxTargetSdk = 28) // The type isn't even public.
53     private long[] mValues;
54     @UnsupportedAppUsage(maxTargetSdk = 28) // The type isn't even public.
55     private int mSize;
56 
57     /**
58      * Creates a new SparseLongArray containing no mappings.
59      */
LongSparseLongArray()60     public LongSparseLongArray() {
61         this(10);
62     }
63 
64     /**
65      * Creates a new SparseLongArray containing no mappings that will not
66      * require any additional memory allocation to store the specified
67      * number of mappings.  If you supply an initial capacity of 0, the
68      * sparse array will be initialized with a light-weight representation
69      * not requiring any additional array allocations.
70      */
LongSparseLongArray(int initialCapacity)71     public LongSparseLongArray(int initialCapacity) {
72         if (initialCapacity == 0) {
73             mKeys = EmptyArray.LONG;
74             mValues = EmptyArray.LONG;
75         } else {
76             mKeys = ArrayUtils.newUnpaddedLongArray(initialCapacity);
77             mValues = new long[mKeys.length];
78         }
79         mSize = 0;
80     }
81 
82     @Override
clone()83     public LongSparseLongArray clone() {
84         LongSparseLongArray clone = null;
85         try {
86             clone = (LongSparseLongArray) super.clone();
87             clone.mKeys = mKeys.clone();
88             clone.mValues = mValues.clone();
89         } catch (CloneNotSupportedException cnse) {
90             /* ignore */
91         }
92         return clone;
93     }
94 
95     /**
96      * Gets the long mapped from the specified key, or <code>0</code>
97      * if no such mapping has been made.
98      */
get(long key)99     public long get(long key) {
100         return get(key, 0);
101     }
102 
103     /**
104      * Gets the long mapped from the specified key, or the specified value
105      * if no such mapping has been made.
106      */
get(long key, long valueIfKeyNotFound)107     public long get(long key, long valueIfKeyNotFound) {
108         int i = ContainerHelpers.binarySearch(mKeys, mSize, key);
109 
110         if (i < 0) {
111             return valueIfKeyNotFound;
112         } else {
113             return mValues[i];
114         }
115     }
116 
117     /**
118      * Removes the mapping from the specified key, if there was any.
119      */
delete(long key)120     public void delete(long key) {
121         int i = ContainerHelpers.binarySearch(mKeys, mSize, key);
122 
123         if (i >= 0) {
124             removeAt(i);
125         }
126     }
127 
128     /**
129      * Removes the mapping at the given index.
130      */
removeAt(int index)131     public void removeAt(int index) {
132         System.arraycopy(mKeys, index + 1, mKeys, index, mSize - (index + 1));
133         System.arraycopy(mValues, index + 1, mValues, index, mSize - (index + 1));
134         mSize--;
135     }
136 
137     /**
138      * Adds a mapping from the specified key to the specified value,
139      * replacing the previous mapping from the specified key if there
140      * was one.
141      */
put(long key, long value)142     public void put(long key, long value) {
143         int i = ContainerHelpers.binarySearch(mKeys, mSize, key);
144 
145         if (i >= 0) {
146             mValues[i] = value;
147         } else {
148             i = ~i;
149 
150             mKeys = GrowingArrayUtils.insert(mKeys, mSize, i, key);
151             mValues = GrowingArrayUtils.insert(mValues, mSize, i, value);
152             mSize++;
153         }
154     }
155 
156     /**
157      * Returns the number of key-value mappings that this SparseIntArray
158      * currently stores.
159      */
size()160     public int size() {
161         return mSize;
162     }
163 
164     /**
165      * Given an index in the range <code>0...size()-1</code>, returns
166      * the key from the <code>index</code>th key-value mapping that this
167      * SparseLongArray stores.
168      *
169      * <p>The keys corresponding to indices in ascending order are guaranteed to
170      * be in ascending order, e.g., <code>keyAt(0)</code> will return the
171      * smallest key and <code>keyAt(size()-1)</code> will return the largest
172      * key.</p>
173      *
174      * <p>For indices outside of the range <code>0...size()-1</code>, the behavior is undefined for
175      * apps targeting {@link android.os.Build.VERSION_CODES#P} and earlier, and an
176      * {@link ArrayIndexOutOfBoundsException} is thrown for apps targeting
177      * {@link android.os.Build.VERSION_CODES#Q} and later.</p>
178      */
keyAt(int index)179     public long keyAt(int index) {
180         if (index >= mSize && UtilConfig.sThrowExceptionForUpperArrayOutOfBounds) {
181             // The array might be slightly bigger than mSize, in which case, indexing won't fail.
182             // Check if exception should be thrown outside of the critical path.
183             throw new ArrayIndexOutOfBoundsException(index);
184         }
185         return mKeys[index];
186     }
187 
188     /**
189      * Given an index in the range <code>0...size()-1</code>, returns
190      * the value from the <code>index</code>th key-value mapping that this
191      * SparseLongArray stores.
192      *
193      * <p>The values corresponding to indices in ascending order are guaranteed
194      * to be associated with keys in ascending order, e.g.,
195      * <code>valueAt(0)</code> will return the value associated with the
196      * smallest key and <code>valueAt(size()-1)</code> will return the value
197      * associated with the largest key.</p>
198      *
199      * <p>For indices outside of the range <code>0...size()-1</code>, the behavior is undefined for
200      * apps targeting {@link android.os.Build.VERSION_CODES#P} and earlier, and an
201      * {@link ArrayIndexOutOfBoundsException} is thrown for apps targeting
202      * {@link android.os.Build.VERSION_CODES#Q} and later.</p>
203      */
valueAt(int index)204     public long valueAt(int index) {
205         if (index >= mSize && UtilConfig.sThrowExceptionForUpperArrayOutOfBounds) {
206             // The array might be slightly bigger than mSize, in which case, indexing won't fail.
207             // Check if exception should be thrown outside of the critical path.
208             throw new ArrayIndexOutOfBoundsException(index);
209         }
210         return mValues[index];
211     }
212 
213     /**
214      * Returns the index for which {@link #keyAt} would return the
215      * specified key, or a negative number if the specified
216      * key is not mapped.
217      */
indexOfKey(long key)218     public int indexOfKey(long key) {
219         return ContainerHelpers.binarySearch(mKeys, mSize, key);
220     }
221 
222     /**
223      * Returns an index for which {@link #valueAt} would return the
224      * specified key, or a negative number if no keys map to the
225      * specified value.
226      * Beware that this is a linear search, unlike lookups by key,
227      * and that multiple keys can map to the same value and this will
228      * find only one of them.
229      */
indexOfValue(long value)230     public int indexOfValue(long value) {
231         for (int i = 0; i < mSize; i++)
232             if (mValues[i] == value)
233                 return i;
234 
235         return -1;
236     }
237 
238     /**
239      * Removes all key-value mappings from this SparseIntArray.
240      */
clear()241     public void clear() {
242         mSize = 0;
243     }
244 
245     /**
246      * Puts a key/value pair into the array, optimizing for the case where
247      * the key is greater than all existing keys in the array.
248      */
append(long key, long value)249     public void append(long key, long value) {
250         if (mSize != 0 && key <= mKeys[mSize - 1]) {
251             put(key, value);
252             return;
253         }
254 
255         mKeys = GrowingArrayUtils.append(mKeys, mSize, key);
256         mValues = GrowingArrayUtils.append(mValues, mSize, value);
257         mSize++;
258     }
259 
260     /**
261      * {@inheritDoc}
262      *
263      * <p>This implementation composes a string by iterating over its mappings.
264      */
265     @Override
toString()266     public String toString() {
267         if (size() <= 0) {
268             return "{}";
269         }
270 
271         StringBuilder buffer = new StringBuilder(mSize * 28);
272         buffer.append('{');
273         for (int i=0; i<mSize; i++) {
274             if (i > 0) {
275                 buffer.append(", ");
276             }
277             long key = keyAt(i);
278             buffer.append(key);
279             buffer.append('=');
280             long value = valueAt(i);
281             buffer.append(value);
282         }
283         buffer.append('}');
284         return buffer.toString();
285     }
286 }
287