Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Common/3.3/ObjectExtensions.cs @ 8310

Last change on this file since 8310 was 8310, checked in by mkommend, 12 years ago

#1898:

  • Corrected GetAllFields extension methods to return fields accross the hierarchy only once.
  • Changed filtering of object and types to first check for excluded types.
  • Removed unnecassary comparer for excluded members HashSet.
  • Corrected outdated comments
  • Added SignatureHelper to the excluded types.
File size: 4.8 KB
RevLine 
[6103]1#region License Information
2/* HeuristicLab
[7259]3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[6103]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;
[6205]23using System.Collections;
[6103]24using System.Collections.Generic;
[6205]25using System.Collections.Specialized;
[6380]26using System.Linq;
[6103]27using System.Reflection;
[7139]28using System.Security;
[6500]29using System.Threading;
[6103]30
31namespace HeuristicLab.Common {
32  public static class ObjectExtensions {
[8128]33    public static IEnumerable<T> ToEnumerable<T>(this T obj) {
34      yield return obj;
35    }
36
[8212]37    public static IEnumerable<object> GetObjectGraphObjects(this object obj, HashSet<object> excludedMembers = null, bool excludeStaticMembers = false) {
[6380]38      if (obj == null) return Enumerable.Empty<object>();
[8212]39      if (excludedMembers == null) excludedMembers = new HashSet<object>();
[6380]40
[6103]41      var objects = new HashSet<object>();
[6380]42      var stack = new Stack<object>();
43
44      stack.Push(obj);
45      while (stack.Count > 0) {
46        object current = stack.Pop();
47        objects.Add(current);
48
[7467]49        foreach (object o in GetChildObjects(current, excludedMembers, excludeStaticMembers)) {
[8310]50          if (o == null) continue;
51          if (ExcludeType(o.GetType())) continue;
52          if (objects.Contains(o)) continue;
53          stack.Push(o);
[6380]54        }
55      }
56
[6103]57      return objects;
58    }
[6891]59
[6192]60    /// <summary>
61    /// Types not collected:
62    ///   * System.Delegate
[6205]63    ///   * System.Reflection.Pointer
[6192]64    ///   * Primitives (Boolean, Byte, SByte, Int16, UInt16, Int32, UInt32, Int64, UInt64, IntPtr, UIntPtr, Char, Double, Single)
[7796]65    ///   * string, decimal, DateTime
[6205]66    ///   * Arrays of types not collected
[6192]67    /// </summary>
[6380]68    private static bool ExcludeType(Type type) {
69      return type.IsPrimitive ||
70             type == typeof(string) ||
[8310]71             type == typeof(string[]) ||
[6380]72             type == typeof(decimal) ||
[8310]73             type == typeof(decimal[]) ||
[7796]74             type == typeof(DateTime) ||
[8310]75             type == typeof(DateTime[]) ||
[6380]76             typeof(Delegate).IsAssignableFrom(type) ||
77             typeof(Pointer).IsAssignableFrom(type) ||
[8310]78             type == typeof(System.Reflection.Emit.SignatureHelper) ||
[6380]79             (type.HasElementType && ExcludeType(type.GetElementType()));
80    }
[8212]81
82    private static IEnumerable<object> GetChildObjects(object obj, HashSet<object> excludedMembers, bool excludeStaticMembers) {
[6192]83      Type type = obj.GetType();
[6181]84
[6500]85      if (type.IsSubclassOfRawGeneric(typeof(ThreadLocal<>))) {
86        PropertyInfo info = type.GetProperty("Value");
87        object value = info.GetValue(obj, null);
[8310]88        if (value != null && !excludedMembers.Contains(value))
[8212]89          yield return value;
[6500]90      } else if (type.IsSubclassOfRawGeneric(typeof(Dictionary<,>)) ||
91           type.IsSubclassOfRawGeneric(typeof(SortedDictionary<,>)) ||
92           type.IsSubclassOfRawGeneric(typeof(SortedList<,>)) ||
93           obj is SortedList ||
94           obj is OrderedDictionary ||
95           obj is ListDictionary ||
96           obj is Hashtable) {
[6205]97        var dictionary = obj as IDictionary;
[8212]98        foreach (object value in dictionary.Keys) {
[8310]99          if (excludedMembers.Contains(value)) continue;
[6380]100          yield return value;
[8212]101        }
102        foreach (object value in dictionary.Values) {
[8310]103          if (excludedMembers.Contains(value)) continue;
[6380]104          yield return value;
[8212]105        }
[6205]106      } else if (type.IsArray || type.IsSubclassOfRawGeneric(typeof(HashSet<>))) {
107        var enumerable = obj as IEnumerable;
[8212]108        foreach (var value in enumerable) {
[8310]109          if (excludedMembers.Contains(value)) continue;
[6380]110          yield return value;
[8212]111        }
[6380]112      } else {
113        foreach (FieldInfo f in type.GetAllFields()) {
[6891]114          if (excludeStaticMembers && f.IsStatic) continue;
[7139]115          object fieldValue;
116          try {
117            fieldValue = f.GetValue(obj);
[8310]118          }
119          catch (SecurityException) {
[7139]120            continue;
121          }
[8310]122          if (excludedMembers.Contains(fieldValue)) continue;
[7139]123          yield return fieldValue;
[6380]124        }
[6192]125      }
[6103]126    }
127  }
128}
Note: See TracBrowser for help on using the repository browser.