123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- using System;
- using System.Collections.Generic;
- using System.Globalization;
- using System.Reflection;
- using UnityEngine;
- namespace UnityEditor.Graphing
- {
- static class SerializationHelper
- {
- [Serializable]
- public struct TypeSerializationInfo
- {
- [SerializeField]
- public string fullName;
- public bool IsValid()
- {
- return !string.IsNullOrEmpty(fullName);
- }
- }
- [Serializable]
- public struct JSONSerializedElement
- {
- [SerializeField]
- public TypeSerializationInfo typeInfo;
- [SerializeField]
- public string JSONnodeData;
- }
- public static JSONSerializedElement nullElement
- {
- get
- {
- return new JSONSerializedElement();
- }
- }
- public static TypeSerializationInfo GetTypeSerializableAsString(Type type)
- {
- return new TypeSerializationInfo
- {
- fullName = type.FullName
- };
- }
- static Type GetTypeFromSerializedString(TypeSerializationInfo typeInfo)
- {
- if (!typeInfo.IsValid())
- return null;
- var assemblies = AppDomain.CurrentDomain.GetAssemblies();
- foreach (var assembly in assemblies)
- {
- var type = assembly.GetType(typeInfo.fullName);
- if (type != null)
- return type;
- }
- return null;
- }
- public static JSONSerializedElement Serialize<T>(T item)
- {
- if (item == null)
- throw new ArgumentNullException("item", "Can not serialize null element");
- var typeInfo = GetTypeSerializableAsString(item.GetType());
- var data = JsonUtility.ToJson(item, true);
- if (string.IsNullOrEmpty(data))
- throw new ArgumentException(string.Format("Can not serialize {0}", item));
- ;
- return new JSONSerializedElement
- {
- typeInfo = typeInfo,
- JSONnodeData = data
- };
- }
- static TypeSerializationInfo DoTypeRemap(TypeSerializationInfo info, Dictionary<TypeSerializationInfo, TypeSerializationInfo> remapper)
- {
- TypeSerializationInfo foundInfo;
- if (remapper.TryGetValue(info, out foundInfo))
- return foundInfo;
- return info;
- }
- public static T Deserialize<T>(JSONSerializedElement item, Dictionary<TypeSerializationInfo, TypeSerializationInfo> remapper, params object[] constructorArgs) where T : class
- {
- if (!item.typeInfo.IsValid() || string.IsNullOrEmpty(item.JSONnodeData))
- throw new ArgumentException(string.Format("Can not deserialize {0}, it is invalid", item));
- TypeSerializationInfo info = item.typeInfo;
- info.fullName = info.fullName.Replace("UnityEngine.MaterialGraph", "UnityEditor.ShaderGraph");
- info.fullName = info.fullName.Replace("UnityEngine.Graphing", "UnityEditor.Graphing");
- if (remapper != null)
- info = DoTypeRemap(info, remapper);
- var type = GetTypeFromSerializedString(info);
- if (type == null)
- throw new ArgumentException(string.Format("Can not deserialize ({0}), type is invalid", info.fullName));
- T instance;
- try
- {
- var culture = CultureInfo.CurrentCulture;
- var flags = BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance;
- instance = Activator.CreateInstance(type, flags, null, constructorArgs, culture) as T;
- }
- catch (Exception e)
- {
- throw new Exception(string.Format("Could not construct instance of: {0}", type), e);
- }
- if (instance != null)
- {
- JsonUtility.FromJsonOverwrite(item.JSONnodeData, instance);
- return instance;
- }
- return null;
- }
- public static List<JSONSerializedElement> Serialize<T>(IEnumerable<T> list)
- {
- var result = new List<JSONSerializedElement>();
- if (list == null)
- return result;
- foreach (var element in list)
- {
- try
- {
- result.Add(Serialize(element));
- }
- catch (Exception e)
- {
- Debug.LogException(e);
- }
- }
- return result;
- }
- public static List<T> Deserialize<T>(IEnumerable<JSONSerializedElement> list, Dictionary<TypeSerializationInfo, TypeSerializationInfo> remapper, params object[] constructorArgs) where T : class
- {
- var result = new List<T>();
- if (list == null)
- return result;
- foreach (var element in list)
- {
- try
- {
- result.Add(Deserialize<T>(element, remapper));
- }
- catch (Exception e)
- {
- Debug.LogException(e);
- Debug.LogError(element.JSONnodeData);
- }
- }
- return result;
- }
- }
- }
|