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

brooklyn.enricher.DeltaEnricher Maven / Gradle / Ivy

package brooklyn.enricher;

import static brooklyn.util.GroovyJavaMethods.elvis;
import brooklyn.enricher.basic.AbstractTransformingEnricher;
import brooklyn.entity.Entity;
import brooklyn.event.AttributeSensor;
import brooklyn.event.Sensor;
import brooklyn.event.SensorEvent;
import brooklyn.util.flags.TypeCoercions;

/**
 * Converts an absolute sensor into a delta sensor (i.e. the diff between the current and previous value)
 */
public class DeltaEnricher extends AbstractTransformingEnricher {
    Number last = 0;
    
    public DeltaEnricher(Entity producer, Sensor source, AttributeSensor target) {
        super(producer, source, target);
    }
    
    @Override
    public void onEvent(SensorEvent event) {
        Number current = elvis(event.getValue(), 0);
        double newVal = current.doubleValue() - last.doubleValue();
        entity.setAttribute((AttributeSensor)target, TypeCoercions.coerce(newVal, target.getType()));
        last = current;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy