Search in sources :

Example 1 with Version

use of org.onosproject.incubator.net.l2monitoring.soam.delay.DelayMeasurementCreate.Version in project onos by opennetworkinglab.

the class DmCreateCodec method decode.

@Override
public DelayMeasurementCreate decode(ObjectNode json, CodecContext context) {
    if (json == null || !json.isObject()) {
        return null;
    }
    JsonNode dmNode = json.get(DM);
    Version version = Version.Y17312011;
    if (dmNode.get(VERSION) != null) {
        version = Version.valueOf(dmNode.get(VERSION).asText());
    }
    DmType dmCfgType = DmType.DMDMM;
    if (dmNode.get(DM_CFG_TYPE) != null) {
        dmCfgType = DmType.valueOf(dmNode.get(DM_CFG_TYPE).asText(DMDMM));
    }
    MepId remoteMepId = MepId.valueOf(nullIsIllegal(dmNode.get(REMOTE_MEP_ID), REMOTE_MEP_ID + " is required").shortValue());
    Priority prio = Priority.valueOf(nullIsIllegal(dmNode.get(PRIORITY), PRIORITY + " is required in the format 'PRIOn'").asText());
    try {
        DmCreateBuilder builder = DefaultDelayMeasurementCreate.builder(dmCfgType, version, remoteMepId, prio);
        if (dmNode.get(MEASUREMENTS_ENABLED) != null) {
            context.codec(MeasurementOption.class).decode((ArrayNode) (dmNode.get(MEASUREMENTS_ENABLED)), context).forEach(builder::addToMeasurementsEnabled);
        }
        if (dmNode.get(BINS_PER_FD_INTERVAL) != null) {
            builder = builder.binsPerFdInterval((short) dmNode.get(BINS_PER_FD_INTERVAL).asInt());
        }
        if (dmNode.get(BINS_PER_IFDV_INTERVAL) != null) {
            builder = builder.binsPerIfdvInterval((short) dmNode.get(BINS_PER_IFDV_INTERVAL).asInt());
        }
        if (dmNode.get(IFDV_SELECTION_OFFSET) != null) {
            builder = builder.ifdvSelectionOffset((short) dmNode.get(IFDV_SELECTION_OFFSET).asInt());
        }
        if (dmNode.get(BINS_PER_FDR_INTERVAL) != null) {
            builder = builder.binsPerFdrInterval((short) dmNode.get(BINS_PER_FDR_INTERVAL).asInt());
        }
        if (dmNode.get(FRAME_SIZE) != null) {
            builder = (DmCreateBuilder) builder.frameSize((short) dmNode.get(FRAME_SIZE).asInt());
        }
        if (dmNode.get(MESSAGE_PERIOD_MS) != null) {
            builder = (DmCreateBuilder) builder.messagePeriod(Duration.ofMillis(dmNode.get(MESSAGE_PERIOD_MS).asInt()));
        }
        if (dmNode.get(MEASUREMENT_INTERVAL_MINS) != null) {
            builder = (DmCreateBuilder) builder.measurementInterval(Duration.ofMinutes(dmNode.get(MEASUREMENT_INTERVAL_MINS).asInt()));
        }
        if (dmNode.get(ALIGN_MEASUREMENT_INTERVALS) != null) {
            builder = (DmCreateBuilder) builder.alignMeasurementIntervals(dmNode.get(ALIGN_MEASUREMENT_INTERVALS).asBoolean());
        }
        if (dmNode.get(ALIGN_MEASUREMENT_OFFSET_MINS) != null) {
            builder = (DmCreateBuilder) builder.alignMeasurementOffset(Duration.ofMinutes(dmNode.get(ALIGN_MEASUREMENT_OFFSET_MINS).asInt()));
        }
        if (dmNode.get(START_TIME) != null) {
            builder = (DmCreateBuilder) builder.startTime(context.codec(StartTime.class).decode((ObjectNode) dmNode.get(START_TIME), context));
        }
        if (dmNode.get(STOP_TIME) != null) {
            builder = (DmCreateBuilder) builder.stopTime(context.codec(StopTime.class).decode((ObjectNode) dmNode.get(STOP_TIME), context));
        }
        return builder.build();
    } catch (SoamConfigException e) {
        throw new IllegalArgumentException(e);
    }
}
Also used : DmType(org.onosproject.incubator.net.l2monitoring.soam.delay.DelayMeasurementCreate.DmType) 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) DmCreateBuilder(org.onosproject.incubator.net.l2monitoring.soam.delay.DelayMeasurementCreate.DmCreateBuilder) 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)

Example 2 with Version

use of org.onosproject.incubator.net.l2monitoring.soam.delay.DelayMeasurementCreate.Version 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

JsonNode (com.fasterxml.jackson.databind.JsonNode)2 ArrayNode (com.fasterxml.jackson.databind.node.ArrayNode)2 ObjectNode (com.fasterxml.jackson.databind.node.ObjectNode)2 Priority (org.onosproject.incubator.net.l2monitoring.cfm.Mep.Priority)2 MepId (org.onosproject.incubator.net.l2monitoring.cfm.identifier.MepId)2 SoamConfigException (org.onosproject.incubator.net.l2monitoring.soam.SoamConfigException)2 Version (org.onosproject.incubator.net.l2monitoring.soam.delay.DelayMeasurementCreate.Version)2 DmCreateBuilder (org.onosproject.incubator.net.l2monitoring.soam.delay.DelayMeasurementCreate.DmCreateBuilder)1 DmType (org.onosproject.incubator.net.l2monitoring.soam.delay.DelayMeasurementCreate.DmType)1 LmCreateBuilder (org.onosproject.incubator.net.l2monitoring.soam.loss.LossMeasurementCreate.LmCreateBuilder)1 LmType (org.onosproject.incubator.net.l2monitoring.soam.loss.LossMeasurementCreate.LmType)1