All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zepben.evolve.services.measurement.MeasurementServiceComparator.kt Maven / Gradle / Ivy

There is a newer version: 0.24.0rc1
Show newest version
/*
 * Copyright 2020 Zeppelin Bend Pty Ltd
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at https://mozilla.org/MPL/2.0/.
 */

package com.zepben.evolve.services.measurement

import com.zepben.evolve.cim.iec61970.base.meas.AccumulatorValue
import com.zepben.evolve.cim.iec61970.base.meas.AnalogValue
import com.zepben.evolve.cim.iec61970.base.meas.DiscreteValue
import com.zepben.evolve.cim.iec61970.base.meas.MeasurementValue
import com.zepben.evolve.services.common.BaseServiceComparator
import com.zepben.evolve.services.common.ObjectDifference

//
// NOTE: Unused functions have been suppressed for this class as they are access by reflection rather than directly. This
//       means they are always flagged as unused. By suppressing the warning it also means you might not be testing every
//       function, so make sure you check the code coverage
//
@Suppress("unused")
class MeasurementServiceComparator : BaseServiceComparator() {

    private fun compare(source: AccumulatorValue, target: AccumulatorValue): ObjectDifference =
        ObjectDifference(source, target).apply {
            compareMeasurementValue()

            compareValues(AccumulatorValue::accumulatorMRID, AccumulatorValue::value)
        }

    private fun compare(source: AnalogValue, target: AnalogValue): ObjectDifference =
        ObjectDifference(source, target).apply {
            compareMeasurementValue()

            compareValues(AnalogValue::value, AnalogValue::analogMRID)
        }

    private fun compare(source: DiscreteValue, target: DiscreteValue): ObjectDifference =
        ObjectDifference(source, target).apply {
            compareMeasurementValue()

            compareValues(DiscreteValue::discreteMRID, DiscreteValue::value)
        }

    private fun ObjectDifference.compareMeasurementValue(): ObjectDifference =
        apply {
            compareValues(MeasurementValue::timeStamp)
        }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy