Package ninja.metrics

Source Code of ninja.metrics.InstrumentedCache

/**
* Copyright (C) 2012-2014 the original author or authors.
*
* 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 ninja.metrics;

import java.util.Map;

import ninja.cache.Cache;

import com.codahale.metrics.Counter;
import com.codahale.metrics.MetricRegistry;

/**
* Instruments the configured Ninja Cache instance for Metrics collection.
*
* @author James Moger
*
*/
public class InstrumentedCache implements Cache {

    private final Cache underlyingCache;

    private MetricsService metricsService;

    private Counter hitCounter;

    private Counter missCounter;

    InstrumentedCache(Cache cache, MetricsService metricsService) {
        this.underlyingCache = cache;
        this.metricsService = metricsService;
        init();
    }

    private void init() {
        MetricRegistry registry = metricsService.getMetricRegistry();

        hitCounter = registry.counter("ninja.cache.hits");
        missCounter = registry.counter("ninja.cache.miss");
    }

    @Override
    @Timed("ninja.cache.add")
    public void add(String key, Object value, int expiration) {
        underlyingCache.add(key, value, expiration);
    }

    @Override
    @Timed("ninja.cache.safeAdd")
    public boolean safeAdd(String key, Object value, int expiration) {
        return underlyingCache.safeAdd(key, value, expiration);
    }

    @Override
    @Timed("ninja.cache.set")
    public void set(String key, Object value, int expiration) {
        underlyingCache.set(key, value, expiration);
    }

    @Override
    @Timed("ninja.cache.safeSet")
    public boolean safeSet(String key, Object value, int expiration) {
        return underlyingCache.safeSet(key, value, expiration);
    }

    @Override
    @Timed("ninja.cache.replace")
    public void replace(String key, Object value, int expiration) {
        underlyingCache.replace(key, value, expiration);
    }

    @Override
    @Timed("ninja.cache.safeReplace")
    public boolean safeReplace(String key, Object value, int expiration) {
        return underlyingCache.safeReplace(key, value, expiration);
    }

    @Override
    @Timed("ninja.cache.get")
    public Object get(String key) {
        Object result = underlyingCache.get(key);
        if (result == null) {
            missCounter.inc();
        } else {
            hitCounter.inc();
        }
        return result;
    }

    @Override
    @Timed("ninja.cache.getMany")
    public Map<String, Object> get(String[] keys) {
        Map<String, Object> result = underlyingCache.get(keys);
        if (result == null || result.isEmpty()) {
            missCounter.inc(keys.length);
        } else {
            hitCounter.inc(result.size());
            missCounter.inc(keys.length - result.size());
        }
        return result;
    }

    @Override
    @Timed("ninja.cache.incr")
    public long incr(String key, int by) {
        return underlyingCache.incr(key, by);

    }

    @Override
    @Timed("ninja.cache.decr")
    public long decr(String key, int by) {
        return underlyingCache.decr(key, by);
    }

    @Override
    @Timed("ninja.cache.clear")
    public void clear() {
        underlyingCache.clear();
    }

    @Override
    @Timed("ninja.cache.delete")
    public void delete(String key) {
        underlyingCache.delete(key);
    }

    @Override
    @Timed("ninja.cache.safeDelete")
    public boolean safeDelete(String key) {
        return underlyingCache.safeDelete(key);
    }
}
TOP

Related Classes of ninja.metrics.InstrumentedCache

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.