blob: 18e5917488f55c3623d1c98c7fcf47725bf5cfde [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.client.fakes;
import java.nio.ByteBuffer;
import java.util.ArrayList;
import java.util.Collection;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.ConcurrentHashMap;
import org.apache.ignite.internal.schema.BinaryRow;
import org.apache.ignite.internal.table.InternalTable;
import org.apache.ignite.lang.IgniteUuid;
import org.apache.ignite.schema.definition.SchemaManagementMode;
import org.apache.ignite.tx.Transaction;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* Fake internal table.
*/
public class FakeInternalTable implements InternalTable {
/** Table name. */
private final String tableName;
/** Table ID. */
private final IgniteUuid tableId;
/** Table data. */
private final ConcurrentHashMap<ByteBuffer, BinaryRow> data = new ConcurrentHashMap<>();
/**
* Constructor.
*
* @param tableName Name.
* @param tableId Id.
*/
public FakeInternalTable(String tableName, IgniteUuid tableId) {
this.tableName = tableName;
this.tableId = tableId;
}
/** {@inheritDoc} */
@Override public @NotNull IgniteUuid tableId() {
return tableId;
}
/** {@inheritDoc} */
@Override public @NotNull String tableName() {
return tableName;
}
/** {@inheritDoc} */
@Override public @NotNull SchemaManagementMode schemaMode() {
return SchemaManagementMode.STRICT;
}
/** {@inheritDoc} */
@Override public void schema(SchemaManagementMode schemaMode) {
// No-op.
}
/** {@inheritDoc} */
@Override public CompletableFuture<BinaryRow> get(BinaryRow keyRow, @Nullable Transaction tx) {
return CompletableFuture.completedFuture(data.get(keyRow.keySlice()));
}
/** {@inheritDoc} */
@Override public CompletableFuture<Collection<BinaryRow>> getAll(Collection<BinaryRow> keyRows, @Nullable Transaction tx) {
var res = new ArrayList<BinaryRow>();
for (var key : keyRows) {
var val = get(key, null);
if (val != null)
res.add(val.getNow(null));
}
return CompletableFuture.completedFuture(res);
}
/** {@inheritDoc} */
@Override public CompletableFuture<Void> upsert(BinaryRow row, @Nullable Transaction tx) {
data.put(row.keySlice(), row);
return CompletableFuture.completedFuture(null);
}
/** {@inheritDoc} */
@Override public CompletableFuture<Void> upsertAll(Collection<BinaryRow> rows, @Nullable Transaction tx) {
for (var row : rows)
upsert(row, tx);
return CompletableFuture.completedFuture(null);
}
/** {@inheritDoc} */
@Override public CompletableFuture<BinaryRow> getAndUpsert(BinaryRow row, @Nullable Transaction tx) {
var res = get(row, tx);
upsert(row, tx);
return CompletableFuture.completedFuture(res.getNow(null));
}
/** {@inheritDoc} */
@Override public CompletableFuture<Boolean> insert(BinaryRow row, @Nullable Transaction tx) {
var old = get(row, tx).getNow(null);
if (old == null) {
upsert(row, tx);
return CompletableFuture.completedFuture(true);
}
return CompletableFuture.completedFuture(false);
}
/** {@inheritDoc} */
@Override public CompletableFuture<Collection<BinaryRow>> insertAll(Collection<BinaryRow> rows, @Nullable Transaction tx) {
var skipped = new ArrayList<BinaryRow>();
for (var row : rows) {
if (!insert(row, tx).getNow(null))
skipped.add(row);
}
return CompletableFuture.completedFuture(skipped);
}
/** {@inheritDoc} */
@Override public CompletableFuture<Boolean> replace(BinaryRow row, @Nullable Transaction tx) {
var old = get(row, tx).getNow(null);
if (old == null)
return CompletableFuture.completedFuture(false);
return upsert(row, tx).thenApply(f -> true);
}
/** {@inheritDoc} */
@Override public CompletableFuture<Boolean> replace(BinaryRow oldRow, BinaryRow newRow, @Nullable Transaction tx) {
var old = get(oldRow, tx).getNow(null);
if (old == null || !old.valueSlice().equals(oldRow.valueSlice()))
return CompletableFuture.completedFuture(false);
return upsert(newRow, tx).thenApply(f -> true);
}
/** {@inheritDoc} */
@Override public CompletableFuture<BinaryRow> getAndReplace(BinaryRow row, @Nullable Transaction tx) {
var old = get(row, tx);
return replace(row, tx).thenCompose(f -> old);
}
/** {@inheritDoc} */
@Override public CompletableFuture<Boolean> delete(BinaryRow keyRow, @Nullable Transaction tx) {
var old = get(keyRow, tx).getNow(null);
if (old != null)
data.remove(keyRow.keySlice());
return CompletableFuture.completedFuture(old != null);
}
/** {@inheritDoc} */
@Override public CompletableFuture<Boolean> deleteExact(BinaryRow oldRow, @Nullable Transaction tx) {
var old = get(oldRow, tx).getNow(null);
if (old != null && old.valueSlice().equals(oldRow.valueSlice())) {
data.remove(oldRow.keySlice());
return CompletableFuture.completedFuture(true);
}
return CompletableFuture.completedFuture(false);
}
/** {@inheritDoc} */
@Override public CompletableFuture<BinaryRow> getAndDelete(BinaryRow row, @Nullable Transaction tx) {
var old = get(row, tx).getNow(null);
if (old != null)
data.remove(row.keySlice());
return CompletableFuture.completedFuture(old);
}
/** {@inheritDoc} */
@Override public CompletableFuture<Collection<BinaryRow>> deleteAll(Collection<BinaryRow> rows, @Nullable Transaction tx) {
var skipped = new ArrayList<BinaryRow>();
for (var row : rows) {
if (!delete(row, tx).getNow(false))
skipped.add(row);
}
return CompletableFuture.completedFuture(skipped);
}
/** {@inheritDoc} */
@Override public CompletableFuture<Collection<BinaryRow>> deleteAllExact(Collection<BinaryRow> rows, @Nullable Transaction tx) {
var skipped = new ArrayList<BinaryRow>();
for (var row : rows) {
if (!deleteExact(row, tx).getNow(false))
skipped.add(row);
}
return CompletableFuture.completedFuture(skipped);
}
}