Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2924_DotNetCoreMigration/HeuristicLab.Persistence/3.3/Default/CompositeSerializers/TypeSerializer.cs @ 16965

Last change on this file since 16965 was 16965, checked in by dpiringe, 5 years ago

#2924: changed project HeuristicLab.Persistence to be .net core compatible

File size: 3.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System;
23using System.Collections.Generic;
24using HeuristicLab.Persistence.Auxiliary;
25using HeuristicLab.Persistence.Core;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27using HeuristicLab.Persistence.Interfaces;
28
29namespace HeuristicLab.Persistence.Default.CompositeSerializers {
30
31  [StorableClass]
32  internal sealed class TypeSerializer : ICompositeSerializer {
33
34    [StorableConstructor]
35    private TypeSerializer(bool deserializing) { }
36    public TypeSerializer() { }
37
38    public int Priority {
39      get { return 100; }
40    }
41
42    public bool CanSerialize(Type type) {
43      #region Mono Compatibility
44      return type == typeof(Type) ||
45        type.VersionInvariantName() == "System.RuntimeType, mscorlib" ||
46        type.VersionInvariantName() == "System.RuntimeType, System.Private.CoreLib" ||
47        type.VersionInvariantName() == "System.MonoType, mscorlib";
48      #endregion
49    }
50
51    public string JustifyRejection(Type type) {
52      #region Mono Compatibility
53      return "not System.Type, System.RuntimeType, System.MonoType";
54      #endregion
55    }
56
57    public IEnumerable<Tag> CreateMetaInfo(object o) {
58      yield return new Tag("AssemblyQualifiedName", ((Type)o).AssemblyQualifiedName);
59    }
60
61    public IEnumerable<Tag> Decompose(object obj) {
62      return new Tag[] { };
63    }
64
65    public object CreateInstance(Type type, IEnumerable<Tag> metaInfo) {
66      IEnumerator<Tag> it = metaInfo.GetEnumerator();
67      try {
68        it.MoveNext();
69      }
70      catch (InvalidOperationException e) {
71        throw new PersistenceException("Insufficient meta information to instantiate Type object", e);
72      }
73      try {
74        return TypeLoader.Load((string)it.Current.Value);
75      }
76      catch (InvalidCastException e) {
77        throw new PersistenceException("Invalid meta information during reconstruction of Type object", e);
78      }
79      catch (TypeLoadException e) {
80        throw new PersistenceException(String.Format(
81          "Cannot load Type {0}, make sure all required assemblies are available.",
82          (string)it.Current.Value), e);
83      }
84    }
85
86    public void Populate(object instance, IEnumerable<Tag> objects, Type type) {
87      // Type ojects are populated during instance creation.
88    }
89  }
90}
Note: See TracBrowser for help on using the repository browser.