
net.intelie.liverig.plugin.widgets.SwingingDoorPipe Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-assets Show documentation
Show all versions of plugin-assets Show documentation
Asset framework for industries solutions
The newest version!
package net.intelie.liverig.plugin.widgets;
import net.intelie.pipes.*;
import net.intelie.pipes.time.SchedulerContext;
import net.intelie.pipes.time.TimeSpan;
import net.intelie.pipes.types.Metadata;
import net.intelie.pipes.types.RowFields;
import net.intelie.pipes.types.Type;
import org.jetbrains.annotations.Nullable;
import java.io.Serializable;
@Export("@compress.swingingDoor")
@Help(usage = "@compress.swingingDoor [] [] [by ]",
description = "Compresses the input using the swinging door algorithm")
public class SwingingDoorPipe implements Pipe {
private static final long serialVersionUID = 1L;
private static final long BEST_DAY_TO_ESTIMATE_THINGS = 32503427999999L;
private final GroupBy group;
private final Double maxDeviation;
private final Double maxOutputPeriod;
private final Scalar expr;
private final Metadata metadata;
private final RowFields fields;
private final Property timestamp;
public SwingingDoorPipe(ArgQueue queue) throws PipeException {
this.group = queue.groupBy();
this.expr = queue.scalar(Type.NUMBER).getSafe();
this.maxDeviation = queue.constantValue(Type.NUMBER)
.getSafe(Q -> 1000d);
this.maxOutputPeriod = queue.constantValue(Type.NUMBER)
.getSafe(Q -> {
TimeSpan span = TimeSpan.parse(Q.compiler().expression().compileToQueue("@@fullspan").constantValue(Type.STRING).get());
return (span.end(BEST_DAY_TO_ESTIMATE_THINGS) - span.start(BEST_DAY_TO_ESTIMATE_THINGS)) / 1024d;
});
this.metadata = queue.context().metadata().resetWeights(expr.weight() * (group.isEmpty() ? 1 : Expression.GROUP_MEM_PENALTY));
this.timestamp = queue.context().timestamp();
this.fields = this.metadata.getRowFields();
}
@Override
public boolean split() {
return false;
}
@Override
public Pipe mapper() {
return null;
}
@Override
public Pipe reducer() {
return this;
}
@Override
public Metadata metadata() {
return metadata;
}
@Override
public PipeInstance newInstance(final Sink listener) {
return new SwingingDoorPipe.MyInstance(listener);
}
@Override
public PropertyVisitor visit(Scope parent, PropertyVisitor visitor) {
return visitor;
}
private class MyInstance implements PipeInstance, Serializable {
private static final long serialVersionUID = 1L;
private final GroupBy.State state;
public MyInstance(Sink listener) {
this.state = group.newState(key
-> new SwingingDoorCompression(listener, fields, maxDeviation, maxOutputPeriod));
}
public void flow(@Nullable Object obj) {
if (obj == null)
return;
Double x = timestamp.eval(null, obj);
if (x == null || Double.isNaN(x))
return;
SwingingDoorCompression compress = state.get(null, obj);
Double y = expr.eval(null, obj);
if (y != null && !Double.isNaN(y))
compress.flow(x, y, obj);
}
@Override
public void flowMany(Iterable iterable) {
flowManyDefault(this, iterable);
}
@Override
public void turnOn(SchedulerContext context) {
}
@Override
public void destroy() {
this.destroy(true);
}
@Override
public void destroy(boolean flushTimers) {
}
@Override
public void advanceTo(long timestamp) {
}
private void flowManyDefault(PipeInstance handle, Iterable it) {
if (it == null) return;
for (Object o : it)
handle.flow(o);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy