[6103] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2011 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;
|
---|
[6205] | 23 | using System.Collections;
|
---|
[6103] | 24 | using System.Collections.Generic;
|
---|
[6205] | 25 | using System.Collections.Specialized;
|
---|
[6103] | 26 | using System.Reflection;
|
---|
[6205] | 27 | using System.Threading;
|
---|
[6103] | 28 |
|
---|
| 29 | namespace HeuristicLab.Common {
|
---|
| 30 | public static class ObjectExtensions {
|
---|
| 31 | public static IEnumerable<object> GetObjectGraphObjects(this object obj) {
|
---|
| 32 | var objects = new HashSet<object>();
|
---|
| 33 | obj.CollectObjectGraphObjects(objects);
|
---|
| 34 | return objects;
|
---|
| 35 | }
|
---|
[6192] | 36 | /// <summary>
|
---|
| 37 | /// Types not collected:
|
---|
| 38 | /// * System.Delegate
|
---|
[6205] | 39 | /// * System.Reflection.Pointer
|
---|
[6192] | 40 | /// * Primitives (Boolean, Byte, SByte, Int16, UInt16, Int32, UInt32, Int64, UInt64, IntPtr, UIntPtr, Char, Double, Single)
|
---|
| 41 | /// * string, decimal
|
---|
[6205] | 42 | /// * Arrays of types not collected
|
---|
| 43 | ///
|
---|
| 44 | /// Dictionaries and HashSets are treated specially, because it is cheaper to iterate over their keys and values
|
---|
| 45 | /// compared to traverse their internal data structures.
|
---|
[6192] | 46 | /// </summary>
|
---|
[6103] | 47 | private static void CollectObjectGraphObjects(this object obj, HashSet<object> objects) {
|
---|
[6181] | 48 | if (obj == null || objects.Contains(obj)) return;
|
---|
[6192] | 49 | Type type = obj.GetType();
|
---|
[6205] | 50 | if (ExcludeType(type)) return;
|
---|
| 51 | if (type.HasElementType && ExcludeType(type.GetElementType())) return;
|
---|
[6181] | 52 |
|
---|
[6103] | 53 | objects.Add(obj);
|
---|
| 54 |
|
---|
[6205] | 55 | if (type.IsSubclassOfRawGeneric(typeof(ThreadLocal<>))) return; // avoid stack overflow when the field `ConcurrentStack<int> s_availableIndices` too grows large
|
---|
| 56 |
|
---|
| 57 | // performance critical to handle dictionaries, hashsets and hashtables in a special way
|
---|
| 58 | if (type.IsSubclassOfRawGeneric(typeof(Dictionary<,>)) ||
|
---|
| 59 | type.IsSubclassOfRawGeneric(typeof(SortedDictionary<,>)) ||
|
---|
| 60 | type.IsSubclassOfRawGeneric(typeof(SortedList<,>)) ||
|
---|
| 61 | obj is SortedList ||
|
---|
| 62 | obj is OrderedDictionary ||
|
---|
| 63 | obj is ListDictionary ||
|
---|
| 64 | obj is Hashtable) {
|
---|
| 65 | var dictionary = obj as IDictionary;
|
---|
[6201] | 66 | foreach (object value in dictionary.Keys)
|
---|
[6192] | 67 | CollectObjectGraphObjects(value, objects);
|
---|
[6201] | 68 | foreach (object value in dictionary.Values)
|
---|
[6192] | 69 | CollectObjectGraphObjects(value, objects);
|
---|
| 70 | return;
|
---|
[6205] | 71 | } else if (type.IsArray || type.IsSubclassOfRawGeneric(typeof(HashSet<>))) {
|
---|
| 72 | var enumerable = obj as IEnumerable;
|
---|
| 73 | foreach (var value in enumerable)
|
---|
[6192] | 74 | CollectObjectGraphObjects(value, objects);
|
---|
| 75 | return;
|
---|
| 76 | }
|
---|
| 77 |
|
---|
| 78 | foreach (FieldInfo f in type.GetAllFields()) {
|
---|
| 79 | f.GetValue(obj).CollectObjectGraphObjects(objects);
|
---|
[6201] | 80 | }
|
---|
[6103] | 81 | }
|
---|
[6205] | 82 |
|
---|
| 83 | private static bool ExcludeType(Type type) {
|
---|
| 84 | return type.IsPrimitive ||
|
---|
| 85 | type == typeof(string) ||
|
---|
| 86 | type == typeof(decimal) ||
|
---|
| 87 | typeof(Delegate).IsAssignableFrom(type) ||
|
---|
| 88 | typeof(Pointer).IsAssignableFrom(type);
|
---|
| 89 | }
|
---|
[6103] | 90 | }
|
---|
| 91 | }
|
---|