org.scassandra.ScassandraRunner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
Allows Java applications to use Scassandra
/*
* Copyright (C) 2014 Christopher Batey
*
* 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 org.scassandra;
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;
import org.scassandra.http.client.ActivityClient;
import org.scassandra.http.client.CurrentClient;
import org.scassandra.http.client.PrimingClient;
import org.scassandra.server.ServerStubRunner;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.Map;
class ScassandraRunner implements Scassandra {
private final ServerStubRunner serverStubRunner;
private final PrimingClient primingClient;
private final ActivityClient activityClient;
private final CurrentClient currentClient;
private final int binaryPort;
private final int adminPort;
private final String versionUrl;
private final CloseableHttpClient httpClient = HttpClients.createDefault();
private final Gson gson = new Gson();
ScassandraRunner(String binaryListenAddress, int binaryPort, String adminListenAddress, int adminPort, long startupTimeout) {
this.binaryPort = binaryPort;
this.adminPort = adminPort;
this.serverStubRunner = new ServerStubRunner(binaryListenAddress, binaryPort, adminListenAddress, adminPort, startupTimeout);
this.primingClient = PrimingClient.builder().withHost(adminListenAddress).withPort(adminPort).build();
this.activityClient = ActivityClient.builder().withHost(adminListenAddress).withPort(adminPort).build();
this.currentClient = CurrentClient.builder().withHost(adminListenAddress).withPort(adminPort).build();
this.versionUrl = "http://" + binaryListenAddress + ":" + adminPort + "/version";
}
@Override
public PrimingClient primingClient() {
return this.primingClient;
}
@Override
public ActivityClient activityClient() {
return this.activityClient;
}
@Override
public CurrentClient currentClient() {
return currentClient;
}
@Override
public void start() {
serverStubRunner.start();
serverStubRunner.awaitStartup();
}
@Override
public void stop() {
serverStubRunner.shutdown();
}
@Override
public int getAdminPort() {
return adminPort;
}
@Override
public int getBinaryPort() {
return binaryPort;
}
@Override
public String serverVersion() {
HttpGet get = new HttpGet(versionUrl);
try {
Type type = new TypeToken
© 2015 - 2025 Weber Informatics LLC | Privacy Policy