[1454] | 1 | using System;
|
---|
| 2 | using System.Collections;
|
---|
| 3 | using HeuristicLab.Persistence.Core;
|
---|
| 4 | using HeuristicLab.Persistence.Interfaces;
|
---|
| 5 | using System.Collections.Generic;
|
---|
[1823] | 6 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[1705] | 7 | using HeuristicLab.Persistence.Auxiliary;
|
---|
[1454] | 8 |
|
---|
[1823] | 9 | namespace 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 | }
|
---|