
io.atomix.copycat.protocol.QueryRequest Maven / Gradle / Ivy
/*
* Copyright 2015 the original author or authors.
*
* Licensed 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 io.atomix.copycat.protocol;
import io.atomix.catalyst.buffer.BufferInput;
import io.atomix.catalyst.buffer.BufferOutput;
import io.atomix.catalyst.serializer.Serializer;
import io.atomix.catalyst.util.Assert;
import io.atomix.copycat.Operation;
import io.atomix.copycat.Query;
import java.util.Objects;
/**
* Client query request.
*
* Query requests are submitted by clients to the Copycat cluster to commit {@link Query}s to
* the replicated state machine. Each query request must be associated with a registered
* {@link #session()} and have a unique {@link #sequence()} number within that session. Queries will
* be applied in the cluster in the order defined by the provided sequence number. Thus, sequence numbers
* should never be skipped. In the event of a failure of a query request, the request should be resent
* with the same sequence number. Queries are guaranteed to be applied in sequence order.
*
* Query requests should always be submitted to the server to which the client is connected. The provided
* query's {@link Query#consistency() consistency level} will be used to determine how the query should be
* handled. If the query is received by a follower, it may be evaluated on that node if the consistency level
* if {@link Query.ConsistencyLevel#CAUSAL} or {@link Query.ConsistencyLevel#SEQUENTIAL},
* otherwise it will be forwarded to the cluster leader. Queries are always guaranteed to see state progress
* monotonically within a single {@link #session()} even when switching servers.
*
* @author Jordan Halterman
*/
public class QueryRequest extends OperationRequest {
/**
* Returns a new query request builder.
*
* @return A new query request builder.
*/
public static Builder builder() {
return new Builder(new QueryRequest());
}
/**
* Returns a query request builder for an existing request.
*
* @param request The request to build.
* @return The query request builder.
* @throws IllegalStateException if request is null
*/
public static Builder builder(QueryRequest request) {
return new Builder(request);
}
private long index;
private Query query;
/**
* Returns the query index.
*
* @return The query index.
*/
public long index() {
return index;
}
/**
* Returns the query.
*
* @return The query.
*/
public Query query() {
return query;
}
@Override
public Operation operation() {
return query;
}
@Override
public void readObject(BufferInput> buffer, Serializer serializer) {
super.readObject(buffer, serializer);
index = buffer.readLong();
query = serializer.readObject(buffer);
}
@Override
public void writeObject(BufferOutput> buffer, Serializer serializer) {
super.writeObject(buffer, serializer);
buffer.writeLong(index);
serializer.writeObject(query, buffer);
}
@Override
public int hashCode() {
return Objects.hash(getClass(), session, sequence, index, query);
}
@Override
public boolean equals(Object object) {
if (object instanceof QueryRequest) {
QueryRequest request = (QueryRequest) object;
return request.session == session
&& request.sequence == sequence
&& request.query.equals(query);
}
return false;
}
@Override
public String toString() {
return String.format("%s[session=%d, sequence=%d, index=%d, query=%s]", getClass().getSimpleName(), session, sequence, index, query);
}
/**
* Query request builder.
*/
public static class Builder extends OperationRequest.Builder {
protected Builder(QueryRequest request) {
super(request);
}
/**
* Sets the request index.
*
* @param index The request index.
* @return The request builder.
* @throws IllegalArgumentException if {@code index} is less than {@code 0}
*/
public Builder withIndex(long index) {
request.index = Assert.argNot(index, index < 0, "index cannot be less than 0");
return this;
}
/**
* Sets the request query.
*
* @param query The request query.
* @return The request builder.
* @throws NullPointerException if {@code query} is null
*/
public Builder withQuery(Query query) {
request.query = Assert.notNull(query, "query");
return this;
}
/**
* @throws IllegalStateException if {@code query} is null
*/
@Override
public QueryRequest build() {
super.build();
Assert.stateNot(request.index < 0, "index cannot be less than 0");
Assert.stateNot(request.query == null, "query cannot be null");
return request;
}
}
}