use of org.openkilda.wfm.topology.flow.model.FlowPathPair in project open-kilda by telstra.
the class BaseFlowPathRemovalAction method saveRemovalActionWithDumpToHistory.
protected void saveRemovalActionWithDumpToHistory(T stateMachine, Flow flow, FlowPath flowPath) {
// TODO: History dumps require paired paths, fix it to support any (without opposite one).
FlowPathPair pathsToDelete = FlowPathPair.builder().forward(flowPath).reverse(flowPath).build();
saveRemovalActionWithDumpToHistory(stateMachine, flow, pathsToDelete);
}
use of org.openkilda.wfm.topology.flow.model.FlowPathPair in project open-kilda by telstra.
the class AllocatePrimaryResourcesAction method allocate.
@Override
protected void allocate(FlowUpdateFsm stateMachine) throws RecoverableException, UnroutableFlowException, ResourceAllocationException {
String flowId = stateMachine.getFlowId();
Set<String> flowIds = Sets.newHashSet(flowId);
if (stateMachine.getBulkUpdateFlowIds() != null) {
flowIds.addAll(stateMachine.getBulkUpdateFlowIds());
}
log.debug("Finding paths for flows {}", flowIds);
List<PathId> pathIdsToReuse = new ArrayList<>(flowPathRepository.findActualPathIdsByFlowIds(flowIds));
pathIdsToReuse.addAll(stateMachine.getRejectedPaths());
Flow tmpFlow = getFlow(flowId);
FlowPathPair oldPaths = new FlowPathPair(tmpFlow.getForwardPath(), tmpFlow.getReversePath());
PathId newForwardPathId = resourcesManager.generatePathId(flowId);
PathId newReversePathId = resourcesManager.generatePathId(flowId);
log.debug("Finding a new primary path for flow {}", flowId);
GetPathsResult allocatedPaths = allocatePathPair(tmpFlow, newForwardPathId, newReversePathId, false, pathIdsToReuse, oldPaths, true, stateMachine.getSharedBandwidthGroupId(), path -> true);
if (allocatedPaths == null) {
throw new ResourceAllocationException("Unable to allocate a path");
}
log.debug("New primary paths have been allocated: {}", allocatedPaths);
stateMachine.setBackUpPrimaryPathComputationWayUsed(allocatedPaths.isBackUpPathComputationWayUsed());
stateMachine.setNewPrimaryForwardPath(newForwardPathId);
stateMachine.setNewPrimaryReversePath(newReversePathId);
log.debug("Allocating resources for a new primary path of flow {}", flowId);
FlowResources flowResources = allocateFlowResources(tmpFlow, newForwardPathId, newReversePathId);
stateMachine.setNewPrimaryResources(flowResources);
FlowPathPair createdPaths = createFlowPathPair(flowId, flowResources, allocatedPaths, false, stateMachine.getSharedBandwidthGroupId());
log.debug("New primary path has been created: {}", createdPaths);
setMirrorPointsToNewPath(oldPaths.getForwardPathId(), newForwardPathId);
setMirrorPointsToNewPath(oldPaths.getReversePathId(), newReversePathId);
saveAllocationActionWithDumpsToHistory(stateMachine, tmpFlow, "primary", createdPaths);
}
use of org.openkilda.wfm.topology.flow.model.FlowPathPair in project open-kilda by telstra.
the class AllocateProtectedResourcesAction method allocate.
@TimedExecution("fsm.resource_allocation_protected")
@Override
protected void allocate(FlowRerouteFsm stateMachine) throws RecoverableException, UnroutableFlowException, ResourceAllocationException {
String flowId = stateMachine.getFlowId();
Flow tmpFlowCopy = getFlow(flowId);
// Detach the entity to avoid propagation to the database.
flowRepository.detach(tmpFlowCopy);
if (stateMachine.getNewEncapsulationType() != null) {
// This is for PCE to use proper (updated) encapsulation type.
tmpFlowCopy.setEncapsulationType(stateMachine.getNewEncapsulationType());
}
FlowPathPair oldPaths = new FlowPathPair(tmpFlowCopy.getProtectedForwardPath(), tmpFlowCopy.getProtectedReversePath());
FlowPath primaryForward = tmpFlowCopy.getPath(stateMachine.getNewPrimaryForwardPath()).orElse(tmpFlowCopy.getForwardPath());
FlowPath primaryReverse = tmpFlowCopy.getPath(stateMachine.getNewPrimaryReversePath()).orElse(tmpFlowCopy.getReversePath());
Predicate<GetPathsResult> testNonOverlappingPath = path -> (primaryForward == null || !flowPathBuilder.arePathsOverlapped(path.getForward(), primaryForward)) && (primaryReverse == null || !flowPathBuilder.arePathsOverlapped(path.getReverse(), primaryReverse));
PathId newForwardPathId = resourcesManager.generatePathId(flowId);
PathId newReversePathId = resourcesManager.generatePathId(flowId);
List<PathId> pathsToReuse = Lists.newArrayList(tmpFlowCopy.getProtectedForwardPathId(), tmpFlowCopy.getProtectedReversePathId());
pathsToReuse.addAll(stateMachine.getRejectedPaths());
log.debug("Finding a new protected path for flow {}", flowId);
GetPathsResult allocatedPaths = allocatePathPair(tmpFlowCopy, newForwardPathId, newReversePathId, stateMachine.isIgnoreBandwidth(), pathsToReuse, oldPaths, stateMachine.isRecreateIfSamePath(), stateMachine.getSharedBandwidthGroupId(), testNonOverlappingPath);
if (allocatedPaths != null) {
stateMachine.setBackUpProtectedPathComputationWayUsed(allocatedPaths.isBackUpPathComputationWayUsed());
if (!testNonOverlappingPath.test(allocatedPaths)) {
stateMachine.saveActionToHistory("Couldn't find non overlapping protected path. Skipped creating it");
stateMachine.fireNoPathFound("Couldn't find non overlapping protected path");
} else {
log.debug("New protected paths have been allocated: {}", allocatedPaths);
stateMachine.setNewProtectedForwardPath(newForwardPathId);
stateMachine.setNewProtectedReversePath(newReversePathId);
log.debug("Allocating resources for a new protected path of flow {}", flowId);
FlowResources flowResources = allocateFlowResources(tmpFlowCopy, newForwardPathId, newReversePathId);
stateMachine.setNewProtectedResources(flowResources);
FlowPathPair createdPaths = createFlowPathPair(flowId, flowResources, allocatedPaths, stateMachine.isIgnoreBandwidth(), stateMachine.getSharedBandwidthGroupId());
log.debug("New protected paths have been created: {}", createdPaths);
saveAllocationActionWithDumpsToHistory(stateMachine, tmpFlowCopy, "protected", createdPaths);
}
} else {
stateMachine.saveActionToHistory("Found the same protected path. Skipped creating of it");
}
}
use of org.openkilda.wfm.topology.flow.model.FlowPathPair in project open-kilda by telstra.
the class CompleteFlowPathRemovalAction method removeOldPrimaryFlowPaths.
private void removeOldPrimaryFlowPaths(Flow flow, FlowRerouteFsm stateMachine) {
PathId oldPrimaryForwardPathId = stateMachine.getOldPrimaryForwardPath();
PathId oldPrimaryReversePathId = stateMachine.getOldPrimaryReversePath();
if (oldPrimaryForwardPathId != null || oldPrimaryReversePathId != null) {
FlowPath oldPrimaryForward = flowPathRepository.remove(oldPrimaryForwardPathId).orElse(null);
FlowPath oldPrimaryReverse = flowPathRepository.remove(oldPrimaryReversePathId).orElse(null);
FlowPathPair removedPaths = null;
if (oldPrimaryForward != null) {
if (oldPrimaryReverse != null) {
log.debug("Removed the flow paths {} / {}", oldPrimaryForward, oldPrimaryReverse);
removedPaths = new FlowPathPair(oldPrimaryForward, oldPrimaryReverse);
updateIslsForFlowPath(removedPaths.getForward(), removedPaths.getReverse());
} else {
log.debug("Removed the flow path {} (no reverse pair)", oldPrimaryForward);
// TODO: History dumps require paired paths, fix it to support any (without opposite one).
removedPaths = new FlowPathPair(oldPrimaryForward, oldPrimaryForward);
updateIslsForFlowPath(removedPaths.getForward());
}
} else if (oldPrimaryReverse != null) {
log.debug("Removed the flow path {} (no forward pair)", oldPrimaryReverse);
// TODO: History dumps require paired paths, fix it to support any (without opposite one).
removedPaths = new FlowPathPair(oldPrimaryReverse, oldPrimaryReverse);
updateIslsForFlowPath(removedPaths.getReverse());
}
if (removedPaths != null) {
saveRemovalActionWithDumpToHistory(stateMachine, flow, removedPaths);
}
}
}
use of org.openkilda.wfm.topology.flow.model.FlowPathPair in project open-kilda by telstra.
the class CompleteFlowPathRemovalAction method removeOldProtectedFlowPaths.
private void removeOldProtectedFlowPaths(Flow flow, FlowRerouteFsm stateMachine) {
PathId oldProtectedForwardPathId = stateMachine.getOldProtectedForwardPath();
PathId oldProtectedReversePathId = stateMachine.getOldProtectedReversePath();
if (oldProtectedForwardPathId != null || oldProtectedReversePathId != null) {
FlowPath oldProtectedForward = flowPathRepository.remove(oldProtectedForwardPathId).orElse(null);
FlowPath oldProtectedReverse = flowPathRepository.remove(oldProtectedReversePathId).orElse(null);
FlowPathPair removedPaths = null;
if (oldProtectedForward != null) {
if (oldProtectedReverse != null) {
log.debug("Removed the flow paths {} / {}", oldProtectedForward, oldProtectedReverse);
removedPaths = new FlowPathPair(oldProtectedForward, oldProtectedReverse);
updateIslsForFlowPath(removedPaths.getForward(), removedPaths.getReverse());
} else {
log.debug("Removed the flow path {} (no reverse pair)", oldProtectedForward);
// TODO: History dumps require paired paths, fix it to support any (without opposite one).
removedPaths = new FlowPathPair(oldProtectedForward, oldProtectedForward);
updateIslsForFlowPath(removedPaths.getForward());
}
} else if (oldProtectedReverse != null) {
log.debug("Removed the flow path {} (no forward pair)", oldProtectedReverse);
// TODO: History dumps require paired paths, fix it to support any (without opposite one).
removedPaths = new FlowPathPair(oldProtectedReverse, oldProtectedReverse);
updateIslsForFlowPath(removedPaths.getReverse());
}
if (removedPaths != null) {
saveRemovalActionWithDumpToHistory(stateMachine, flow, removedPaths);
}
}
}
Aggregations