patterntesting.runtime.monitor.AbstractProfileMonitor Maven / Gradle / Ivy
/**
* $Id: AbstractProfileMonitor.java,v 1.16 2016/03/05 17:46:00 oboehm Exp $
*
* Copyright (c) 2008 by Oliver Boehm
*
* Licensed 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 orimplied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* (c)reated 27.12.2008 by oliver ([email protected])
*/
package patterntesting.runtime.monitor;
import java.util.Locale;
import org.slf4j.*;
import patterntesting.runtime.util.Converter;
/**
* The Class AbstractProfileMonitor.
*
* @author oliver
* @version $Revision: 1.16 $
* @since 27.12.2008
*/
public abstract class AbstractProfileMonitor implements ProfileMonitor {
private static final Logger LOG = LoggerFactory.getLogger(AbstractProfileMonitor.class);
/**
* The ProfileMonitor with the higher number of totals is considered as
* "greater".
*
* @param other the other ProfileMonitor
* @return 0 if both ProfileMonitors has the same result and the same label
*/
public final int compareTo(final ProfileMonitor other) {
int diff = 1;
if (this.getLabel().equals(other.getLabel())) {
diff = 0;
} else if (this.getTotal() > other.getTotal()) {
diff = -1;
} else if (this.getTotal() < other.getTotal()) {
diff = 1;
} else {
diff = other.getHits() - this.getHits();
if (diff == 0) {
diff = this.getLabel().compareTo(other.getLabel());
}
}
LOG.trace("{} compared to {} returns {}.", this, other, diff);
return diff;
}
/**
* Gets the last value as time string. It returns the same result as
* {@link #getLastValue()} but in a human readable format. The english
* locale is used for formatting because this method is normally used for
* logging (which should be normally done in English).
*
* @return the last time (e.g. "42 seconds")
* @since 1.4.2
*/
public final String getLastTime() {
double value = this.getLastValue();
return Converter.getTimeAsString(value, Locale.ENGLISH);
}
/**
* If we impmlement the {@link Comparable#compareTo(Object)} method we
* should also implement/overwrite the {@link Object#equals(Object)}
* method. For the result of the equals method we use not the result of
* {@link Comparable#compareTo(Object)} but the label of the other object.
*
* @param obj the other
* @return true, if successful
* @see java.lang.Object#equals(java.lang.Object)
*/
@Override
public boolean equals(final Object obj) {
if (!(obj instanceof AbstractProfileMonitor)) {
LOG.trace("{} is not an instance of AbstractProfileMonitor.", obj);
return false;
}
AbstractProfileMonitor other = (AbstractProfileMonitor) obj;
boolean ok = this.getLabel().equals(other.getLabel());
LOG.trace("{} equals {} is {}.", this, other, ok);
return ok;
}
/**
* Hash code.
*
* @return the int
* @see java.lang.Object#hashCode()
*/
@Override
public int hashCode() {
return this.getLabel().hashCode();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy