Search in sources :

Example 11 with SoamConfigException

use of org.onosproject.incubator.net.l2monitoring.soam.SoamConfigException in project onos by opennetworkinglab.

the class LmCreateCodec method decode.

@Override
public LossMeasurementCreate decode(ObjectNode json, CodecContext context) {
    if (json == null || !json.isObject()) {
        return null;
    }
    JsonNode lmNode = json.get(LM);
    Version version = Version.Y17312011;
    if (lmNode.get(VERSION) != null) {
        version = Version.valueOf(lmNode.get(VERSION).asText());
    }
    LmType lmCfgType = LmType.LMLMM;
    if (lmNode.get(LM_CFG_TYPE) != null) {
        lmCfgType = LmType.valueOf(lmNode.get(LM_CFG_TYPE).asText(LMLMM));
    }
    MepId remoteMepId = MepId.valueOf(nullIsIllegal(lmNode.get(REMOTE_MEP_ID), REMOTE_MEP_ID + " is required").shortValue());
    Priority prio = Priority.valueOf(nullIsIllegal(lmNode.get(PRIORITY), PRIORITY + " is required in the format 'PRIOn'").asText());
    try {
        LmCreateBuilder builder = DefaultLmCreate.builder(version, remoteMepId, prio, lmCfgType);
        if (lmNode.get(COUNTERS_ENABLED) != null) {
            context.codec(CounterOption.class).decode((ArrayNode) (lmNode.get(COUNTERS_ENABLED)), context).forEach(builder::addToCountersEnabled);
        }
        if (lmNode.get(THRESHOLDS) != null) {
            context.codec(LossMeasurementThreshold.class).decode((ArrayNode) (lmNode.get(THRESHOLDS)), context).forEach(builder::addToLossMeasurementThreshold);
        }
        if (lmNode.get(AVAILABILITY_MEASUREMENT_INTERVAL_MINS) != null) {
            builder = builder.availabilityMeasurementInterval(Duration.ofMinutes(lmNode.get(AVAILABILITY_MEASUREMENT_INTERVAL_MINS).asInt()));
        }
        if (lmNode.get(AVAILABILITY_NUMBER_CONSECUTIVE_FLR_MEASUREMENTS) != null) {
            builder = builder.availabilityNumberConsecutiveFlrMeasurements(lmNode.get(AVAILABILITY_NUMBER_CONSECUTIVE_FLR_MEASUREMENTS).asInt());
        }
        if (lmNode.get(AVAILABILITY_FLR_THRESHOLD_PCT) != null) {
            builder = builder.availabilityFlrThreshold(MilliPct.ofPercent((float) lmNode.get(AVAILABILITY_FLR_THRESHOLD_PCT).asDouble()));
        }
        if (lmNode.get(AVAILABILITY_NUMBER_CONSECUTIVE_INTERVALS) != null) {
            builder = builder.availabilityNumberConsecutiveIntervals((short) lmNode.get(AVAILABILITY_NUMBER_CONSECUTIVE_INTERVALS).asInt());
        }
        if (lmNode.get(AVAILABILITY_NUMBER_CONSECUTIVE_HIGH_FLR) != null) {
            builder = builder.availabilityNumberConsecutiveHighFlr((short) lmNode.get(AVAILABILITY_NUMBER_CONSECUTIVE_HIGH_FLR).asInt());
        }
        if (lmNode.get(FRAME_SIZE) != null) {
            builder = (LmCreateBuilder) builder.frameSize((short) lmNode.get(FRAME_SIZE).asInt());
        }
        if (lmNode.get(MESSAGE_PERIOD_MS) != null) {
            builder = (LmCreateBuilder) builder.messagePeriod(Duration.ofMillis(lmNode.get(MESSAGE_PERIOD_MS).asInt()));
        }
        if (lmNode.get(MEASUREMENT_INTERVAL_MINS) != null) {
            builder = (LmCreateBuilder) builder.measurementInterval(Duration.ofMinutes(lmNode.get(MEASUREMENT_INTERVAL_MINS).asInt()));
        }
        if (lmNode.get(ALIGN_MEASUREMENT_INTERVALS) != null) {
            builder = (LmCreateBuilder) builder.alignMeasurementIntervals(lmNode.get(ALIGN_MEASUREMENT_INTERVALS).asBoolean());
        }
        if (lmNode.get(ALIGN_MEASUREMENT_OFFSET_MINS) != null) {
            builder = (LmCreateBuilder) builder.alignMeasurementOffset(Duration.ofMinutes(lmNode.get(ALIGN_MEASUREMENT_OFFSET_MINS).asInt()));
        }
        if (lmNode.get(START_TIME) != null) {
            builder = (LmCreateBuilder) builder.startTime(context.codec(StartTime.class).decode((ObjectNode) lmNode.get(START_TIME), context));
        }
        if (lmNode.get(STOP_TIME) != null) {
            builder = (LmCreateBuilder) builder.stopTime(context.codec(StopTime.class).decode((ObjectNode) lmNode.get(STOP_TIME), context));
        }
        return builder.build();
    } catch (SoamConfigException e) {
        throw new IllegalArgumentException(e);
    }
}
Also used : LmCreateBuilder(org.onosproject.incubator.net.l2monitoring.soam.loss.LossMeasurementCreate.LmCreateBuilder) LmType(org.onosproject.incubator.net.l2monitoring.soam.loss.LossMeasurementCreate.LmType) ObjectNode(com.fasterxml.jackson.databind.node.ObjectNode) Version(org.onosproject.incubator.net.l2monitoring.soam.delay.DelayMeasurementCreate.Version) Priority(org.onosproject.incubator.net.l2monitoring.cfm.Mep.Priority) JsonNode(com.fasterxml.jackson.databind.JsonNode) SoamConfigException(org.onosproject.incubator.net.l2monitoring.soam.SoamConfigException) ArrayNode(com.fasterxml.jackson.databind.node.ArrayNode) MepId(org.onosproject.incubator.net.l2monitoring.cfm.identifier.MepId)

Aggregations

SoamConfigException (org.onosproject.incubator.net.l2monitoring.soam.SoamConfigException)11 MepId (org.onosproject.incubator.net.l2monitoring.cfm.identifier.MepId)8 CfmConfigException (org.onosproject.incubator.net.l2monitoring.cfm.service.CfmConfigException)7 Consumes (javax.ws.rs.Consumes)6 Produces (javax.ws.rs.Produces)6 MaIdShort (org.onosproject.incubator.net.l2monitoring.cfm.identifier.MaIdShort)6 MdId (org.onosproject.incubator.net.l2monitoring.cfm.identifier.MdId)6 SoamService (org.onosproject.incubator.net.l2monitoring.soam.SoamService)6 JsonNode (com.fasterxml.jackson.databind.JsonNode)4 ArrayNode (com.fasterxml.jackson.databind.node.ArrayNode)4 ObjectNode (com.fasterxml.jackson.databind.node.ObjectNode)4 GET (javax.ws.rs.GET)4 ObjectMapper (com.fasterxml.jackson.databind.ObjectMapper)2 IOException (java.io.IOException)2 URI (java.net.URI)2 URISyntaxException (java.net.URISyntaxException)2 OffsetDateTime (java.time.OffsetDateTime)2 POST (javax.ws.rs.POST)2 Path (javax.ws.rs.Path)2 Test (org.junit.Test)2