blob: 68767958887c7b4e487d5df86ce220a596ee93eb [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.coordinate;
import accord.coordinate.tracking.QuorumTracker.QuorumShardTracker;
import accord.local.Node;
import accord.local.Node.Id;
import accord.messages.Callback;
import accord.messages.InformOfTxnId;
import accord.messages.SimpleReply;
import accord.primitives.Route;
import accord.topology.Shard;
import accord.primitives.TxnId;
import accord.utils.async.AsyncChain;
import accord.utils.async.AsyncResults;
import static accord.coordinate.tracking.AbstractTracker.ShardOutcomes.Fail;
import static accord.coordinate.tracking.AbstractTracker.ShardOutcomes.Success;
public class InformHomeOfTxn extends AsyncResults.SettableResult<Void> implements Callback<SimpleReply>
{
final TxnId txnId;
final Route<?> someRoute;
final QuorumShardTracker tracker;
Throwable failure;
InformHomeOfTxn(TxnId txnId, Route<?> someRoute, Shard homeShard)
{
this.txnId = txnId;
this.someRoute = someRoute;
this.tracker = new QuorumShardTracker(homeShard);
}
public static AsyncChain<Void> inform(Node node, TxnId txnId, Route<?> someRoute)
{
return node.withEpoch(txnId.epoch(), () -> {
Shard homeShard = node.topology().forEpoch(someRoute.homeKey(), txnId.epoch());
InformHomeOfTxn inform = new InformHomeOfTxn(txnId, someRoute, homeShard);
node.send(homeShard.nodes, new InformOfTxnId(txnId, someRoute), inform);
return inform;
});
}
@Override
public void onSuccess(Id from, SimpleReply reply)
{
switch (reply)
{
default:
case Ok:
if (tracker.onSuccess(null) == Success)
trySuccess(null);
break;
case Nack:
// TODO (required, consider): stale topology should be impossible right now
onFailure(from, new StaleTopology());
}
}
@Override
public void onFailure(Id from, Throwable failure)
{
if (this.failure == null) this.failure = failure;
else this.failure.addSuppressed(failure);
if (tracker.onFailure(null) == Fail)
tryFailure(this.failure);
}
@Override
public void onCallbackFailure(Id from, Throwable failure)
{
tryFailure(failure);
}
}