blob: 175b77fdd71254db749c928f3296bcc845bca7d2 [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.ignite.internal.storage.index.impl;
import static org.apache.ignite.internal.storage.util.StorageUtils.initialRowIdToBuild;
import java.util.Iterator;
import java.util.concurrent.atomic.AtomicInteger;
import org.apache.ignite.internal.lang.IgniteStringFormatter;
import org.apache.ignite.internal.schema.BinaryTuple;
import org.apache.ignite.internal.storage.RowId;
import org.apache.ignite.internal.storage.StorageDestroyedException;
import org.apache.ignite.internal.storage.StorageRebalanceException;
import org.apache.ignite.internal.storage.index.IndexStorage;
import org.apache.ignite.internal.storage.index.StorageIndexDescriptor;
import org.apache.ignite.internal.storage.util.StorageUtils;
import org.apache.ignite.internal.util.Cursor;
import org.jetbrains.annotations.Nullable;
/**
* Test-only abstract index storage class.
*/
abstract class AbstractTestIndexStorage implements IndexStorage {
private volatile boolean destroyed;
private volatile boolean rebalance;
private volatile @Nullable RowId nextRowIdToBuild;
protected final int partitionId;
private final boolean pk;
private final int indexId;
/** Amount of cursors that opened and still do not close. */
protected final AtomicInteger pendingCursors = new AtomicInteger();
AbstractTestIndexStorage(int partitionId, StorageIndexDescriptor descriptor) {
this.partitionId = partitionId;
this.pk = descriptor.isPk();
this.indexId = descriptor.id();
nextRowIdToBuild = pk ? null : initialRowIdToBuild(partitionId);
}
/**
* Gets amount of pending cursors.
*
* @return Amount of pending cursors.
*/
public int pendingCursors() {
return pendingCursors.get();
}
@Override
public Cursor<RowId> get(BinaryTuple key) {
checkStorageClosedOrInProcessOfRebalance(true);
throwExceptionIfIndexIsNotBuilt();
Iterator<RowId> iterator = getRowIdIteratorForGetByBinaryTuple(key);
pendingCursors.incrementAndGet();
return new Cursor<>() {
@Override
public void close() {
pendingCursors.decrementAndGet();
}
@Override
public boolean hasNext() {
checkStorageClosedOrInProcessOfRebalance(true);
return iterator.hasNext();
}
@Override
public RowId next() {
checkStorageClosedOrInProcessOfRebalance(true);
return iterator.next();
}
};
}
@Override
public @Nullable RowId getNextRowIdToBuild() {
checkStorageClosedOrInProcessOfRebalance(false);
return nextRowIdToBuild;
}
@Override
public void setNextRowIdToBuild(@Nullable RowId rowId) {
checkStorageClosedOrInProcessOfRebalance(false);
nextRowIdToBuild = rowId;
}
/**
* Removes all index data.
*/
public void clear() {
checkStorageClosedOrInProcessOfRebalance(false);
clearAndReset();
}
private void clearAndReset() {
clear0();
nextRowIdToBuild = pk ? null : initialRowIdToBuild(partitionId);
}
public void destroy() {
destroyed = true;
clearAndReset();
}
abstract Iterator<RowId> getRowIdIteratorForGetByBinaryTuple(BinaryTuple key);
abstract void clear0();
/**
* Starts rebalancing of the storage.
*/
public void startRebalance() {
checkStorageClosed(false);
rebalance = true;
clearAndReset();
}
/**
* Aborts rebalance of the storage.
*/
public void abortRebalance() {
checkStorageClosed(false);
if (!rebalance) {
return;
}
rebalance = false;
clearAndReset();
}
/**
* Completes rebalance of the storage.
*/
public void finishRebalance() {
checkStorageClosed(false);
assert rebalance;
rebalance = false;
}
void checkStorageClosed(boolean read) {
if (destroyed) {
throw new StorageDestroyedException();
}
}
void checkStorageClosedOrInProcessOfRebalance(boolean read) {
checkStorageClosed(read);
if (rebalance) {
throw new StorageRebalanceException("Storage in the process of rebalancing");
}
}
private String createStorageInfo() {
return IgniteStringFormatter.format("indexId={}, partitionId={}", indexId, partitionId);
}
void throwExceptionIfIndexIsNotBuilt() {
StorageUtils.throwExceptionIfIndexIsNotBuilt(nextRowIdToBuild, this::createStorageInfo);
}
}