blob: bc89ecffe7acabee2fe20480d0eed22578804582 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2009, 2017 Stephan Wahlbrink and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.rj.server;
final class AutoIdMap<E> {
private Object[] currentArray;
public AutoIdMap() {
this.currentArray= new Object[16];
}
public synchronized int put(final E e) {
final int size= this.currentArray.length;
for (int i= 1; i < size; i++) {
if (this.currentArray[i] == null) {
this.currentArray[i]= e;
return i;
}
}
final Object[] newArray= new Object[size+16];
System.arraycopy(this.currentArray, 0, newArray, 0, size);
newArray[size]= e;
this.currentArray= newArray;
return size;
}
@SuppressWarnings("unchecked")
public E get(final int id) {
return (E) this.currentArray[id];
}
public void remove(final int id) {
if (id > 0 && id < this.currentArray.length) {
this.currentArray[id]= null;
}
}
}