#region License Information
/* HeuristicLab
* Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
*
* This file is part of HeuristicLab.
*
* HeuristicLab is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* HeuristicLab is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with HeuristicLab. If not, see .
*/
#endregion
using System;
using System.Collections.Generic;
using System.Text;
namespace HeuristicLab.Core {
///
/// A helper class which is used to create deep clones of object graphs.
///
public sealed class Cloner {
private class ReferenceEqualityComparer : IEqualityComparer {
bool IEqualityComparer.Equals(IDeepCloneable x, IDeepCloneable y) {
return object.ReferenceEquals(x, y);
}
int IEqualityComparer.GetHashCode(IDeepCloneable obj) {
if (obj == null) return 0;
return obj.GetHashCode();
}
}
private Dictionary mapping;
///
/// Creates a new Cloner instance.
///
public Cloner() {
mapping = new Dictionary(new ReferenceEqualityComparer());
}
///
/// Creates a deep clone of a given deeply cloneable object.
///
/// The object which should be cloned.
/// A clone of the given object.
public IDeepCloneable Clone(IDeepCloneable obj) {
if (obj == null) return null;
IDeepCloneable clone;
if (mapping.TryGetValue(obj, out clone))
return clone;
else
return obj.Clone(this);
}
///
/// Registers a new clone for a given deeply cloneable object.
///
/// The original object.
/// The clone of the original object.
public void RegisterClonedObject(IDeepCloneable item, IDeepCloneable clone) {
mapping.Add(item, clone);
}
}
}