use of org.corfudb.runtime.clients.LayoutClient in project CorfuDB by CorfuDB.
the class QCLayout method main.
public static String[] main(String[] args) {
if (args != null && args.length > 0 && args[0].contentEquals("reboot")) {
LayoutServer ls = CorfuServer.getLayoutServer();
if (ls != null) {
ls.shutdown();
CorfuServer.addLayoutServer();
return replyOk();
} else {
return replyErr("No active layout server");
}
}
// Parse the options given, using docopt.
Map<String, Object> opts = new Docopt(USAGE).withVersion(GitRepositoryState.getRepositoryState().describe).parse(args);
// Configure base options
// configureBase(opts);
// Parse host address and port
String addressport = (String) opts.get("<address>:<port>");
String host = addressport.split(":")[0];
Integer port = Integer.parseInt(addressport.split(":")[1]);
String qapp = (String) opts.get("<qapp>");
String addressportPrefix = "";
if (qapp != null) {
addressportPrefix = qapp;
}
NettyClientRouter router;
if ((router = routers.get(addressportPrefix + addressport)) == null) {
// Create a client router and get layout.
log.trace("Creating router for {} ++ {}:{}", addressportPrefix, port);
router = new NettyClientRouter(host, port);
router.addClient(new BaseClient()).addClient(new LayoutClient()).start();
routers.putIfAbsent(addressportPrefix + addressport, router);
}
router = routers.get(addressportPrefix + addressport);
Long epoch = 0L;
if (opts.get("--epoch") != null) {
epoch = Long.parseLong((String) opts.get("--epoch"));
log.trace("Specify router's epoch as " + epoch);
router.setEpoch(epoch);
} else {
try {
Layout l = router.getClient(LayoutClient.class).getLayout().get();
if (l != null) {
log.trace("Set router's epoch to " + l.getEpoch());
router.setEpoch(l.getEpoch());
} else {
log.trace("Cannot set router's epoch");
}
} catch (Exception e) {
return replyErr("ERROR Exception getting initial epoch " + e.getCause());
}
}
if ((Boolean) opts.get("getClientID")) {
String clientID = router.getClientID().toString();
return replyOk(clientID);
} else if ((Boolean) opts.get("query")) {
try {
Layout l = router.getClient(LayoutClient.class).getLayout().get();
Gson gs = new GsonBuilder().setPrettyPrinting().create();
return replyOk("layout: " + gs.toJson(l));
} catch (ExecutionException ex) {
if (ex.getCause().getClass() == WrongEpochException.class) {
WrongEpochException we = (WrongEpochException) ex.getCause();
return replyErr("Exception during query", ex.getCause().toString(), "correctEpoch: " + we.getCorrectEpoch(), "stack: " + ExceptionUtils.getStackTrace(ex));
} else {
return replyErr("Exception during query", ex.getCause().toString(), "stack: " + ExceptionUtils.getStackTrace(ex));
}
} catch (Exception e) {
return replyErr("ERROR Exception getting layout" + e);
}
} else if ((Boolean) opts.get("bootstrap")) {
Layout l = getLayout(opts);
log.debug("Bootstrapping with layout {}", l);
try {
if (router.getClient(LayoutClient.class).bootstrapLayout(l).get()) {
router.getClient(ManagementClient.class).bootstrapManagement(l).get();
return replyOk();
} else {
return replyErr("NACK");
}
} catch (ExecutionException ex) {
return replyErr("Exception bootstrapping layout", ex.getCause().toString());
} catch (Exception e) {
return replyErr("Exception bootstrapping layout", e.toString());
}
} else if ((Boolean) opts.get("set_epoch")) {
log.debug("Set epoch with new epoch={}", epoch);
try {
CorfuRuntime rt;
if ((rt = setEpochRTs.get(addressport)) == null) {
log.trace("Creating CorfuRuntime for set_epoch for {} ", addressport);
rt = new CorfuRuntime().addLayoutServer(addressport);
setEpochRTs.putIfAbsent(addressport, rt);
}
rt = setEpochRTs.get(addressport);
// Construct a layout that contains just enough to allow .moveServersToEpoch()
// to send SET_EPOCH to our desired endpoint.
List<String> ls = new ArrayList(1);
ls.add(addressport);
List<String> none1 = new ArrayList(0);
List<Layout.LayoutSegment> none2 = new ArrayList(0);
Layout tmpLayout = new Layout(ls, none1, none2, epoch);
tmpLayout.setRuntime(rt);
tmpLayout.moveServersToEpoch();
return replyOk();
} catch (WrongEpochException we) {
return replyErr("Exception during set_epoch", we.getCause() == null ? "WrongEpochException" : we.getCause().toString(), "correctEpoch: " + we.getCorrectEpoch(), "stack: " + ExceptionUtils.getStackTrace(we));
} catch (Exception e) {
return replyErr("Exception during set_epoch", e.toString(), ExceptionUtils.getStackTrace(e));
}
} else if ((Boolean) opts.get("prepare")) {
long rank = Long.parseLong((String) opts.get("--rank"));
log.debug("Prepare with new rank={}", rank);
try {
LayoutPrepareResponse r = router.getClient(LayoutClient.class).prepare(epoch, rank).get();
Layout r_layout = r.getLayout();
if (r_layout == null) {
return replyOk("ignored: ignored");
} else {
return replyOk("layout: " + r_layout.asJSONString());
}
} catch (ExecutionException ex) {
if (ex.getCause().getClass() == OutrankedException.class) {
OutrankedException oe = (OutrankedException) ex.getCause();
return replyErr("Exception during prepare", ex.getCause().toString(), "newRank: " + Long.toString(oe.getNewRank()), "layout: " + (oe.getLayout() == null ? "" : oe.getLayout().asJSONString()));
} else if (ex.getCause().getClass() == WrongEpochException.class) {
WrongEpochException we = (WrongEpochException) ex.getCause();
return replyErr("Exception during prepare", ex.getCause().toString(), "correctEpoch: " + we.getCorrectEpoch(), "stack: " + ExceptionUtils.getStackTrace(ex));
} else {
return replyErr("Exception during prepare", ex.getCause().toString(), "stack: " + ExceptionUtils.getStackTrace(ex));
}
} catch (Exception e) {
return replyErr("Exception during prepare", e.toString(), ExceptionUtils.getStackTrace(e));
}
} else if ((Boolean) opts.get("propose")) {
long rank = Long.parseLong((String) opts.get("--rank"));
Layout l = getLayout(opts);
log.debug("Propose with new rank={}, layout={}", rank, l);
try {
if (router.getClient(LayoutClient.class).propose(l.getEpoch(), rank, l).get()) {
return replyOk();
} else {
return replyErr("NACK");
}
} catch (ExecutionException ex) {
if (ex.getCause().getClass() == OutrankedException.class) {
OutrankedException oe = (OutrankedException) ex.getCause();
return replyErr("Exception during propose", ex.getCause().toString(), "newRank: " + Long.toString(oe.getNewRank()), "stack: " + ExceptionUtils.getStackTrace(ex));
} else if (ex.getCause().getClass() == WrongEpochException.class) {
WrongEpochException we = (WrongEpochException) ex.getCause();
return replyErr("Exception during propose", ex.getCause().toString(), "correctEpoch: " + we.getCorrectEpoch(), "stack: " + ExceptionUtils.getStackTrace(ex));
} else {
return replyErr("Exception during propose", ex.getCause().toString(), "stack: " + ExceptionUtils.getStackTrace(ex));
}
} catch (Exception e) {
return replyErr("Exception during propose", e.toString(), "stack: " + ExceptionUtils.getStackTrace(e));
}
} else if ((Boolean) opts.get("committed")) {
long rank = Long.parseLong((String) opts.get("--rank"));
Layout l = getLayout(opts);
log.debug("Propose with new rank={}", rank);
try {
if (router.getClient(LayoutClient.class).committed(l.getEpoch(), l).get()) {
return replyOk();
} else {
return replyErr("NACK");
}
} catch (ExecutionException ex) {
if (ex.getCause().getClass() == WrongEpochException.class) {
WrongEpochException we = (WrongEpochException) ex.getCause();
return replyErr("Exception during commit", ex.getCause().toString(), "correctEpoch: " + we.getCorrectEpoch(), "stack: " + ExceptionUtils.getStackTrace(ex));
} else {
return replyErr("Exception during commit", ex.getCause().toString(), "stack: " + ExceptionUtils.getStackTrace(ex));
}
} catch (Exception e) {
return replyErr("Exception during commit", e.toString(), "stack: " + ExceptionUtils.getStackTrace(e));
}
}
return replyErr("Hush, compiler.");
}
use of org.corfudb.runtime.clients.LayoutClient in project CorfuDB by CorfuDB.
the class AbstractViewTest method getRouterFunction.
/** Function for obtaining a router, given a runtime and an endpoint.
*
* @param runtime The CorfuRuntime to obtain a router for.
* @param endpoint An endpoint string for the router.
* @return
*/
private IClientRouter getRouterFunction(CorfuRuntime runtime, String endpoint) {
runtimeRouterMap.putIfAbsent(runtime, new ConcurrentHashMap<>());
if (!endpoint.startsWith("test:")) {
throw new RuntimeException("Unsupported endpoint in test: " + endpoint);
}
return runtimeRouterMap.get(runtime).computeIfAbsent(endpoint, x -> {
TestClientRouter tcn = new TestClientRouter(testServerMap.get(endpoint).getServerRouter());
tcn.addClient(new BaseClient()).addClient(new SequencerClient()).addClient(new LayoutClient()).addClient(new LogUnitClient()).addClient(new ManagementClient());
return tcn;
});
}
Aggregations