blob: 735f423ce8572fae143a889bfba3551f0d9263ae [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with this
* work for additional information regarding copyright ownership. The ASF
* licenses this file to You 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 org.apache.hugegraph.backend.store.ram;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.util.Arrays;
import org.apache.hugegraph.exception.NotSupportException;
public final class IntObjectMap<V> implements RamMap {
private static final float DEFAULT_INITIAL_FACTOR = 0.25f;
private final int maxSize;
private volatile int currentSize;
private volatile Object[] array;
public IntObjectMap(int size) {
this.maxSize = size;
this.currentSize = (int) (size * DEFAULT_INITIAL_FACTOR);
this.array = new Object[this.currentSize];
}
@SuppressWarnings("unchecked")
public V get(int key) {
if (key >= this.currentSize) {
return null;
}
return (V) this.array[key];
}
public void set(int key, V value) {
if (key >= this.currentSize) {
this.expandCapacity();
}
this.array[key] = value;
}
@Override
public void clear() {
Arrays.fill(this.array, null);
}
@Override
public long size() {
return this.maxSize;
}
@Override
public void writeTo(DataOutputStream buffer) throws IOException {
throw new NotSupportException("IntObjectMap.writeTo");
}
@Override
public void readFrom(DataInputStream buffer) throws IOException {
throw new NotSupportException("IntObjectMap.readFrom");
}
private synchronized void expandCapacity() {
if (this.currentSize == this.maxSize) {
return;
}
int newSize = Math.min(this.currentSize * 2, this.maxSize);
Object[] newArray = new Object[newSize];
System.arraycopy(this.array, 0, newArray, 0, this.array.length);
this.clear();
this.array = newArray;
this.currentSize = newSize;
}
}