KeywordDependentCollection.cs 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. namespace Data.Util
  4. {
  5. public static class KeywordDependentCollection
  6. {
  7. public enum KeywordPermutationInstanceType
  8. {
  9. Base,
  10. Permutation,
  11. }
  12. public interface ISet<IInstance>
  13. {
  14. int instanceCount { get; }
  15. IEnumerable<IInstance> instances { get; }
  16. }
  17. public interface IInstance
  18. {
  19. KeywordPermutationInstanceType type { get; }
  20. int permutationIndex { get; }
  21. }
  22. }
  23. public abstract class KeywordDependentCollection<TStorage, TAll, TAllPermutations, TForPermutation, TBase, TIInstance, TISet>
  24. where TAll: TISet
  25. where TAllPermutations: TISet
  26. where TForPermutation: TISet, TIInstance
  27. where TBase: TISet, TIInstance
  28. where TISet: KeywordDependentCollection.ISet<TIInstance>
  29. where TIInstance: KeywordDependentCollection.IInstance
  30. where TStorage: new()
  31. {
  32. TStorage m_Base = new TStorage();
  33. List<TStorage> m_PerPermutationIndex = new List<TStorage>();
  34. public int permutationCount => m_PerPermutationIndex.Count;
  35. public TForPermutation this[int index]
  36. {
  37. get
  38. {
  39. GetOrCreateForPermutationIndex(index);
  40. return CreateForPermutationSmartPointer(index);
  41. }
  42. }
  43. public TAll all => CreateAllSmartPointer();
  44. public TAllPermutations allPermutations => CreateAllPermutationsSmartPointer();
  45. /// <summary>
  46. /// All permutation will inherit from base's active fields
  47. /// </summary>
  48. public TBase baseInstance => CreateBaseSmartPointer();
  49. protected TStorage baseStorage
  50. {
  51. get => m_Base;
  52. set => m_Base = value;
  53. }
  54. protected IEnumerable<TStorage> permutationStorages => m_PerPermutationIndex;
  55. protected TStorage GetOrCreateForPermutationIndex(int index)
  56. {
  57. while(index >= m_PerPermutationIndex.Count)
  58. m_PerPermutationIndex.Add(new TStorage());
  59. return m_PerPermutationIndex[index];
  60. }
  61. protected void SetForPermutationIndex(int index, TStorage value)
  62. {
  63. while(index >= m_PerPermutationIndex.Count)
  64. m_PerPermutationIndex.Add(new TStorage());
  65. m_PerPermutationIndex[index] = value;
  66. }
  67. protected abstract TAll CreateAllSmartPointer();
  68. protected abstract TAllPermutations CreateAllPermutationsSmartPointer();
  69. protected abstract TForPermutation CreateForPermutationSmartPointer(int index);
  70. protected abstract TBase CreateBaseSmartPointer();
  71. }
  72. }