/*
* Copyright 2022 Peter Han
* 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.
*/
using System.Collections.Generic;
namespace PeterHan.PLib.Core {
///
/// An interface used for both local and remote PLib registry instances.
///
public interface IPLibRegistry {
///
/// Data shared between mods in key value pairs.
///
IDictionary ModData { get; }
///
/// Adds a candidate version of a forwarded component.
///
/// The instance of the component to add.
void AddCandidateVersion(PForwardedComponent instance);
///
/// Gets the latest version of a forwarded component of PLib (or another mod).
///
/// The component ID to look up.
/// The latest version of that component, or a forwarded proxy of the
/// component if functionality is provided by another mod.
PForwardedComponent GetLatestVersion(string id);
///
/// Gets the shared data for a particular component.
///
/// The component ID that holds the data.
/// The shared data for components with that ID, or null if no component by
/// that name was found, or if the data is unset.
object GetSharedData(string id);
///
/// Gets all registered forwarded components for the given ID.
///
/// The component ID to look up.
/// All registered components with that ID, with forwarded proxies for any
/// whose functionality is provided by another mod.
IEnumerable GetAllComponents(string id);
///
/// Sets the shared data for a particular component.
///
/// The component ID that holds the data.
/// The new shared data value.
void SetSharedData(string id, object data);
}
}