use of org.onosproject.incubator.net.l2monitoring.cfm.Mep in project onos by opennetworkinglab.
the class CfmMepManager method processDeviceRemoved.
/**
* This removes a MEP from the internal list of Meps, and updates remote meps list on other Meps.
* Note: This does not call the device's CfmMepProgrammable, because there
* would be no point as the device has already been removed from ONOS.
* The configuration for this MEP may still be present on the actual device, and
* any future config would have to be careful to wipe the Mep from the device
* before applying a Mep again
* @param removedDevice The device that has been removed
*/
protected void processDeviceRemoved(Device removedDevice) {
log.warn("Remove Mep(s) associated with Device: " + removedDevice.id());
Collection<Mep> mepListForDevice = mepStore.getMepsByDeviceId(removedDevice.id());
for (Mep mep : mepStore.getAllMeps()) {
for (Mep mepForDevice : mepListForDevice) {
if (mep.mdId().equals(mepForDevice.mdId()) && mep.maId().equals(mepForDevice.maId())) {
Device mepDevice = deviceService.getDevice(mep.deviceId());
log.info("Removing Remote Mep {} from MA{} on device {}", mepForDevice.mepId(), mep.mdId().mdName() + "/" + mep.maId().maName(), mepDevice.id());
try {
mepDevice.as(CfmMepProgrammable.class).deleteMaRemoteMepOnDevice(mep.mdId(), mep.maId(), mepForDevice.mepId());
} catch (CfmConfigException e) {
log.error("Error when removing Remote Mep {} from MA {}. Continuing.", mep.mdId().mdName() + "/" + mep.maId().maName(), mepForDevice.mepId());
}
}
}
}
for (Iterator<Mep> iter = mepListForDevice.iterator(); iter.hasNext(); ) {
mepStore.deleteMep(new MepKeyId(iter.next()));
}
}
use of org.onosproject.incubator.net.l2monitoring.cfm.Mep in project onos by opennetworkinglab.
the class CfmMepManager method processMaRemoved.
protected void processMaRemoved(MdId mdId, MaIdShort maId, MaintenanceDomain oldMd) {
Set<DeviceId> deviceIdsRemoved = new HashSet<>();
for (Iterator<Mep> iter = mepStore.getMepsByMdMa(mdId, maId).iterator(); iter.hasNext(); ) {
Mep mepForMdMa = iter.next();
DeviceId mepDeviceId = mepForMdMa.deviceId();
try {
deviceService.getDevice(mepDeviceId).as(CfmMepProgrammable.class).deleteMep(mdId, maId, mepForMdMa.mepId(), Optional.of(oldMd));
deviceIdsRemoved.add(mepDeviceId);
} catch (CfmConfigException e) {
log.warn("Could not delete MEP {} from Device {}", mepForMdMa.mepId(), mepDeviceId, e);
}
iter.remove();
log.info("Removed MEP {} from Device {} because MA {} was deleted", mepForMdMa.mepId(), mepDeviceId, mdId.mdName() + "/" + maId.maName());
}
deviceIdsRemoved.forEach(deviceId -> {
try {
deviceService.getDevice(deviceId).as(CfmMepProgrammable.class).deleteMaOnDevice(mdId, maId, Optional.of(oldMd));
} catch (CfmConfigException e) {
log.warn("Could not delete MA {} from Device {}", mdId.mdName() + "/" + maId.maName(), deviceId, e);
}
});
}
use of org.onosproject.incubator.net.l2monitoring.cfm.Mep in project onos by opennetworkinglab.
the class CfmMepManager method processMdRemoved.
protected void processMdRemoved(MdId mdId, MaintenanceDomain oldMd) {
Set<DeviceId> deviceIdsRemoved = new HashSet<>();
for (Iterator<Mep> iter = mepStore.getMepsByMd(mdId).iterator(); iter.hasNext(); ) {
Mep mep = iter.next();
DeviceId mepDeviceId = mep.deviceId();
try {
deviceService.getDevice(mepDeviceId).as(CfmMepProgrammable.class).deleteMep(mdId, mep.maId(), mep.mepId(), Optional.of(oldMd));
deviceIdsRemoved.add(mepDeviceId);
} catch (CfmConfigException e) {
log.warn("Could not delete MEP {} from Device {}", mep.mepId(), mepDeviceId, e);
}
iter.remove();
log.info("Removed MEP {} from Device {} because MD {} was deleted", mep.mepId(), mepDeviceId, mdId.mdName());
}
deviceIdsRemoved.forEach(deviceId -> {
try {
deviceService.getDevice(deviceId).as(CfmMepProgrammable.class).deleteMdOnDevice(mdId, Optional.of(oldMd));
} catch (CfmConfigException e) {
log.warn("Could not delete MD {} from Device {}", mdId.mdName(), deviceId, e);
}
});
}
use of org.onosproject.incubator.net.l2monitoring.cfm.Mep in project onos by opennetworkinglab.
the class CfmMepManager method getMep.
@Override
public MepEntry getMep(MdId mdName, MaIdShort maName, MepId mepId) throws CfmConfigException {
MepKeyId key = new MepKeyId(mdName, maName, mepId);
// Will throw IllegalArgumentException if ma does not exist
cfmMdService.getMaintenanceAssociation(mdName, maName);
Optional<Mep> mepOptional = mepStore.getMep(key);
if (mepOptional.isPresent()) {
Mep mep = mepOptional.get();
DeviceId mepDeviceId = mep.deviceId();
if (deviceService.getDevice(mepDeviceId) == null) {
throw new CfmConfigException("Device not found " + mepDeviceId);
} else if (!deviceService.getDevice(mepDeviceId).is(CfmMepProgrammable.class)) {
throw new CfmConfigException("Device " + mepDeviceId + " does not support CfmMepProgrammable behaviour.");
}
log.debug("Retrieving MEP reults for Mep {} in MD {}, MA {} on Device {}", mep.mepId(), mdName, maName, mepDeviceId);
return deviceService.getDevice(mepDeviceId).as(CfmMepProgrammable.class).getMep(mdName, maName, mepId);
} else {
return null;
}
}
use of org.onosproject.incubator.net.l2monitoring.cfm.Mep in project onos by opennetworkinglab.
the class CfmMepManager method abortLoopback.
@Override
public void abortLoopback(MdId mdName, MaIdShort maName, MepId mepId) throws CfmConfigException {
MepKeyId key = new MepKeyId(mdName, maName, mepId);
Mep mep = mepStore.getMep(key).orElseThrow(() -> new CfmConfigException("Mep " + mdName + "/" + maName + "/" + mepId + " not found when calling Aborting Loopback"));
log.debug("Aborting Loopback on MEP {} on Device {}", key, mep.deviceId());
deviceService.getDevice(mep.deviceId()).as(CfmMepProgrammable.class).abortLoopback(mdName, maName, mepId);
}
Aggregations