org.terracotta.statistics.AbstractOperationStatistic Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ehcache Show documentation
Show all versions of ehcache Show documentation
Ehcache is an open source, standards-based cache used to boost performance,
offload the database and simplify scalability. Ehcache is robust, proven and full-featured and
this has made it the most widely-used Java-based cache.
/*
* All content copyright Terracotta, Inc., unless otherwise indicated.
*
* 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 or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.terracotta.statistics;
import java.util.Collections;
import java.util.EnumSet;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import org.terracotta.context.annotations.ContextAttribute;
import org.terracotta.statistics.observer.ChainedOperationObserver;
/**
*
* @author cdennis
*/
@ContextAttribute("this")
public abstract class AbstractOperationStatistic> extends AbstractSourceStatistic> implements OperationStatistic {
@ContextAttribute("name") public final String name;
@ContextAttribute("tags") public final Set tags;
@ContextAttribute("properties") public final Map properties;
@ContextAttribute("type") public final Class type;
/**
* Create an operation statistics for a given operation result type.
*
* @param properties a set of context properties
* @param type operation result type
*/
AbstractOperationStatistic(String name, Set tags, Map properties, Class type) {
this.name = name;
this.tags = Collections.unmodifiableSet(new HashSet(tags));
this.properties = Collections.unmodifiableMap(new HashMap(properties));
this.type = type;
}
@Override
public Class type() {
return type;
}
/**
* Return a {@ValueStatistic} returning the count for the given result.
*
* @param result the result of interest
* @return a {@code ValueStatistic} instance
*/
@Override
public ValueStatistic statistic(final T result) {
return new ValueStatistic() {
@Override
public Long value() {
return count(result);
}
};
}
@Override
public ValueStatistic statistic(final Set results) {
return new ValueStatistic() {
@Override
public Long value() {
return sum(results);
}
};
}
@Override
public long sum() {
return sum(EnumSet.allOf(type));
}
@Override
public void begin() {
if (!derivedStatistics.isEmpty()) {
long time = Time.time();
for (ChainedOperationObserver super T> observer : derivedStatistics) {
observer.begin(time);
}
}
}
}