blob: af27cc57ee23fa4ca909aeed9be1d5def7f9d4f7 [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 accord.primitives;
import accord.api.Write;
import accord.local.SafeCommandStore;
import accord.utils.ReducingFuture;
import org.apache.cassandra.utils.concurrent.Future;
import org.apache.cassandra.utils.concurrent.ImmediateFuture;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
public class Writes
{
public static final Future<Void> SUCCESS = ImmediateFuture.success(null);
public final Timestamp executeAt;
public final Seekables<?, ?> keys;
public final Write write;
public Writes(Timestamp executeAt, Seekables<?, ?> keys, Write write)
{
this.executeAt = executeAt;
this.keys = keys;
this.write = write;
}
@Override
public boolean equals(Object o)
{
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Writes writes = (Writes) o;
return executeAt.equals(writes.executeAt) && keys.equals(writes.keys) && write.equals(writes.write);
}
public boolean isEmpty()
{
return keys.isEmpty();
}
@Override
public int hashCode()
{
return Objects.hash(executeAt, keys, write);
}
public Future<Void> apply(SafeCommandStore safeStore)
{
if (write == null)
return SUCCESS;
Ranges ranges = safeStore.ranges().since(executeAt.epoch());
if (ranges == null)
return SUCCESS;
List<Future<Void>> futures = Routables.foldl(keys, ranges, (key, accumulate, index) -> {
accumulate.add(write.apply(key, safeStore, executeAt, safeStore.dataStore()));
return accumulate;
}, new ArrayList<>());
return ReducingFuture.reduce(futures, (l, r) -> null);
}
@Override
public String toString()
{
return "TxnWrites{" +
"executeAt:" + executeAt +
", keys:" + keys +
", write:" + write +
'}';
}
}