use of org.guvnor.ala.wildfly.model.WildflyRuntimeState in project kie-wb-common by kiegroup.
the class WildflyRuntimeManager method refresh.
@Override
public void refresh(RuntimeId runtimeId) throws RuntimeOperationException {
WildflyRuntime runtime = (WildflyRuntime) runtimeRegistry.getRuntimeById(runtimeId.getId());
try {
WildflyAppState appState = wildfly.getWildflyClient(runtime.getProviderId()).getAppState(runtime.getId());
WildflyRuntime newRuntime = new WildflyRuntime(runtime.getId(), runtime.getName(), runtime.getConfig(), runtime.getProviderId(), runtime.getEndpoint(), runtime.getInfo(), new WildflyRuntimeState(appState.getState(), runtime.getState().getStartedAt()));
runtimeRegistry.registerRuntime(newRuntime);
} catch (WildflyClientException ex) {
throw new RuntimeOperationException("Error Refreshing container: " + runtimeId.getId() + "\n\t There as a problem with refreshing your application, please check into the Wildfly Logs for more information.", ex);
}
}
use of org.guvnor.ala.wildfly.model.WildflyRuntimeState in project kie-wb-common by kiegroup.
the class WildflyRuntimeExecExecutor method create.
private Optional<WildflyRuntime> create(final WildflyRuntimeConfiguration runtimeConfig) throws ProvisioningException {
String warPath = runtimeConfig.getWarPath();
final Optional<WildflyProvider> _wildflyProvider = runtimeRegistry.getProvider(runtimeConfig.getProviderId(), WildflyProvider.class);
if (!_wildflyProvider.isPresent()) {
throw new ProvisioningException("No Wildfly provider was found for providerId: " + runtimeConfig.getProviderId());
}
WildflyProvider wildflyProvider = _wildflyProvider.get();
File file = new File(warPath);
final String id = file.getName();
WildflyAppState appState = wildfly.getWildflyClient(wildflyProvider).getAppState(id);
if (UNKNOWN.equals(appState.getState())) {
int result = wildfly.getWildflyClient(wildflyProvider).deploy(file);
if (result != 200) {
throw new ProvisioningException("Deployment to Wildfly Failed with error code: " + result);
}
} else if ((RUNNING.equals(appState.getState()) || STOPPED.equals(appState.getState())) && (isNullOrEmpty(runtimeConfig.getRedeployStrategy()) || "auto".equals(runtimeConfig.getRedeployStrategy()))) {
wildfly.getWildflyClient(wildflyProvider).undeploy(id);
int result = wildfly.getWildflyClient(wildflyProvider).deploy(file);
if (result != 200) {
throw new ProvisioningException("Deployment to Wildfly Failed with error code: " + result);
}
} else {
throw new ProvisioningException("A runtime with the given identifier: " + id + " is already deployed");
}
String appContext = id.substring(0, id.lastIndexOf(".war"));
WildflyRuntimeEndpoint endpoint = new WildflyRuntimeEndpoint();
endpoint.setHost(wildfly.getWildflyClient(wildflyProvider).getHost());
endpoint.setPort(wildfly.getWildflyClient(wildflyProvider).getPort());
endpoint.setContext(appContext);
return Optional.of(new WildflyRuntime(id, buildRuntimeName(runtimeConfig, id), runtimeConfig, wildflyProvider, endpoint, new WildflyRuntimeInfo(), new WildflyRuntimeState(RUNNING, new Date().toString())));
}
Aggregations