82 lines
2.2 KiB
C#
82 lines
2.2 KiB
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using LeanCloud.Utilities;
|
|
|
|
namespace LeanCloud.Storage.Internal {
|
|
/// <summary>
|
|
/// Provides a List implementation that can delegate to any other
|
|
/// list, regardless of its value type. Used for coercion of
|
|
/// lists when returning them to users.
|
|
/// </summary>
|
|
/// <typeparam name="TOut">The resulting type of value in the list.</typeparam>
|
|
/// <typeparam name="TIn">The original type of value in the list.</typeparam>
|
|
[Preserve(AllMembers = true, Conditional = false)]
|
|
public class FlexibleListWrapper<TOut, TIn> : IList<TOut> {
|
|
private IList<TIn> toWrap;
|
|
public FlexibleListWrapper(IList<TIn> toWrap) {
|
|
this.toWrap = toWrap;
|
|
}
|
|
|
|
public int IndexOf(TOut item) {
|
|
return toWrap.IndexOf((TIn)Conversion.ConvertTo<TIn>(item));
|
|
}
|
|
|
|
public void Insert(int index, TOut item) {
|
|
toWrap.Insert(index, (TIn)Conversion.ConvertTo<TIn>(item));
|
|
}
|
|
|
|
public void RemoveAt(int index) {
|
|
toWrap.RemoveAt(index);
|
|
}
|
|
|
|
public TOut this[int index] {
|
|
get {
|
|
return (TOut)Conversion.ConvertTo<TOut>(toWrap[index]);
|
|
}
|
|
set {
|
|
toWrap[index] = (TIn)Conversion.ConvertTo<TIn>(value);
|
|
}
|
|
}
|
|
|
|
public void Add(TOut item) {
|
|
toWrap.Add((TIn)Conversion.ConvertTo<TIn>(item));
|
|
}
|
|
|
|
public void Clear() {
|
|
toWrap.Clear();
|
|
}
|
|
|
|
public bool Contains(TOut item) {
|
|
return toWrap.Contains((TIn)Conversion.ConvertTo<TIn>(item));
|
|
}
|
|
|
|
public void CopyTo(TOut[] array, int arrayIndex) {
|
|
toWrap.Select(item => (TOut)Conversion.ConvertTo<TOut>(item))
|
|
.ToList().CopyTo(array, arrayIndex);
|
|
}
|
|
|
|
public int Count {
|
|
get { return toWrap.Count; }
|
|
}
|
|
|
|
public bool IsReadOnly {
|
|
get { return toWrap.IsReadOnly; }
|
|
}
|
|
|
|
public bool Remove(TOut item) {
|
|
return toWrap.Remove((TIn)Conversion.ConvertTo<TIn>(item));
|
|
}
|
|
|
|
public IEnumerator<TOut> GetEnumerator() {
|
|
foreach (var item in (IEnumerable)toWrap) {
|
|
yield return (TOut)Conversion.ConvertTo<TOut>(item);
|
|
}
|
|
}
|
|
|
|
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() {
|
|
return this.GetEnumerator();
|
|
}
|
|
}
|
|
}
|