Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Persistence/3.3/Default/CompositeSerializers/Storable/StorableSerializer.cs @ 2990

Last change on this file since 2990 was 2990, checked in by epitzer, 14 years ago

unwrap exceptions during constructor call when deserializing storable objects (#548)

File size: 2.4 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using HeuristicLab.Persistence.Interfaces;
5using HeuristicLab.Persistence.Core;
6using System.Reflection;
7using HeuristicLab.Persistence.Auxiliary;
8
9namespace HeuristicLab.Persistence.Default.CompositeSerializers.Storable {
10
11  [EmptyStorableClass]
12  public class StorableSerializer : ICompositeSerializer {
13
14    public int Priority {
15      get { return 200; }
16    }
17
18    public bool CanSerialize(Type type) {
19      if (!ReflectionTools.HasDefaultConstructor(type))
20        return false;
21      while (type != null) {       
22        if (StorableAttribute.GetStorableMembers(type, false).Count() == 0 &&
23            !EmptyStorableClassAttribute.IsEmptyStorable(type))
24          return false;
25        type = type.BaseType;
26      }
27      return true;
28    }
29
30    public IEnumerable<Tag> CreateMetaInfo(object o) {
31      StorableHookAttribute.InvokeHook(HookType.BeforeSerialization, o);
32      return new Tag[] { };
33    }
34
35    public IEnumerable<Tag> Decompose(object obj) {
36      foreach (var accessor in StorableAttribute.GetStorableAccessors(obj)) {
37        yield return new Tag(accessor.Name, accessor.Get());
38      }
39    }
40
41    public object CreateInstance(Type type, IEnumerable<Tag> metaInfo) {
42      try {
43        object instance = StorableConstructorAttribute.CallStorableConstructor(type);
44        if (instance == null)
45          instance = Activator.CreateInstance(type, true);
46        return instance;
47      } catch (TargetInvocationException x) {
48        throw new PersistenceException(
49          "Could not instantiate storable object: Encountered exception during constructor call",
50          x.InnerException);
51      }
52    }
53
54    public void Populate(object instance, IEnumerable<Tag> objects, Type type) {
55      var memberDict = new Dictionary<string, Tag>();
56      IEnumerator<Tag> iter = objects.GetEnumerator();
57      while (iter.MoveNext()) {
58        memberDict.Add(iter.Current.Name, iter.Current);
59      }
60      foreach (var accessor in StorableAttribute.GetStorableAccessors(instance)) {
61        if (memberDict.ContainsKey(accessor.Name)) {
62          accessor.Set(memberDict[accessor.Name].Value);
63        } else if (accessor.DefaultValue != null) {
64          accessor.Set(accessor.DefaultValue);
65        }
66      }
67      StorableHookAttribute.InvokeHook(HookType.AfterDeserialization, instance);
68    }
69  }
70}
Note: See TracBrowser for help on using the repository browser.