blob: ad598dcd2094534ff60213231003cf5b5928ddc0 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license
* agreements. See the NOTICE file distributed with this work for additional information regarding
* copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the License. You may obtain a
* copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package org.apache.geode.internal.admin.statalerts;
import java.io.DataInput;
import java.io.DataOutput;
import java.io.IOException;
import org.apache.geode.DataSerializer;
import org.apache.geode.StatisticsFactory;
import org.apache.geode.internal.DataSerializableFixedID;
import org.apache.geode.internal.Version;
import org.apache.geode.internal.admin.StatAlert;
import org.apache.geode.internal.admin.StatAlertDefinition;
/**
* Implementation of {@link StatAlertDefinition}, represents threshold as data range
*
*/
public class GaugeThresholdDecoratorImpl extends BaseDecoratorImpl
implements DataSerializableFixedID {
private static final long serialVersionUID = -8555077820685711783L;
protected Number lowerLimit;
protected Number upperLimit;
public GaugeThresholdDecoratorImpl() {}
public GaugeThresholdDecoratorImpl(StatAlertDefinition definition, Number lowerLimit,
Number upperLimit) {
super(definition);
this.lowerLimit = lowerLimit;
this.upperLimit = upperLimit;
}
@Override
public int getDSFID() {
return DataSerializableFixedID.STAT_ALERT_DEFN_GAUGE_THRESHOLD;
}
public Number getThresholdLowerLimit() {
return lowerLimit;
}
public Number getThresholdUpperLimit() {
return upperLimit;
}
public boolean isGauge() {
return true;
}
@Override
public boolean verify(StatisticsFactory factory) {
return (super.verify(factory) && (lowerLimit != null) && (upperLimit != null));
}
@Override
public String toString() {
StringBuffer buffer = new StringBuffer(super.toString());
buffer.append("Threshold Limit: " + lowerLimit + " to " + upperLimit + "\n");
return buffer.toString();
}
/**
* This eval just applies to a single value or the 1st value in params
*/
@Override
public boolean evaluate(Number[] params) {
return super.evaluate(params)
&& (isGreaterThan(params[0], upperLimit) || isLessThan(params[0], lowerLimit));
}
@Override
public boolean evaluate() {
return evaluate(getValue());
}
@Override
public StatAlert evaluateAndAlert(Number[] params) {
return evaluate(params) ? super.evaluateAndAlert(params) : null;
}
@Override
public StatAlert evaluateAndAlert() {
return evaluate() ? super.evaluateAndAlert() : null;
}
@Override
public Number[] getValue() {
return super.getValue();
}
@Override
public Number[] getValue(Number[] vals) {
return super.getValue(vals);
}
@Override
public boolean hasDecorator(String decoratorID) {
return ID.equalsIgnoreCase(decoratorID) || super.hasDecorator(decoratorID);
}
@Override
public StatAlertDefinition getDecorator(String decoratorID) {
return ID.equalsIgnoreCase(decoratorID) ? this : super.getDecorator(decoratorID);
}
@Override
public void toData(DataOutput out) throws IOException {
super.toData(out);
DataSerializer.writeObject(this.lowerLimit, out);
DataSerializer.writeObject(this.upperLimit, out);
}
@Override
public void fromData(DataInput in) throws IOException, ClassNotFoundException {
super.fromData(in);
this.lowerLimit = (Number) DataSerializer.readObject(in);
this.upperLimit = (Number) DataSerializer.readObject(in);
}
public static final String ID = "GaugeThreshold";
@Override
public Version[] getSerializationVersions() {
return null;
}
}