Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Persistence/3.3/Default/CompositeSerializers/DictionarySerializer.cs @ 1843

Last change on this file since 1843 was 1823, checked in by epitzer, 16 years ago

Namespace refactoring: rename formatters & decomposers -> primitive and composite serializers. (#603)

File size: 2.1 KB
RevLine 
[1454]1using System;
2using System.Collections;
3using HeuristicLab.Persistence.Core;
4using HeuristicLab.Persistence.Interfaces;
5using System.Collections.Generic;
[1823]6using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
[1705]7using HeuristicLab.Persistence.Auxiliary;
[1454]8
[1823]9namespace HeuristicLab.Persistence.Default.CompositeSerializers {
[1566]10
[1563]11  [EmptyStorableClass]
[1823]12  public class DictionarySerializer : ICompositeSerializer {
[1454]13
[1539]14    public int Priority {
15      get { return 100; }
16    }
17
18
[1823]19    public bool CanSerialize(Type type) {
[1705]20      return ReflectionTools.HasDefaultConstructor(type) &&
21        type.GetInterface(typeof(IDictionary).FullName) != null;
[1454]22    }
23
[1553]24    public IEnumerable<Tag> CreateMetaInfo(object o) {
25      return new Tag[] { };
26    }
27
[1542]28    public IEnumerable<Tag> Decompose(object o) {
[1566]29      IDictionary dict = (IDictionary)o;
30      foreach (DictionaryEntry entry in dict) {
[1454]31        yield return new Tag("key", entry.Key);
32        yield return new Tag("value", entry.Value);
33      }
34    }
35
[1553]36    public object CreateInstance(Type t, IEnumerable<Tag> metaInfo) {
[1454]37      return Activator.CreateInstance(t, true);
38    }
39
[1553]40    public void Populate(object instance, IEnumerable<Tag> o, Type t) {
[1454]41      IDictionary dict = (IDictionary)instance;
42      IEnumerator<Tag> iter = o.GetEnumerator();
[1625]43      try {
44        while (iter.MoveNext()) {
45          Tag key = iter.Current;
46          iter.MoveNext();
47          Tag value = iter.Current;
48          dict.Add(key.Value, value.Value);
49        }
50      } catch (InvalidOperationException e) {
51        throw new PersistenceException("Dictionaries must contain an even number of elements (key+value).", e);
52      } catch (NotSupportedException e) {
53        throw new PersistenceException("The serialized dictionary type was read-only or had a fixed size and cannot be deserialized.", e);
54      } catch (ArgumentNullException e) {
55        throw new PersistenceException("Dictionary key was null.", e);
56      } catch (ArgumentException e) {
57        throw new PersistenceException("Duplicate dictionary key.", e);
[1705]58      }
[1454]59    }
60  }
61
62}
Note: See TracBrowser for help on using the repository browser.