You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.2 KiB
48 lines
1.2 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Shared
|
|
{
|
|
public class Mapper<T,U> where T : class
|
|
where U : class
|
|
{
|
|
readonly HashSet<Tuple<T, U>> mapper = new HashSet<Tuple<T, U>>();
|
|
|
|
public bool AddMapping(T t, U u)
|
|
{
|
|
var mapping = new Tuple<T, U>(t, u);
|
|
if (mapper.Contains(mapping)) return false;
|
|
mapper.Add(mapping);
|
|
return true;
|
|
}
|
|
|
|
public T? GetT(U u)
|
|
{
|
|
var result = mapper.Where(tuple => ReferenceEquals(tuple.Item2, u));
|
|
if (result.Count() != 1)
|
|
{
|
|
return null;
|
|
}
|
|
return result.First().Item1;
|
|
}
|
|
|
|
public U? GetU(T t)
|
|
{
|
|
var result = mapper.Where(tuple => ReferenceEquals(tuple.Item1, t));
|
|
if (result.Count() != 1)
|
|
{
|
|
return null;
|
|
}
|
|
return result.First().Item2;
|
|
}
|
|
|
|
public void Reset()
|
|
{
|
|
mapper.Clear();
|
|
}
|
|
}
|
|
}
|