Search in sources :

Example 6 with Mep

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()));
    }
}
Also used : Device(org.onosproject.net.Device) CfmMepProgrammable(org.onosproject.incubator.net.l2monitoring.cfm.service.CfmMepProgrammable) Mep(org.onosproject.incubator.net.l2monitoring.cfm.Mep) CfmConfigException(org.onosproject.incubator.net.l2monitoring.cfm.service.CfmConfigException) MepKeyId(org.onosproject.incubator.net.l2monitoring.cfm.identifier.MepKeyId)

Example 7 with Mep

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);
        }
    });
}
Also used : DeviceId(org.onosproject.net.DeviceId) CfmMepProgrammable(org.onosproject.incubator.net.l2monitoring.cfm.service.CfmMepProgrammable) Mep(org.onosproject.incubator.net.l2monitoring.cfm.Mep) CfmConfigException(org.onosproject.incubator.net.l2monitoring.cfm.service.CfmConfigException) HashSet(java.util.HashSet)

Example 8 with Mep

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);
        }
    });
}
Also used : DeviceId(org.onosproject.net.DeviceId) CfmMepProgrammable(org.onosproject.incubator.net.l2monitoring.cfm.service.CfmMepProgrammable) Mep(org.onosproject.incubator.net.l2monitoring.cfm.Mep) CfmConfigException(org.onosproject.incubator.net.l2monitoring.cfm.service.CfmConfigException) HashSet(java.util.HashSet)

Example 9 with Mep

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;
    }
}
Also used : DeviceId(org.onosproject.net.DeviceId) CfmMepProgrammable(org.onosproject.incubator.net.l2monitoring.cfm.service.CfmMepProgrammable) Mep(org.onosproject.incubator.net.l2monitoring.cfm.Mep) CfmConfigException(org.onosproject.incubator.net.l2monitoring.cfm.service.CfmConfigException) MepKeyId(org.onosproject.incubator.net.l2monitoring.cfm.identifier.MepKeyId)

Example 10 with Mep

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);
}
Also used : CfmMepProgrammable(org.onosproject.incubator.net.l2monitoring.cfm.service.CfmMepProgrammable) Mep(org.onosproject.incubator.net.l2monitoring.cfm.Mep) CfmConfigException(org.onosproject.incubator.net.l2monitoring.cfm.service.CfmConfigException) MepKeyId(org.onosproject.incubator.net.l2monitoring.cfm.identifier.MepKeyId)

Aggregations

Mep (org.onosproject.incubator.net.l2monitoring.cfm.Mep)18 CfmConfigException (org.onosproject.incubator.net.l2monitoring.cfm.service.CfmConfigException)14 CfmMepProgrammable (org.onosproject.incubator.net.l2monitoring.cfm.service.CfmMepProgrammable)8 DeviceId (org.onosproject.net.DeviceId)8 MepId (org.onosproject.incubator.net.l2monitoring.cfm.identifier.MepId)6 MepKeyId (org.onosproject.incubator.net.l2monitoring.cfm.identifier.MepKeyId)6 ObjectMapper (com.fasterxml.jackson.databind.ObjectMapper)5 JsonNode (com.fasterxml.jackson.databind.JsonNode)4 Consumes (javax.ws.rs.Consumes)4 Produces (javax.ws.rs.Produces)4 Test (org.junit.Test)4 DefaultMep (org.onosproject.incubator.net.l2monitoring.cfm.DefaultMep)4 CfmMepService (org.onosproject.incubator.net.l2monitoring.cfm.service.CfmMepService)4 ObjectNode (com.fasterxml.jackson.databind.node.ObjectNode)3 URI (java.net.URI)3 ArrayList (java.util.ArrayList)3 POST (javax.ws.rs.POST)3 MaintenanceAssociation (org.onosproject.incubator.net.l2monitoring.cfm.MaintenanceAssociation)3 MaIdShort (org.onosproject.incubator.net.l2monitoring.cfm.identifier.MaIdShort)3 MdId (org.onosproject.incubator.net.l2monitoring.cfm.identifier.MdId)3