namespace StardewModdingAPI.Framework.Reflection
{
/// Provides an interface for proxied types to create other proxied types.
public sealed class InterfaceProxyGlue
{
private readonly InterfaceProxyFactory Factory;
internal InterfaceProxyGlue(InterfaceProxyFactory factory)
{
this.Factory = factory;
}
/// Get an existing or create a new proxied instance by its type name.
/// The full name of the proxy type.
/// The target instance to proxy.
public object ObtainInstanceForProxyTypeName(string proxyTypeName, object toProxy)
{
var builder = this.Factory.GetBuilderByProxyTypeName(proxyTypeName);
return builder.ObtainInstance(toProxy, this.Factory);
}
/// Try to unproxy, or get an existing, or create a new proxied instance by its type name.
/// The full name of the proxy type.
/// The full name of the reverse proxy type.
/// The target instance to proxy.
public object UnproxyOrObtainInstanceForProxyTypeName(string proxyTypeName, string unproxyTypeName, object toProxy)
{
var unproxyBuilder = this.Factory.GetBuilderByProxyTypeName(unproxyTypeName);
if (unproxyBuilder.TryUnproxy(toProxy, out object targetInstance))
return targetInstance;
return this.ObtainInstanceForProxyTypeName(proxyTypeName, toProxy);
}
}
}