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

org.apache.openjpa.datacache.CacheStatisticsImpl Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
/*
 * 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.openjpa.datacache;

import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import java.util.Map.Entry;

import org.apache.openjpa.util.OpenJPAId;

/**
 * The default CacheStatistics(SPI) implementation.
 */
public class CacheStatisticsImpl implements CacheStatisticsSPI {
    private static final long serialVersionUID = 9014495759588003166L;
    private static final int ARRAY_SIZE = 3;
    private long[] totalStat = new long[ARRAY_SIZE];
    private long[] stat = new long[ARRAY_SIZE];
    private Map stats = new HashMap();
    private Map totalStats = new HashMap();

    private Date start = new Date();
    private Date since = new Date();
    private boolean enabled = false;

    private static final int READ = 0;
    private static final int HIT = 1;
    private static final int WRITE = 2;

    public long getReadCount() {
        return stat[READ];
    }

    public long getHitCount() {
        return stat[HIT];
    }

    public long getWriteCount() {
        return stat[WRITE];
    }

    public long getTotalReadCount() {
        return totalStat[READ];
    }

    public long getTotalHitCount() {
        return totalStat[HIT];
    }

    public long getTotalWriteCount() {
        return totalStat[WRITE];
    }

    public long getReadCount(Class c) {
        return getReadCount(c.getName());        
    }
    
    public long getReadCount(String str){
        return getCount(stats, str, READ);
    }

    public long getHitCount(Class c) {
        return getHitCount(c.getName());
    }

    public long getHitCount(String str) {
        return getCount(stats, str, HIT);
    }
    
    public long getWriteCount(Class c) {
        return getWriteCount(c.getName());
    }
    public long getWriteCount(String str) {
        return getCount(stats, str, WRITE);
    }

    public long getTotalReadCount(Class c) {
        return getTotalReadCount(c.getName());
    }

    public long getTotalReadCount(String str) {
        return getCount(totalStats, str, READ);        
    }
    
    public long getTotalHitCount(Class c) {
        return getTotalHitCount(c.getName());   
    }
    
    public long getTotalHitCount(String str) {
        return getCount(totalStats, str, HIT);
    }

    public long getTotalWriteCount(Class c) {
        return getCount(totalStats, c.getName(), WRITE);
    }
    
    public long getTotalWriteCount(String str) {
        return getCount(totalStats, str, WRITE);
    }

    public Date since() {
        return since;
    }

    public Date start() {
        return start;
    }

    public void reset() {
        stat = new long[ARRAY_SIZE];
        stats.clear();
        since = new Date();
    }

    public boolean isEnabled() {
        return enabled;
    }

    public Set classNames() {
        return totalStats.keySet();
    }
    
    public Map toMap() {
        Map res = new HashMap();
        for(Entry s  : stats.entrySet()){
            res.put(s.getKey(), s.getValue());
        }
        return res;
    }
    
    /**
     * SPI implementation
     */
    public void enable() {
        enabled = true;
    }

    public void disable() {
        enabled = false;
    }

    public void newGet(Class cls, boolean hit) {
        if (!enabled) {
            return;
        }
        cls = (cls == null) ? Object.class : cls;
        String clsName = cls.getName();
        addSample(clsName, READ);
        if (hit) {
            addSample(clsName, HIT);
        }
    }

    public void newGet(Object oid, boolean hit) {
        if (!enabled) {
            return;
        }
        if (oid instanceof OpenJPAId) {
            newGet(((OpenJPAId) oid).getType(), hit);
        }
    }

    public void newPut(Class cls) {
        if (!enabled) {
            return;
        }
        cls = (cls == null) ? Object.class : cls;
        addSample(cls.getName(), WRITE);
    }

    public void newPut(Object oid) {
        if (!enabled) {
            return;
        }
        if (oid instanceof OpenJPAId) {
            newPut(((OpenJPAId) oid).getType());
        }
    }

    /**
     *  Private worker methods.
     */
    private void addSample(String c, int index) {
        stat[index]++;
        totalStat[index]++;
        addSample(stats, c, index);
        addSample(totalStats, c, index);
    }

    private void addSample(Map target, String c, int index) {
        long[] row = target.get(c);
        if (row == null) {
            row = new long[ARRAY_SIZE];
        }
        row[index]++;
        target.put(c, row);
    }

    private long getCount(Map target, String c, int index) {
        long[] row = target.get(c);
        return (row == null) ? 0 : row[index];
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy