com.arangodb.internal.velocystream.VstCommunication Maven / Gradle / Ivy
/*
* DISCLAIMER
*
* Copyright 2016 ArangoDB GmbH, Cologne, Germany
*
* 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.
*
* Copyright holder is ArangoDB GmbH, Cologne, Germany
*/
package com.arangodb.internal.velocystream;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.concurrent.atomic.AtomicLong;
import javax.net.ssl.SSLContext;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.arangodb.ArangoDBException;
import com.arangodb.internal.ArangoDBConstants;
import com.arangodb.internal.Host;
import com.arangodb.internal.net.ArangoDBRedirectException;
import com.arangodb.internal.net.ConnectionPool;
import com.arangodb.internal.net.HostHandle;
import com.arangodb.internal.util.HostUtils;
import com.arangodb.internal.util.ResponseUtils;
import com.arangodb.internal.velocystream.internal.Chunk;
import com.arangodb.internal.velocystream.internal.Message;
import com.arangodb.internal.velocystream.internal.VstConnection;
import com.arangodb.util.ArangoSerialization;
import com.arangodb.velocypack.VPackSlice;
import com.arangodb.velocypack.exception.VPackParserException;
import com.arangodb.velocystream.Request;
import com.arangodb.velocystream.Response;
/**
* @author Mark Vollmary
*
*/
public abstract class VstCommunication {
private static final Logger LOGGER = LoggerFactory.getLogger(VstCommunication.class);
protected static final AtomicLong mId = new AtomicLong(0L);
protected final ArangoSerialization util;
protected final ConnectionPool connectionPool;
protected final String user;
protected final String password;
protected final Integer chunksize;
protected VstCommunication(final Integer timeout, final String user, final String password, final Boolean useSsl,
final SSLContext sslContext, final ArangoSerialization util, final Integer chunksize,
final ConnectionPool connectionPool) {
this.user = user;
this.password = password;
this.util = util;
this.connectionPool = connectionPool;
this.chunksize = chunksize != null ? chunksize : ArangoDBConstants.CHUNK_DEFAULT_CONTENT_SIZE;
}
protected void connect(final C connection) {
if (!connection.isOpen()) {
try {
connection.open();
if (user != null) {
authenticate(connection);
}
} catch (final IOException e) {
LOGGER.error(e.getMessage(), e);
throw new ArangoDBException(e);
}
}
}
protected abstract void authenticate(final C connection);
public void disconnect() throws IOException {
connectionPool.disconnect();
}
public R execute(final Request request, final HostHandle hostHandle) throws ArangoDBException {
final C connection = connectionPool.connection(hostHandle);
try {
return execute(request, connection);
} catch (final ArangoDBException e) {
if (e instanceof ArangoDBRedirectException) {
final String location = ArangoDBRedirectException.class.cast(e).getLocation();
final Host host = HostUtils.createFromLocation(location);
connectionPool.closeConnectionOnError(connection);
return execute(request, new HostHandle().setHost(host));
} else {
throw e;
}
}
}
protected abstract R execute(final Request request, C connection) throws ArangoDBException;
protected void checkError(final Response response) throws ArangoDBException {
ResponseUtils.checkError(util, response);
}
protected Response createResponse(final Message message) throws VPackParserException {
final Response response = util.deserialize(message.getHead(), Response.class);
if (message.getBody() != null) {
response.setBody(message.getBody());
}
return response;
}
protected Message createMessage(final Request request) throws VPackParserException {
final long id = mId.incrementAndGet();
return new Message(id, util.serialize(request), request.getBody());
}
protected Collection buildChunks(final Message message) {
final Collection chunks = new ArrayList();
final VPackSlice head = message.getHead();
int size = head.getByteSize();
final VPackSlice body = message.getBody();
if (body != null) {
size += body.getByteSize();
}
final int n = size / chunksize;
final int numberOfChunks = (size % chunksize != 0) ? (n + 1) : n;
int off = 0;
for (int i = 0; size > 0; i++) {
final int len = Math.min(chunksize, size);
final long messageLength = (i == 0 && numberOfChunks > 1) ? size : -1L;
final Chunk chunk = new Chunk(message.getId(), i, numberOfChunks, messageLength, off, len);
size -= len;
off += len;
chunks.add(chunk);
}
return chunks;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy