[2433] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[2790] | 3 | * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[2433] | 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
|
---|
[2696] | 21 |
|
---|
[2433] | 22 | using System;
|
---|
[2426] | 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Linq;
|
---|
| 25 | using System.Text;
|
---|
[2433] | 26 | using HeuristicLab.PluginInfrastructure;
|
---|
[2696] | 27 | using System.Diagnostics;
|
---|
[2426] | 28 |
|
---|
| 29 | namespace HeuristicLab.MainForm {
|
---|
[2433] | 30 | public static class MainFormManager {
|
---|
| 31 | private static object locker;
|
---|
| 32 | private static IMainForm mainform;
|
---|
[2466] | 33 | private static HashSet<Type> views;
|
---|
[2433] | 34 | private static Dictionary<Type, Type> defaultViews;
|
---|
| 35 |
|
---|
| 36 | static MainFormManager() {
|
---|
| 37 | locker = new object();
|
---|
[2761] | 38 | mainform = null;
|
---|
[2466] | 39 | views = new HashSet<Type>();
|
---|
[2433] | 40 | defaultViews = new Dictionary<Type, Type>();
|
---|
[2426] | 41 | }
|
---|
| 42 |
|
---|
[2761] | 43 | public static void RegisterMainForm(IMainForm mainForm) {
|
---|
[2433] | 44 | lock (locker) {
|
---|
[2696] | 45 | if (MainFormManager.mainform != null)
|
---|
| 46 | throw new ArgumentException("A mainform was already associated with the mainform manager.");
|
---|
[2761] | 47 | if (mainForm == null)
|
---|
[2696] | 48 | throw new ArgumentException("Could not associate null as a mainform in the mainform manager.");
|
---|
[2433] | 49 |
|
---|
[2761] | 50 | MainFormManager.mainform = mainForm;
|
---|
[2696] | 51 | IEnumerable<Type> types =
|
---|
| 52 | from t in ApplicationManager.Manager.GetTypes(typeof(IView))
|
---|
| 53 | where !t.IsAbstract && !t.IsInterface && ContentAttribute.HasContentAttribute(t)
|
---|
| 54 | select t;
|
---|
[2433] | 55 |
|
---|
[2696] | 56 | foreach (Type viewType in types) {
|
---|
| 57 | views.Add(viewType);
|
---|
| 58 | foreach (Type contentType in ContentAttribute.GetDefaultViewableTypes(viewType)) {
|
---|
| 59 | if (defaultViews.ContainsKey(contentType))
|
---|
| 60 | throw new ArgumentException("DefaultView for type " + contentType + " is " + defaultViews[contentType] +
|
---|
| 61 | ". Can't register additional DefaultView " + viewType + ".");
|
---|
| 62 | defaultViews[contentType] = viewType;
|
---|
[2433] | 63 | }
|
---|
[2696] | 64 | }
|
---|
[2433] | 65 | }
|
---|
[2426] | 66 | }
|
---|
| 67 |
|
---|
[2433] | 68 | public static IMainForm MainForm {
|
---|
[2426] | 69 | get { return mainform; }
|
---|
| 70 | }
|
---|
| 71 |
|
---|
[2433] | 72 | public static T GetMainForm<T>() where T : IMainForm {
|
---|
[2426] | 73 | return (T)mainform;
|
---|
| 74 | }
|
---|
[2433] | 75 |
|
---|
[2466] | 76 | public static IEnumerable<Type> GetViewTypes(Type contentType) {
|
---|
[2724] | 77 | List<Type> viewTypes = (from v in views
|
---|
| 78 | where ContentAttribute.CanViewType(v, contentType)
|
---|
| 79 | select v).ToList();
|
---|
| 80 | //transform generic type definitions to generic types
|
---|
| 81 | for (int i = 0; i < viewTypes.Count; i++) {
|
---|
| 82 | viewTypes[i] = TransformGenericTypeDefinition(viewTypes[i], contentType);
|
---|
| 83 | }
|
---|
[2726] | 84 | return viewTypes.Where(t => t != null);
|
---|
[2433] | 85 | }
|
---|
| 86 |
|
---|
[2761] | 87 | public static bool ViewCanViewObject(IView view, object content) {
|
---|
| 88 | return ContentAttribute.CanViewType(view.GetType(), content.GetType());
|
---|
[2433] | 89 | }
|
---|
| 90 |
|
---|
[2466] | 91 | public static Type GetDefaultViewType(Type contentType) {
|
---|
[2456] | 92 | //check if viewableType has a default view
|
---|
[2466] | 93 | if (defaultViews.ContainsKey(contentType))
|
---|
| 94 | return defaultViews[contentType];
|
---|
[2456] | 95 |
|
---|
| 96 | //check base classes for default view
|
---|
[2466] | 97 | Type type = contentType;
|
---|
[2696] | 98 | while (type != null) {
|
---|
[2724] | 99 | foreach (Type defaultContentType in defaultViews.Keys) {
|
---|
| 100 | if (type == defaultContentType || type.CheckGenericTypes(defaultContentType))
|
---|
| 101 | return TransformGenericTypeDefinition(defaultViews[defaultContentType], contentType);
|
---|
[2696] | 102 | }
|
---|
[2456] | 103 | type = type.BaseType;
|
---|
[2443] | 104 | }
|
---|
[2456] | 105 |
|
---|
[2696] | 106 | //check if exactly one implemented interface has a default view
|
---|
[2456] | 107 | List<Type> temp = (from t in defaultViews.Keys
|
---|
[2696] | 108 | where t.IsInterface && contentType.IsAssignableTo(t)
|
---|
[2456] | 109 | select t).ToList();
|
---|
| 110 | if (temp.Count == 1)
|
---|
[2724] | 111 | return TransformGenericTypeDefinition(defaultViews[temp[0]], contentType);
|
---|
[2456] | 112 | //more than one default view for implemented interfaces are found
|
---|
| 113 | if (temp.Count > 1)
|
---|
[2761] | 114 | throw new InvalidOperationException("Could not determine which is the default view for type " + contentType.ToString() + ". Because more than one implemented interfaces have a default view.");
|
---|
[2456] | 115 | return null;
|
---|
[2433] | 116 | }
|
---|
| 117 |
|
---|
[2761] | 118 | public static IView CreateDefaultView(object content) {
|
---|
| 119 | Type t = GetDefaultViewType(content.GetType());
|
---|
[2433] | 120 | if (t == null)
|
---|
| 121 | return null;
|
---|
[2696] | 122 |
|
---|
[2761] | 123 | return (IView)Activator.CreateInstance(t, content);
|
---|
[2433] | 124 | }
|
---|
[2467] | 125 |
|
---|
| 126 | public static IView CreateView(Type viewType) {
|
---|
| 127 | if (!typeof(IView).IsAssignableFrom(viewType))
|
---|
| 128 | throw new ArgumentException("View can not be created becaues given type " + viewType.ToString() + " is not of type IView.");
|
---|
[2696] | 129 | if (viewType.IsGenericTypeDefinition)
|
---|
| 130 | throw new ArgumentException("View can not be created becaues given type " + viewType.ToString() + " is a generic type definition.");
|
---|
| 131 |
|
---|
[2467] | 132 | return (IView)Activator.CreateInstance(viewType);
|
---|
| 133 | }
|
---|
| 134 |
|
---|
[2761] | 135 | public static IView CreateView(Type viewType, object content) {
|
---|
[2467] | 136 | if (!typeof(IView).IsAssignableFrom(viewType))
|
---|
| 137 | throw new ArgumentException("View can not be created becaues given type " + viewType.ToString() + " is not of type IView.");
|
---|
[2810] | 138 | Type view = viewType;
|
---|
| 139 | if (view.IsGenericTypeDefinition)
|
---|
| 140 | view = TransformGenericTypeDefinition(view, content.GetType());
|
---|
[2696] | 141 |
|
---|
[2810] | 142 | return (IView)Activator.CreateInstance(view, content);
|
---|
[2467] | 143 | }
|
---|
[2696] | 144 |
|
---|
[2724] | 145 | private static Type TransformGenericTypeDefinition(Type viewType, Type contentType) {
|
---|
| 146 | if (contentType.IsGenericTypeDefinition)
|
---|
| 147 | throw new ArgumentException("The content type " + contentType.ToString() + " must not be a generic type definition.");
|
---|
[2696] | 148 |
|
---|
[2724] | 149 | if (!viewType.IsGenericTypeDefinition)
|
---|
| 150 | return viewType;
|
---|
[2696] | 151 |
|
---|
[2726] | 152 | Type contentTypeBaseType = null;
|
---|
[2724] | 153 | foreach (Type type in ContentAttribute.GetViewableTypes(viewType)) {
|
---|
[2726] | 154 | contentTypeBaseType = contentType;
|
---|
[2724] | 155 | while (contentTypeBaseType != null && (!contentTypeBaseType.IsGenericType ||
|
---|
| 156 | type.GetGenericTypeDefinition() != contentTypeBaseType.GetGenericTypeDefinition()))
|
---|
| 157 | contentTypeBaseType = contentTypeBaseType.BaseType;
|
---|
| 158 |
|
---|
| 159 | //check interfaces for generic type arguments
|
---|
| 160 | if (contentTypeBaseType == null) {
|
---|
| 161 | IEnumerable<Type> implementedInterfaces = contentType.GetInterfaces().Where(t => t.IsGenericType);
|
---|
| 162 | foreach (Type implementedInterface in implementedInterfaces) {
|
---|
[2726] | 163 | if (implementedInterface.CheckGenericTypes(type))
|
---|
[2724] | 164 | contentTypeBaseType = implementedInterface;
|
---|
| 165 | }
|
---|
| 166 | }
|
---|
[2726] | 167 | if (contentTypeBaseType != null) break;
|
---|
[2724] | 168 | }
|
---|
| 169 |
|
---|
| 170 | if (!contentTypeBaseType.IsGenericType)
|
---|
| 171 | throw new ArgumentException("Neither content type itself nor any of its base classes is a generic type. Could not determine generic type argument for the view.");
|
---|
| 172 |
|
---|
| 173 | Type[] viewTypeGenericArguments = viewType.GetGenericArguments();
|
---|
| 174 | Type[] contentTypeGenericArguments = contentTypeBaseType.GetGenericArguments();
|
---|
| 175 |
|
---|
| 176 | if (contentTypeGenericArguments.Length != viewTypeGenericArguments.Length)
|
---|
| 177 | throw new ArgumentException("Neiter the type (" + contentType.ToString() + ") nor any of its base types specifies " +
|
---|
| 178 | viewTypeGenericArguments.Length + " generic type arguments.");
|
---|
| 179 |
|
---|
| 180 | for (int i = 0; i < viewTypeGenericArguments.Length; i++) {
|
---|
| 181 | foreach (Type typeConstraint in viewTypeGenericArguments[i].GetGenericParameterConstraints()) {
|
---|
| 182 | if (!typeConstraint.IsAssignableFrom(contentTypeGenericArguments[i]))
|
---|
[2696] | 183 | return null;
|
---|
| 184 | }
|
---|
| 185 | }
|
---|
| 186 |
|
---|
[2724] | 187 | Type returnType = viewType.MakeGenericType(contentTypeGenericArguments);
|
---|
| 188 | return returnType;
|
---|
[2696] | 189 | }
|
---|
[2426] | 190 | }
|
---|
| 191 | }
|
---|