SerializationHelper.cs 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Globalization;
  4. using System.Reflection;
  5. using UnityEngine;
  6. namespace UnityEditor.Graphing
  7. {
  8. static class SerializationHelper
  9. {
  10. [Serializable]
  11. public struct TypeSerializationInfo
  12. {
  13. [SerializeField]
  14. public string fullName;
  15. public bool IsValid()
  16. {
  17. return !string.IsNullOrEmpty(fullName);
  18. }
  19. }
  20. [Serializable]
  21. public struct JSONSerializedElement
  22. {
  23. [SerializeField]
  24. public TypeSerializationInfo typeInfo;
  25. [SerializeField]
  26. public string JSONnodeData;
  27. }
  28. public static JSONSerializedElement nullElement
  29. {
  30. get
  31. {
  32. return new JSONSerializedElement();
  33. }
  34. }
  35. public static TypeSerializationInfo GetTypeSerializableAsString(Type type)
  36. {
  37. return new TypeSerializationInfo
  38. {
  39. fullName = type.FullName
  40. };
  41. }
  42. static Type GetTypeFromSerializedString(TypeSerializationInfo typeInfo)
  43. {
  44. if (!typeInfo.IsValid())
  45. return null;
  46. var assemblies = AppDomain.CurrentDomain.GetAssemblies();
  47. foreach (var assembly in assemblies)
  48. {
  49. var type = assembly.GetType(typeInfo.fullName);
  50. if (type != null)
  51. return type;
  52. }
  53. return null;
  54. }
  55. public static JSONSerializedElement Serialize<T>(T item)
  56. {
  57. if (item == null)
  58. throw new ArgumentNullException("item", "Can not serialize null element");
  59. var typeInfo = GetTypeSerializableAsString(item.GetType());
  60. var data = JsonUtility.ToJson(item, true);
  61. if (string.IsNullOrEmpty(data))
  62. throw new ArgumentException(string.Format("Can not serialize {0}", item));
  63. ;
  64. return new JSONSerializedElement
  65. {
  66. typeInfo = typeInfo,
  67. JSONnodeData = data
  68. };
  69. }
  70. static TypeSerializationInfo DoTypeRemap(TypeSerializationInfo info, Dictionary<TypeSerializationInfo, TypeSerializationInfo> remapper)
  71. {
  72. TypeSerializationInfo foundInfo;
  73. if (remapper.TryGetValue(info, out foundInfo))
  74. return foundInfo;
  75. return info;
  76. }
  77. public static T Deserialize<T>(JSONSerializedElement item, Dictionary<TypeSerializationInfo, TypeSerializationInfo> remapper, params object[] constructorArgs) where T : class
  78. {
  79. if (!item.typeInfo.IsValid() || string.IsNullOrEmpty(item.JSONnodeData))
  80. throw new ArgumentException(string.Format("Can not deserialize {0}, it is invalid", item));
  81. TypeSerializationInfo info = item.typeInfo;
  82. info.fullName = info.fullName.Replace("UnityEngine.MaterialGraph", "UnityEditor.ShaderGraph");
  83. info.fullName = info.fullName.Replace("UnityEngine.Graphing", "UnityEditor.Graphing");
  84. if (remapper != null)
  85. info = DoTypeRemap(info, remapper);
  86. var type = GetTypeFromSerializedString(info);
  87. if (type == null)
  88. throw new ArgumentException(string.Format("Can not deserialize ({0}), type is invalid", info.fullName));
  89. T instance;
  90. try
  91. {
  92. var culture = CultureInfo.CurrentCulture;
  93. var flags = BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance;
  94. instance = Activator.CreateInstance(type, flags, null, constructorArgs, culture) as T;
  95. }
  96. catch (Exception e)
  97. {
  98. throw new Exception(string.Format("Could not construct instance of: {0}", type), e);
  99. }
  100. if (instance != null)
  101. {
  102. JsonUtility.FromJsonOverwrite(item.JSONnodeData, instance);
  103. return instance;
  104. }
  105. return null;
  106. }
  107. public static List<JSONSerializedElement> Serialize<T>(IEnumerable<T> list)
  108. {
  109. var result = new List<JSONSerializedElement>();
  110. if (list == null)
  111. return result;
  112. foreach (var element in list)
  113. {
  114. try
  115. {
  116. result.Add(Serialize(element));
  117. }
  118. catch (Exception e)
  119. {
  120. Debug.LogException(e);
  121. }
  122. }
  123. return result;
  124. }
  125. public static List<T> Deserialize<T>(IEnumerable<JSONSerializedElement> list, Dictionary<TypeSerializationInfo, TypeSerializationInfo> remapper, params object[] constructorArgs) where T : class
  126. {
  127. var result = new List<T>();
  128. if (list == null)
  129. return result;
  130. foreach (var element in list)
  131. {
  132. try
  133. {
  134. result.Add(Deserialize<T>(element, remapper));
  135. }
  136. catch (Exception e)
  137. {
  138. Debug.LogException(e);
  139. Debug.LogError(element.JSONnodeData);
  140. }
  141. }
  142. return result;
  143. }
  144. }
  145. }