Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.MainForm/3.2/TypeExtension.cs @ 2696

Last change on this file since 2696 was 2696, checked in by mkommend, 14 years ago

first version of redesigned MainForm (ticket #857)

File size: 2.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 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
22using System;
23using System.Collections.Generic;
24using System.Linq;
25using System.Text;
26using System.Diagnostics;
27
28namespace HeuristicLab.MainForm {
29  internal static class TypeExtension {
30    internal static bool IsAssignableTo(this Type type, Type other) {
31      if (other.IsAssignableFrom(type))
32        return true;
33
34      if (type.IsGenericType && other.IsGenericType) {
35        if (recursiveCheckGenericTypes(type, other))
36          return true;
37
38        IEnumerable<Type> implementedInterfaces = type.GetInterfaces().Where(t => t.IsGenericType);
39        foreach (Type implementedInterface in implementedInterfaces) {
40          if (implementedInterface.CheckGenericTypes(other))
41            return true;
42        }
43      }
44      return false;
45    }
46
47    private static bool recursiveCheckGenericTypes(Type type, Type other) {
48      if (type.CheckGenericTypes(other))
49        return true;
50
51      if (type.BaseType == null)
52        return false;
53
54      return recursiveCheckGenericTypes(type.BaseType, other);
55    }
56
57    internal static bool CheckGenericTypes(this Type type, Type other) {
58      if (!type.IsGenericType || !other.IsGenericType)
59        return false;
60
61      if (type.GetGenericTypeDefinition() == other.GetGenericTypeDefinition())
62        return type.CheckGenericArguments(other);
63
64      return false;
65    }
66
67    private static bool CheckGenericArguments(this Type type, Type other) {
68      Type[] typeGenericArguments = type.GetGenericArguments();
69      Type[] otherGenericArguments = other.GetGenericArguments();
70
71      if (typeGenericArguments.Length != otherGenericArguments.Length)
72        return false;
73
74      for (int i = 0; i < typeGenericArguments.Length; i++) {
75        if (typeGenericArguments[i] != otherGenericArguments[i]
76          && !otherGenericArguments[i].IsGenericParameter)
77          return false;
78      }
79      return true;
80    }
81  }
82}
Note: See TracBrowser for help on using the repository browser.