Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Persistence/3.3/Default/CompositeSerializers/TypeSerializer.cs @ 11171

Last change on this file since 11171 was 11171, checked in by ascheibe, 10 years ago

#2115 merged r11170 (copyright update) into trunk

File size: 3.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 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.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      }
69      catch (InvalidOperationException e) {
70        throw new PersistenceException("Insufficient meta information to instantiate Type object", e);
71      }
72      try {
73        return TypeLoader.Load((string)it.Current.Value);
74      }
75      catch (InvalidCastException e) {
76        throw new PersistenceException("Invalid meta information during reconstruction of Type object", e);
77      }
78      catch (TypeLoadException e) {
79        throw new PersistenceException(String.Format(
80          "Cannot load Type {0}, make sure all required assemblies are available.",
81          (string)it.Current.Value), e);
82      }
83    }
84
85    public void Populate(object instance, IEnumerable<Tag> objects, Type type) {
86      // Type ojects are populated during instance creation.
87    }
88  }
89}
Note: See TracBrowser for help on using the repository browser.