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 |
|
---|
22 | using System;
|
---|
23 | using System.Collections;
|
---|
24 | using System.Collections.Generic;
|
---|
25 | using System.Collections.Specialized;
|
---|
26 | using System.Linq;
|
---|
27 | using System.Reflection;
|
---|
28 | using System.Security;
|
---|
29 | using System.Threading;
|
---|
30 |
|
---|
31 | namespace HeuristicLab.Common {
|
---|
32 | public static class ObjectExtensions {
|
---|
33 | public static IEnumerable<T> ToEnumerable<T>(this T obj) {
|
---|
34 | yield return obj;
|
---|
35 | }
|
---|
36 |
|
---|
37 | public static IEnumerable<object> GetObjectGraphObjects(this object obj, HashSet<object> excludedMembers = null, bool excludeStaticMembers = false) {
|
---|
38 | if (obj == null) return Enumerable.Empty<object>();
|
---|
39 | if (excludedMembers == null) excludedMembers = new HashSet<object>();
|
---|
40 | var fieldInfos = new Dictionary<Type, FieldInfo[]>();
|
---|
41 |
|
---|
42 | var objects = new HashSet<object>();
|
---|
43 | var stack = new Stack<object>();
|
---|
44 |
|
---|
45 | stack.Push(obj);
|
---|
46 | while (stack.Count > 0) {
|
---|
47 | object current = stack.Pop();
|
---|
48 | objects.Add(current);
|
---|
49 |
|
---|
50 | foreach (object o in GetChildObjects(current, excludedMembers, excludeStaticMembers, fieldInfos)) {
|
---|
51 | if (o == null) continue;
|
---|
52 | if (ExcludeType(o.GetType())) continue;
|
---|
53 | if (objects.Contains(o)) continue;
|
---|
54 | stack.Push(o);
|
---|
55 | }
|
---|
56 | }
|
---|
57 |
|
---|
58 | return objects;
|
---|
59 | }
|
---|
60 |
|
---|
61 | /// <summary>
|
---|
62 | /// Types not collected:
|
---|
63 | /// * System.Delegate
|
---|
64 | /// * System.Reflection.Pointer
|
---|
65 | /// * Primitives (Boolean, Byte, SByte, Int16, UInt16, Int32, UInt32, Int64, UInt64, IntPtr, UIntPtr, Char, Double, Single)
|
---|
66 | /// * string, decimal, DateTime
|
---|
67 | /// * Arrays of types not collected
|
---|
68 | /// </summary>
|
---|
69 | private static bool ExcludeType(Type type) {
|
---|
70 | return type.IsPrimitive ||
|
---|
71 | type == typeof(string) ||
|
---|
72 | type == typeof(string[]) ||
|
---|
73 | type == typeof(decimal) ||
|
---|
74 | type == typeof(decimal[]) ||
|
---|
75 | type == typeof(DateTime) ||
|
---|
76 | type == typeof(DateTime[]) ||
|
---|
77 | typeof(Delegate).IsAssignableFrom(type) ||
|
---|
78 | typeof(Pointer).IsAssignableFrom(type) ||
|
---|
79 | type == typeof(System.Reflection.Emit.SignatureHelper) ||
|
---|
80 | (type.HasElementType && ExcludeType(type.GetElementType()));
|
---|
81 | }
|
---|
82 |
|
---|
83 | private static IEnumerable<object> GetChildObjects(object obj, HashSet<object> excludedMembers, bool excludeStaticMembers, Dictionary<Type, FieldInfo[]> fieldInfos) {
|
---|
84 | Type type = obj.GetType();
|
---|
85 |
|
---|
86 | if (type.IsSubclassOfRawGeneric(typeof(ThreadLocal<>))) {
|
---|
87 | PropertyInfo info = type.GetProperty("Value");
|
---|
88 | object value = info.GetValue(obj, null);
|
---|
89 | if (value != null && !excludedMembers.Contains(value))
|
---|
90 | yield return value;
|
---|
91 | } else if (type.IsSubclassOfRawGeneric(typeof(Dictionary<,>)) ||
|
---|
92 | type.IsSubclassOfRawGeneric(typeof(SortedDictionary<,>)) ||
|
---|
93 | type.IsSubclassOfRawGeneric(typeof(SortedList<,>)) ||
|
---|
94 | obj is SortedList ||
|
---|
95 | obj is OrderedDictionary ||
|
---|
96 | obj is ListDictionary ||
|
---|
97 | obj is Hashtable) {
|
---|
98 | var dictionary = obj as IDictionary;
|
---|
99 | foreach (object value in dictionary.Keys) {
|
---|
100 | if (excludedMembers.Contains(value)) continue;
|
---|
101 | yield return value;
|
---|
102 | }
|
---|
103 | foreach (object value in dictionary.Values) {
|
---|
104 | if (excludedMembers.Contains(value)) continue;
|
---|
105 | yield return value;
|
---|
106 | }
|
---|
107 | } else if (type.IsArray || type.IsSubclassOfRawGeneric(typeof(HashSet<>))) {
|
---|
108 | var enumerable = obj as IEnumerable;
|
---|
109 | foreach (var value in enumerable) {
|
---|
110 | if (excludedMembers.Contains(value)) continue;
|
---|
111 | yield return value;
|
---|
112 | }
|
---|
113 | } else {
|
---|
114 | if (!fieldInfos.ContainsKey(type))
|
---|
115 | fieldInfos[type] = type.GetAllFields().ToArray();
|
---|
116 | foreach (FieldInfo f in fieldInfos[type]) {
|
---|
117 | if (excludeStaticMembers && f.IsStatic) continue;
|
---|
118 | object fieldValue;
|
---|
119 | try {
|
---|
120 | fieldValue = f.GetValue(obj);
|
---|
121 | }
|
---|
122 | catch (SecurityException) {
|
---|
123 | continue;
|
---|
124 | }
|
---|
125 | if (excludedMembers.Contains(fieldValue)) continue;
|
---|
126 | yield return fieldValue;
|
---|
127 | }
|
---|
128 | }
|
---|
129 | }
|
---|
130 | }
|
---|
131 | }
|
---|