org.streampipes.manager.execution.http.GraphSubmitter Maven / Gradle / Ivy
/*
* Copyright 2018 FZI Forschungszentrum Informatik
*
* 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.streampipes.manager.execution.http;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.streampipes.model.SpDataSet;
import org.streampipes.model.base.InvocableStreamPipesEntity;
import org.streampipes.model.client.pipeline.PipelineElementStatus;
import org.streampipes.model.client.pipeline.PipelineOperationStatus;
import java.util.List;
import java.util.Optional;
public class GraphSubmitter {
private List graphs;
private List dataSets;
private String pipelineId;
private String pipelineName;
private final static Logger LOG = LoggerFactory.getLogger(GraphSubmitter.class);
public GraphSubmitter(String pipelineId, String pipelineName, List graphs,
List dataSets) {
this.graphs = graphs;
this.pipelineId = pipelineId;
this.pipelineName = pipelineName;
this.dataSets = dataSets;
}
public PipelineOperationStatus invokeGraphs() {
PipelineOperationStatus status = new PipelineOperationStatus();
status.setPipelineId(pipelineId);
status.setPipelineName(pipelineName);
graphs.forEach(g -> status.addPipelineElementStatus(new HttpRequestBuilder(g, g.getBelongsTo()).invoke()));
if (status.getElementStatus().stream().allMatch(PipelineElementStatus::isSuccess)) {
dataSets.forEach(dataSet ->
status.addPipelineElementStatus
(new HttpRequestBuilder(dataSet, dataSet.getUri()).invoke()));
}
status.setSuccess(status.getElementStatus().stream().allMatch(PipelineElementStatus::isSuccess));
if (status.isSuccess()) {
status.setTitle("Pipeline " + pipelineName + " successfully started");
} else {
LOG.info("Could not start pipeline, initializing rollback...");
rollbackInvokedPipelineElements(status);
status.setTitle("Could not start pipeline " + pipelineName + ".");
}
return status;
}
private void rollbackInvokedPipelineElements(PipelineOperationStatus status) {
for (PipelineElementStatus s : status.getElementStatus()) {
if (s.isSuccess()) {
Optional graph = findGraph(s.getElementId());
graph.ifPresent(g -> {
LOG.info("Rolling back element " + g.getElementId());
new HttpRequestBuilder(g, g.getBelongsTo()).detach();
});
}
}
}
private Optional findGraph(String elementId) {
return graphs.stream().filter(g -> g.getBelongsTo().equals(elementId)).findFirst();
}
public PipelineOperationStatus detachGraphs() {
PipelineOperationStatus status = new PipelineOperationStatus();
status.setPipelineId(pipelineId);
graphs.forEach(g -> status.addPipelineElementStatus(new HttpRequestBuilder(g, g.getUri()).detach()));
dataSets.forEach(dataSet -> status.addPipelineElementStatus(new HttpRequestBuilder(dataSet, dataSet.getUri() +
"/" +dataSet.getDatasetInvocationId())
.detach()));
status.setSuccess(status.getElementStatus().stream().allMatch(PipelineElementStatus::isSuccess));
if (status.isSuccess()) {
status.setTitle("Pipeline " + pipelineName + " successfully stopped");
} else {
status.setTitle("Could not stop all pipeline elements of pipeline " + pipelineName + ".");
}
return status;
}
}