88 lines
2.9 KiB
C#
88 lines
2.9 KiB
C#
// Copyright (c) CypherCore <http://github.com/CypherCore> All rights reserved.
|
|
// Licensed under the GNU GENERAL PUBLIC LICENSE. See LICENSE file in the project root for full license information.
|
|
|
|
using Framework.Collections;
|
|
|
|
namespace Framework.Dynamic
|
|
{
|
|
public class Reference<TO, FROM> : LinkedListElement where TO : class where FROM : class
|
|
{
|
|
TO _RefTo;
|
|
FROM _RefFrom;
|
|
|
|
// Tell our refTo (target) object that we have a link
|
|
public virtual void TargetObjectBuildLink() { }
|
|
|
|
// Tell our refTo (taget) object, that the link is cut
|
|
public virtual void TargetObjectDestroyLink() { }
|
|
|
|
// Tell our refFrom (source) object, that the link is cut (Target destroyed)
|
|
public virtual void SourceObjectDestroyLink() { }
|
|
|
|
public Reference()
|
|
{
|
|
_RefTo = null; _RefFrom = null;
|
|
}
|
|
|
|
// Create new link
|
|
public void Link(TO toObj, FROM fromObj)
|
|
{
|
|
Cypher.Assert(fromObj != null); // fromObj MUST not be NULL
|
|
if (IsValid())
|
|
Unlink();
|
|
if (toObj != null)
|
|
{
|
|
_RefTo = toObj;
|
|
_RefFrom = fromObj;
|
|
TargetObjectBuildLink();
|
|
}
|
|
}
|
|
|
|
// We don't need the reference anymore. Call comes from the refFrom object
|
|
// Tell our refTo object, that the link is cut
|
|
public void Unlink()
|
|
{
|
|
TargetObjectDestroyLink();
|
|
Delink();
|
|
_RefTo = null;
|
|
_RefFrom = null;
|
|
}
|
|
|
|
// Link is invalid due to destruction of referenced target object. Call comes from the refTo object
|
|
// Tell our refFrom object, that the link is cut
|
|
public void Invalidate() // the iRefFrom MUST remain!!
|
|
{
|
|
SourceObjectDestroyLink();
|
|
Delink();
|
|
_RefTo = null;
|
|
}
|
|
|
|
public bool IsValid() // Only check the iRefTo
|
|
{
|
|
return _RefTo != null;
|
|
}
|
|
|
|
public Reference<TO, FROM> Next() { return ((Reference<TO, FROM>)GetNextElement()); }
|
|
public Reference<TO, FROM> Prev() { return ((Reference<TO, FROM>)GetPrevElement()); }
|
|
|
|
public TO GetTarget() { return _RefTo; }
|
|
|
|
public FROM GetSource() { return _RefFrom; }
|
|
}
|
|
|
|
public class RefManager<TO, FROM> : LinkedListHead where TO : class where FROM : class
|
|
{
|
|
~RefManager() { ClearReferences(); }
|
|
|
|
public Reference<TO, FROM> GetFirst() { return (Reference<TO, FROM>)base.GetFirstElement(); }
|
|
public Reference<TO, FROM> GetLast() { return (Reference<TO, FROM>)base.GetLastElement(); }
|
|
|
|
public void ClearReferences()
|
|
{
|
|
Reference<TO, FROM> refe;
|
|
while ((refe = GetFirst()) != null)
|
|
refe.Invalidate();
|
|
}
|
|
}
|
|
}
|