Advertisement
VssA

DDD.ValueType

Apr 15th, 2024
921
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.38 KB | None | 0 0
  1. using Ddd.Taxi.Domain;
  2. using System.Reflection;
  3. using System.Text;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6.  
  7. namespace Ddd.Infrastructure
  8. {
  9.     public class ValueType<T>
  10.     {
  11.         private readonly List<PropertyInfo> propertyInfos;
  12.  
  13.         public ValueType()
  14.         {
  15.             propertyInfos = GetType()
  16.                 .GetProperties(BindingFlags.Instance | BindingFlags.Public)
  17.                 .OrderBy(property => property.Name)
  18.                 .ToList();
  19.         }
  20.  
  21.         public override int GetHashCode()
  22.         {
  23.             unchecked
  24.             {
  25.                 int hash = 0;
  26.                 foreach (var property in propertyInfos)
  27.                 {
  28.                     var propertyValue = property.GetValue(this, null);
  29.                     var propertyHash = propertyValue != null ? propertyValue.GetHashCode() : 0;
  30.                     hash = (hash * 1244324135) ^ propertyHash;
  31.                 }
  32.                 return hash;
  33.             }
  34.         }
  35.  
  36.         public override bool Equals(object obj)
  37.         {
  38.             if (obj is null)
  39.                 return false;
  40.  
  41.             if (obj is not ValueType<T> otherValue)
  42.                 return false;
  43.  
  44.                
  45.  
  46.             foreach (var property in propertyInfos)
  47.             {
  48.                 if (property.GetValue(this) == null && property.GetValue(otherValue) == null)
  49.                     continue;
  50.  
  51.                 if (!(property.GetValue(this) == null || property.GetValue(otherValue) == null || !property.GetValue(this)
  52.                                                                                                         .Equals(property.GetValue(otherValue))))
  53.                     continue;
  54.                 return false;
  55.             }
  56.             return true;
  57.         }
  58.  
  59.         public bool Equals(PersonName name) => Equals((object)name);
  60.  
  61.         public override string ToString()
  62.         {
  63.             var result = new StringBuilder(GetType().Name + "(");
  64.             for (int index = 0; index < propertyInfos.Count; index++)
  65.             {
  66.                 var property = propertyInfos[index];
  67.                 var propertyValue = property.GetValue(this, null);
  68.                 result.AppendFormat("{0}: {1}{2}", property.Name, propertyValue, index != propertyInfos.Count - 1 ? "; " : ")");
  69.             }
  70.             return result.ToString();
  71.         }
  72.     }
  73. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement