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

jetbrains.exodus.management.Statistics Maven / Gradle / Ivy

There is a newer version: 9.8.0.76914
Show newest version
/**
 * Copyright 2010 - 2022 JetBrains s.r.o.
 *
 * 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
 *
 * https://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 jetbrains.exodus.management;

import jetbrains.exodus.core.dataStructures.hash.HashMap;
import jetbrains.exodus.core.execution.SharedTimer;
import org.jetbrains.annotations.NotNull;

import java.util.Map;

/**
 * Common/base class for metering various statistics.
 */
public class Statistics {

    @NotNull
    private final Map items;

    @NotNull
    private final StatisticsItem[] builtInItems;

    @NotNull
    private final T[] keys;

    public Statistics(@NotNull final T[] keys) {
        items = new HashMap<>();
        builtInItems = new StatisticsItem[keys.length];
        this.keys = keys;
    }

    @NotNull
    public StatisticsItem getStatisticsItem(@NotNull final T key) {
        return builtInItems[key.ordinal()];
    }

    @NotNull
    public StatisticsItem getStatisticsItem(@NotNull final String statisticsName) {
        StatisticsItem result;
        synchronized (items) {
            result = items.get(statisticsName);
        }
        if (result == null) {
            result = createNewItem(statisticsName);
            boolean wasPut = false;
            synchronized (items) {
                // TODO: replace with putIfAbsent() after moving on java 1.8
                if (!items.containsKey(statisticsName)) {
                    items.put(statisticsName, result);
                    wasPut = true;
                }
            }
            if (wasPut) {
                SharedTimer.registerPeriodicTask(result);
            }
        }
        return result;
    }

    @NotNull
    protected StatisticsItem createNewBuiltInItem(@NotNull final T key) {
        return new StatisticsItem(this);
    }

    protected void createAllStatisticsItems() {
        for (T key: keys) {
            builtInItems[key.ordinal()] = createStatisticsItem(key);
        }
    }

    @NotNull
    protected StatisticsItem createNewItem(@NotNull final String statisticsName) {
        return new StatisticsItem(this);
    }


    protected StatisticsItem createStatisticsItem(@NotNull final T key) {
        final StatisticsItem created = createNewBuiltInItem(key);
        SharedTimer.registerPeriodicTask(created);
        return created;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy