|
| 1 | +/* |
| 2 | + * Licensed to Elasticsearch under one or more contributor |
| 3 | + * license agreements. See the NOTICE file distributed with |
| 4 | + * this work for additional information regarding copyright |
| 5 | + * ownership. Elasticsearch licenses this file to you under |
| 6 | + * the Apache License, Version 2.0 (the "License"); you may |
| 7 | + * not use this file except in compliance with the License. |
| 8 | + * You may obtain a copy of the License at |
| 9 | + * |
| 10 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | + * |
| 12 | + * Unless required by applicable law or agreed to in writing, |
| 13 | + * software distributed under the License is distributed on an |
| 14 | + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | + * KIND, either express or implied. See the License for the |
| 16 | + * specific language governing permissions and limitations |
| 17 | + * under the License. |
| 18 | + */ |
| 19 | +package org.elasticsearch.cluster.coordination; |
| 20 | + |
| 21 | +import org.elasticsearch.cluster.node.DiscoveryNode; |
| 22 | +import org.elasticsearch.common.io.stream.StreamInput; |
| 23 | +import org.elasticsearch.common.io.stream.StreamOutput; |
| 24 | +import org.elasticsearch.common.io.stream.Writeable; |
| 25 | + |
| 26 | +import java.io.IOException; |
| 27 | + |
| 28 | +/** |
| 29 | + * Triggered by a {@link StartJoinRequest}, instances of this class represent join votes, |
| 30 | + * and have a source and target node. The source node is the node that provides the vote, |
| 31 | + * and the target node is the node for which this vote is cast. A node will only cast |
| 32 | + * a single vote per term, and this for a unique target node. The vote also carries |
| 33 | + * information about the current state of the node that provided the vote, so that |
| 34 | + * the receiver of the vote can determine if it has a more up-to-date state than the |
| 35 | + * source node. |
| 36 | + */ |
| 37 | +public class Join implements Writeable { |
| 38 | + private final DiscoveryNode sourceNode; |
| 39 | + private final DiscoveryNode targetNode; |
| 40 | + private final long term; |
| 41 | + private final long lastAcceptedTerm; |
| 42 | + private final long lastAcceptedVersion; |
| 43 | + |
| 44 | + public Join(DiscoveryNode sourceNode, DiscoveryNode targetNode, long term, long lastAcceptedTerm, long lastAcceptedVersion) { |
| 45 | + assert term >= 0; |
| 46 | + assert lastAcceptedTerm >= 0; |
| 47 | + assert lastAcceptedVersion >= 0; |
| 48 | + |
| 49 | + this.sourceNode = sourceNode; |
| 50 | + this.targetNode = targetNode; |
| 51 | + this.term = term; |
| 52 | + this.lastAcceptedTerm = lastAcceptedTerm; |
| 53 | + this.lastAcceptedVersion = lastAcceptedVersion; |
| 54 | + } |
| 55 | + |
| 56 | + public Join(StreamInput in) throws IOException { |
| 57 | + sourceNode = new DiscoveryNode(in); |
| 58 | + targetNode = new DiscoveryNode(in); |
| 59 | + term = in.readLong(); |
| 60 | + lastAcceptedTerm = in.readLong(); |
| 61 | + lastAcceptedVersion = in.readLong(); |
| 62 | + } |
| 63 | + |
| 64 | + @Override |
| 65 | + public void writeTo(StreamOutput out) throws IOException { |
| 66 | + sourceNode.writeTo(out); |
| 67 | + targetNode.writeTo(out); |
| 68 | + out.writeLong(term); |
| 69 | + out.writeLong(lastAcceptedTerm); |
| 70 | + out.writeLong(lastAcceptedVersion); |
| 71 | + } |
| 72 | + |
| 73 | + public DiscoveryNode getSourceNode() { |
| 74 | + return sourceNode; |
| 75 | + } |
| 76 | + |
| 77 | + public DiscoveryNode getTargetNode() { |
| 78 | + return targetNode; |
| 79 | + } |
| 80 | + |
| 81 | + public long getLastAcceptedVersion() { |
| 82 | + return lastAcceptedVersion; |
| 83 | + } |
| 84 | + |
| 85 | + public long getTerm() { |
| 86 | + return term; |
| 87 | + } |
| 88 | + |
| 89 | + public long getLastAcceptedTerm() { |
| 90 | + return lastAcceptedTerm; |
| 91 | + } |
| 92 | + |
| 93 | + @Override |
| 94 | + public String toString() { |
| 95 | + return "Join{" + |
| 96 | + "term=" + term + |
| 97 | + ", lastAcceptedTerm=" + lastAcceptedTerm + |
| 98 | + ", lastAcceptedVersion=" + lastAcceptedVersion + |
| 99 | + ", sourceNode=" + sourceNode + |
| 100 | + ", targetNode=" + targetNode + |
| 101 | + '}'; |
| 102 | + } |
| 103 | + |
| 104 | + @Override |
| 105 | + public boolean equals(Object o) { |
| 106 | + if (this == o) return true; |
| 107 | + if (o == null || getClass() != o.getClass()) return false; |
| 108 | + |
| 109 | + Join join = (Join) o; |
| 110 | + |
| 111 | + if (sourceNode.equals(join.sourceNode) == false) return false; |
| 112 | + if (targetNode.equals(join.targetNode) == false) return false; |
| 113 | + if (lastAcceptedVersion != join.lastAcceptedVersion) return false; |
| 114 | + if (term != join.term) return false; |
| 115 | + return lastAcceptedTerm == join.lastAcceptedTerm; |
| 116 | + } |
| 117 | + |
| 118 | + @Override |
| 119 | + public int hashCode() { |
| 120 | + int result = (int) (lastAcceptedVersion ^ (lastAcceptedVersion >>> 32)); |
| 121 | + result = 31 * result + sourceNode.hashCode(); |
| 122 | + result = 31 * result + targetNode.hashCode(); |
| 123 | + result = 31 * result + (int) (term ^ (term >>> 32)); |
| 124 | + result = 31 * result + (int) (lastAcceptedTerm ^ (lastAcceptedTerm >>> 32)); |
| 125 | + return result; |
| 126 | + } |
| 127 | +} |
0 commit comments