xenadmin/XenCenterLib/ToStringWrapper.cs
Konstantina Chremmou d7b519a53c Updated copyright notice on files.
Signed-off-by: Konstantina Chremmou <Konstantina.Chremmou@cloud.com>
2023-01-30 16:24:16 +00:00

134 lines
5.2 KiB
C#

/* Copyright (c) Cloud Software Group, Inc.
*
* Redistribution and use in source and binary forms,
* with or without modification, are permitted provided
* that the following conditions are met:
*
* * Redistributions of source code must retain the above
* copyright notice, this list of conditions and the
* following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the
* following disclaimer in the documentation and/or other
* materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
using System;
namespace XenCenterLib
{
/// <summary>
/// The delegate for the method that returns ToString() for the wrapped item.
/// </summary>
public delegate Object ToStringDelegate<T>(T t);
/// <summary>
/// A utility class for use with ListBox and other controls that take items of type Object and display
/// them using their ToString() methods. By wrapping it in an instance of this class, a custom
/// ToString() representation can be provided while allowing easy access to the original object.
/// </summary>
/// <typeparam name="T">The type of the wrapped object.</typeparam>
public class ToStringWrapper<T> : IComparable<ToStringWrapper<T>>, IEquatable<ToStringWrapper<T>> where T : IEquatable<T>
{
#region For use with controls like DataGridViewComboBoxCell
public const string ValueMember = "Self";
public const string DisplayMember = "ToStringProperty";
/// <summary>
/// Gets the string returned by ToString()
/// (Property wrapper for ToString(); this property's name can be used to set
/// the DisplayMember property of controls like DataGridViewComboBoxCell)
/// </summary>
public string ToStringProperty { get { return ToString(); } }
/// <summary>
/// Returns this ToStringWrapper instance (can be used to set
/// the ValueMember property of controls like DataGridViewComboBoxCell)
/// </summary>
public ToStringWrapper<T> Self { get { return this; } }
#endregion
/// <summary>
/// The wrapped object.
/// </summary>
public readonly T item;
/// <summary>
/// The string returned by ToString() on this ToStringWrapper instance.
/// </summary>
private readonly string toString;
/// <summary>
/// The delegate ran to provide ToString() on this ToStringWrapper instance.
/// </summary>
private readonly ToStringDelegate<T> toStringDelegate;
/// <summary>
/// Takes and subsequently returns a fixed ToString() value.
/// </summary>
/// <param name="item">The item to wrap.</param>
/// <param name="toString">The ToString() string that is returned by the new wrapper.</param>
public ToStringWrapper(T item, string toString) {
this.item = item;
this.toString = toString;
}
/// <summary>
/// Takes a ToStringDelegate, run each time ToString() is called.
/// </summary>
/// <param name="item">The item to wrap.</param>
/// <param name="toStringDelegate">A method that should return the desired ToString()
/// value for the wrapped object. Calls to this ToStringWrapper's ToString() method
/// evaluate the supplied delegate method and return its value.</param>
public ToStringWrapper(T item, ToStringDelegate<T> toStringDelegate)
{
this.item = item;
this.toStringDelegate = toStringDelegate;
}
public override string ToString()
{
System.Diagnostics.Trace.Assert(toString == null ^ toStringDelegate == null);
if (toStringDelegate != null) {
return toStringDelegate(item).ToString();
} else {
return toString;
}
}
public bool Equals(ToStringWrapper<T> other)
{
return other != null && item.Equals(other.item);
}
public int CompareTo(ToStringWrapper<T> other)
{
if (item is IComparable<T>)
{
return (item as IComparable<T>).CompareTo(other.item);
}
else
{
return StringUtility.NaturalCompare(ToString(), other.ToString());
}
}
}
}