Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PersistenceReintegration/HeuristicLab.Persistence/3.3/Default/CompositeSerializers/TypeSerializer.cs @ 14927

Last change on this file since 14927 was 14927, checked in by gkronber, 7 years ago

#2520: changed all usages of StorableClass to use StorableType with an auto-generated GUID (did not add StorableType to other type definitions yet)

File size: 3.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 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;
27using HeuristicLab.Persistence.Interfaces;
28
29namespace HeuristicLab.Persistence.Default.CompositeSerializers {
30
31  [StorableType("dd23170e-0998-438a-b935-2061a7a4762e")]
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.MonoType, mscorlib";
47      #endregion
48    }
49
50    public string JustifyRejection(Type type) {
51      #region Mono Compatibility
52      return "not System.Type, System.RuntimeType, System.MonoType";
53      #endregion
54    }
55
56    public IEnumerable<Tag> CreateMetaInfo(object o) {
57      yield return new Tag("AssemblyQualifiedName", ((Type)o).AssemblyQualifiedName);
58    }
59
60    public IEnumerable<Tag> Decompose(object obj) {
61      return new Tag[] { };
62    }
63
64    public object CreateInstance(Type type, IEnumerable<Tag> metaInfo) {
65      IEnumerator<Tag> it = metaInfo.GetEnumerator();
66      try {
67        it.MoveNext();
68      } catch (InvalidOperationException e) {
69        throw new PersistenceException("Insufficient meta information to instantiate Type object", e);
70      }
71      try {
72        return TypeLoader.Load((string)it.Current.Value);
73      } catch (InvalidCastException e) {
74        throw new PersistenceException("Invalid meta information during reconstruction of Type object", e);
75      } catch (TypeLoadException e) {
76        throw new PersistenceException(String.Format(
77          "Cannot load Type {0}, make sure all required assemblies are available.",
78          (string)it.Current.Value), e);
79      }
80    }
81
82    public void Populate(object instance, IEnumerable<Tag> objects, Type type) {
83      // Type ojects are populated during instance creation.
84    }
85  }
86}
Note: See TracBrowser for help on using the repository browser.