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

org.spongepowered.api.util.metric.MetricsConfigManager Maven / Gradle / Ivy

The newest version!
/*
 * This file is part of SpongeAPI, licensed under the MIT License (MIT).
 *
 * Copyright (c) SpongePowered 
 * Copyright (c) contributors
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
package org.spongepowered.api.util.metric;

import com.google.inject.Inject;
import org.spongepowered.api.util.Tristate;
import org.spongepowered.plugin.PluginContainer;

/**
 * Provides information about whether a server has granted permission for
 * server metric data to be transmitted on a per plugin basis.
 *
 * 

This manager may be {@link Inject injected} into plugin classes.

*/ public interface MetricsConfigManager { /** * Gets the current global state of collection. The collection state determines * how data collection should be handled. * *

Global state determines how an undefined state for a specific plugin should be * handled. If a plugin has a state specified then it will override the global state.

* * * * * * * * * * * * * * * * * * * * * * * *
Data Collection States
StateData Collection PermittedComment
{@link Tristate#TRUE TRUE}AllowedServer administrator enabled metrics globally.
{@link Tristate#FALSE FALSE}Disallowed (explicitly)Server administrator disabled metrics globally.
{@link Tristate#UNDEFINED UNDEFINED} (default)Disallowed (implicitly)The server administrator has made no specific global choice on allowing * plugins to perform data collection, and defaults to disallowed.
* *

The value returned from this should not be stored. As the * configuration/permission can be updated at any time, it is best to check this each * time server metric collection is due to occur.

* * @return The global state of collection */ Tristate globalCollectionState(); /** * Gets the current state of collection for the specified plugin. The collection state * determines how data collection should be handled. * *

The plugin collection state acts as an override of the * {@link #globalCollectionState() global state}, taking precedence when establishing * whether a plugin is allowed to perform data collection.

* * * * * * * * * * * * * * * * * * * * * * * *
Data Collection States
StateData Collection PermittedComment
{@link Tristate#TRUE TRUE}AllowedServer administrator enabled metrics for the plugin specifically.
{@link Tristate#FALSE FALSE}DisallowedServer administrator disabled metrics for the plugin specifically.
{@link Tristate#UNDEFINED UNDEFINED} (default)Refer to the {@link #globalCollectionState() global state}The server administrator has made no specific choice for this plugin, and * the {@link #globalCollectionState() global state} should be used.
* *

The value returned from this should not be stored. As the * configuration/permission can be updated at any time, it is best to check this each * time server metric collection is due to occur.

* *

Plugin authors may wish to seek permission to perform data collection, noting that * a {@link Tristate#FALSE false} state is explicitly set by the server administrator, * plugins should only seek permission when both the plugin and global states are * {@link Tristate#UNDEFINED undefined}.

* * @param container The {@link PluginContainer} * @return The current collection state */ Tristate collectionState(final PluginContainer container); /** * Gets the current effective state of collection for the specified plugin. The * collection state determines how data collection should be handled. * *

The effective collection state for a plugin falls back to the * {@link #globalCollectionState() global collection state} if the server administrator * has not made an explicit decision for the plugin.

* * * * * * * * * * * * * * * * * * * * * * * *
Data Collection States
StateData Collection PermittedComment
{@link Tristate#TRUE TRUE}AllowedServer administrator enabled metrics either globally (if the plugin was undefined) * or for the plugin.
{@link Tristate#FALSE FALSE}Disallowed (explicitly)Server administrator disabled metrics either globally (if the plugin was undefined) * or for the plugin.
{@link Tristate#UNDEFINED UNDEFINED} (default)Disallowed (implicitly)The server administrator has made no specific choice either globally or for the * plugin.
* *

The value returned from this should not be stored. As the * configuration/permission can be updated at any time, it is best to check this each * time server metric collection is due to occur.

* *

Plugin authors may wish to seek permission to perform data collection, noting that * a {@link Tristate#FALSE false} state is explicitly set by the server administrator, * we ask that permission is only sought if a {@link Tristate#UNDEFINED undefined} state * is present. In doing this, server administrators are not asked for consent for something * that have explicitly denied.

* * @param container The {@link PluginContainer} * @return The current collection state */ default Tristate effectiveCollectionState(final PluginContainer container) { final Tristate pluginState = this.collectionState(container); if (pluginState == Tristate.UNDEFINED) { return this.globalCollectionState(); } return pluginState; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy