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

org.spongepowered.api.data.DataManager Maven / Gradle / Ivy

There is a newer version: 9.0.0
Show 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.data;

import org.spongepowered.api.ResourceKey;
import org.spongepowered.api.data.persistence.DataBuilder;
import org.spongepowered.api.data.persistence.DataContainer;
import org.spongepowered.api.data.persistence.DataContentUpdater;
import org.spongepowered.api.data.persistence.DataSerializable;
import org.spongepowered.api.data.persistence.DataTranslator;
import org.spongepowered.api.data.persistence.DataView;

import java.util.Optional;

/**
 * A manager of the overall Data API. This handles the registration of
 * {@link DataSerializable}s and their {@link DataBuilder}s,
 * {@link DataRegistration}s, etc.
 *
 * 

Note that this manager powers not just serialization and deserialization, * but also powers a majority of the Data API.

*/ public interface DataManager { /** * Registers a {@link DataBuilder} that will dynamically build * the given {@link DataSerializable} from a {@link DataContainer}. * *

Builders may not always exist for a given {@link DataSerializable}, * nor is it guaranteed that a provided builder will function with all * {@link DataContainer}s. *

* * @param clazz The class of the {@link DataSerializable} * @param builder The builder that can build the data serializable * @param The type of data serializable */ void registerBuilder(Class clazz, DataBuilder builder); /** * Registers a {@link DataContentUpdater} for the desired * {@link DataSerializable} such that any versioned data may be updated to * newer versions for the most up to date {@link DataBuilder}. * * @param clazz The data serializable class * @param updater The updater * @param The type of DataSerializable */ void registerContentUpdater(Class clazz, DataContentUpdater updater); /** * Gets a wrapped fake {@link DataContentUpdater} that may wrap several * {@link DataContentUpdater}s to translate versioned data from the desired * {@code fromVersion} to the {@code toVersion}. If the version jump is too * great or a {@link DataContentUpdater} has not been registered to cover * the complete jump, {@link Optional#empty()} may be returned. * * @param clazz The data serializable class * @param fromVersion The version converting from * @param toVersion The version converting to * @param The type of data serializable * @return The content updater, if available */ Optional wrappedContentUpdater(Class clazz, int fromVersion, int toVersion); /** * Attempts to retrieve the {@link DataBuilder} for the desired * {@link DataSerializable} class. * *

Builders may not always exist for a given {@link DataSerializable}, * nor is it guaranteed that a provided builder will function with all * {@link DataContainer}s.

* * @param clazz The class of the data serializable * @param The type of data serializable * @return The builder, if available */ Optional> builder(Class clazz); /** * Attempts to translate an instance of the {@link DataSerializable} from * the provided {@link DataView}. If there is no {@link DataBuilder} * registered for the provided {@link DataSerializable}, then * {@link Optional#empty()} may be returned. * * @param clazz The class of the data serializable * @param dataView The data view containing raw data * @param The type of data serializable * @return The data serializable, if available */ Optional deserialize(Class clazz, DataView dataView); /** * Registers the given {@link org.spongepowered.api.data.DataHolder.Immutable} class with it's * associated {@link org.spongepowered.api.data.DataHolderBuilder.Immutable}. The builder can be used to * create new instances of the given {@link org.spongepowered.api.data.DataHolder.Immutable} for data * retrieval, data representation, etc. * * @param holderClass The class of the immutable data holder * @param builder The builder instance of the immutable data holder * @param The type of immutable data holder * @param The type of immutable data builder */ , B extends DataHolderBuilder.Immutable> void register(Class holderClass, B builder); /** * Registers a legacy {@code id} that is used by a previous version of * {@link DataRegistration} from a plugin such that the custom data can * be read by a plugin-data datastore. * * @param legacyId The legacy id * @param dataStoreKey The dataStore key set in {@link org.spongepowered.api.data.persistence.DataStore.Builder.HolderStep#pluginData(ResourceKey)} */ void registerLegacyManipulatorIds(String legacyId, ResourceKey dataStoreKey); /** * Attempts to retrieve the builder for the given * {@link org.spongepowered.api.data.DataHolder.Immutable}. * *

If the {@link org.spongepowered.api.data.DataHolder.Immutable} was not registered, multiple * systems could fail to retrieve specific data.

* * @param holderClass The immutable data holder class * @param The type of immutable data holder * @param The type of immutable data builder * @return The builder, if available */ , B extends DataHolderBuilder.Immutable> Optional immutableBuilder(Class holderClass); /** * Gets the desired {@link DataTranslator} for the provided class. * * @param objectClass The class of the object * @param The type of object * @return The data translator, if available */ Optional> translator(Class objectClass); /** * Creates a new {@link DataContainer} with a default * {@link org.spongepowered.api.data.persistence.DataView.SafetyMode} of * {@link org.spongepowered.api.data.persistence.DataView.SafetyMode#ALL_DATA_CLONED}. * * @return A new data container */ DataContainer createContainer(); /** * Creates a new {@link DataContainer} with the provided * {@link org.spongepowered.api.data.persistence.DataView.SafetyMode}. * * @param safety The safety mode to use * @see org.spongepowered.api.data.persistence.DataView.SafetyMode * @return A new data container with the provided safety mode */ DataContainer createContainer(DataView.SafetyMode safety); }