com.espertech.esper.epl.expression.time.ExprTimePeriodEvalDeltaConstMsec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esper Show documentation
Show all versions of esper Show documentation
Complex event processing and event series analysis component
/*
* *************************************************************************************
* Copyright (C) 2006-2015 EsperTech, Inc. All rights reserved. *
* http://www.espertech.com/esper *
* http://www.espertech.com *
* ---------------------------------------------------------------------------------- *
* The software in this package is published under the terms of the GPL license *
* a copy of which has been included with this distribution in the license.txt file. *
* *************************************************************************************
*/
package com.espertech.esper.epl.expression.time;
public class ExprTimePeriodEvalDeltaConstMsec implements ExprTimePeriodEvalDeltaConst
{
private final long msec;
public ExprTimePeriodEvalDeltaConstMsec(long msec) {
this.msec = msec;
}
public boolean equalsTimePeriod(ExprTimePeriodEvalDeltaConst otherComputation) {
if (otherComputation instanceof ExprTimePeriodEvalDeltaConstMsec) {
ExprTimePeriodEvalDeltaConstMsec other = (ExprTimePeriodEvalDeltaConstMsec) otherComputation;
return other.msec == msec;
}
return false;
}
public long deltaMillisecondsAdd(long fromTime) {
return msec;
}
public long deltaMillisecondsSubtract(long fromTime) {
return msec;
}
public ExprTimePeriodEvalDeltaResult deltaMillisecondsAddWReference(long fromTime, long reference) {
return new ExprTimePeriodEvalDeltaResult(deltaMillisecondsAddWReference(fromTime, reference, msec), reference);
}
protected static long deltaMillisecondsAddWReference(long current, long reference, long msec) {
// Example: current c=2300, reference r=1000, interval i=500, solution s=200
//
// int n = ((2300 - 1000) / 500) = 2
// r + (n + 1) * i - c = 200
//
// Negative example: current c=2300, reference r=4200, interval i=500, solution s=400
// int n = ((2300 - 4200) / 500) = -3
// r + (n + 1) * i - c = 4200 - 3*500 - 2300 = 400
//
long n = (current - reference) / msec;
if (reference > current) { // References in the future need to deduct one window
n--;
}
long solution = reference + (n + 1) * msec - current;
if (solution == 0) {
return msec;
}
return solution;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy