All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.terracotta.statistics.GeneralOperationStatistic Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 2.10.9.2
Show newest version
/*
 * 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.EnumMap;
import java.util.Map;
import java.util.Set;

import org.terracotta.statistics.jsr166e.LongAdder;
import org.terracotta.statistics.observer.OperationObserver;
import org.terracotta.statistics.observer.ChainedOperationObserver;

/**
 * An operation observer that tracks operation result counts and can drive further derived statistics.
 * 
 * @param  the operation result enum type
 */
class GeneralOperationStatistic> extends AbstractOperationStatistic implements OperationStatistic {
  
  private final EnumMap counts;
  
  /**
   * Create an operation statistics for a given operation result type.
   * 
   * @param properties a set of context properties
   * @param type operation result type
   */
  GeneralOperationStatistic(String name, Set tags, Map properties, Class type) {
    super(name, tags, properties, type);
    this.counts = new EnumMap(type);
    for (T t : type.getEnumConstants()) {
      counts.put(t, new LongAdder());
    }
  }
  
  /**
   * Return the count of operations with the given type.
   * 
   * @param type the result type
   * @return the operation count
   */
  @Override
  public long count(T type) {
    return counts.get(type).sum();
  }

  @Override
  public long sum(Set types) {
    long sum = 0;
    for (T t : types) {
      sum += counts.get(t).sum();
    }
    return sum;
  }
  
  @Override
  public void end(T result) {
    counts.get(result).increment();
    if (!derivedStatistics.isEmpty()) {
      long time = Time.time();
      for (ChainedOperationObserver observer : derivedStatistics) {
        observer.end(time, result);
      }
    }
  }
  
  @Override
  public void end(T result, long ... parameters) {
    counts.get(result).increment();
    if (!derivedStatistics.isEmpty()) {
      long time = Time.time();
      for (ChainedOperationObserver observer : derivedStatistics) {
        observer.end(time, result, parameters);
      }
    }
  }
  
  @Override
  public String toString() {
    return counts.toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy