Free cookie consent management tool by TermsFeed Policy Generator

source: tags/3.3.0/HeuristicLab.MainForm/3.3/MainFormManager.cs @ 13398

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

changed logic of showing new views (ticket #972)

File size: 9.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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 HeuristicLab.PluginInfrastructure;
27using System.Diagnostics;
28using HeuristicLab.Common;
29
30namespace HeuristicLab.MainForm {
31  public static class MainFormManager {
32    private static object locker;
33    private static IMainForm mainform;
34    private static HashSet<Type> views;
35    private static Dictionary<Type, Type> defaultViews;
36
37    static MainFormManager() {
38      locker = new object();
39      mainform = null;
40      views = new HashSet<Type>();
41      defaultViews = new Dictionary<Type, Type>();
42    }
43
44    public static void RegisterMainForm(IMainForm mainForm) {
45      lock (locker) {
46        if (MainFormManager.mainform != null)
47          throw new ArgumentException("A mainform was already associated with the mainform manager.");
48        if (mainForm == null)
49          throw new ArgumentException("Could not associate null as a mainform in the mainform manager.");
50
51        MainFormManager.mainform = mainForm;
52        IEnumerable<Type> types =
53          from t in ApplicationManager.Manager.GetTypes(typeof(IContentView))
54          where !t.IsAbstract && !t.IsInterface && ContentAttribute.HasContentAttribute(t)
55          select t;
56
57        foreach (Type viewType in types) {
58          views.Add(viewType);
59          foreach (Type contentType in ContentAttribute.GetDefaultViewableTypes(viewType)) {
60            if (defaultViews.ContainsKey(contentType))
61              throw new ArgumentException("DefaultView for type " + contentType + " is " + defaultViews[contentType] +
62                ". Can't register additional DefaultView " + viewType + ".");
63            defaultViews[contentType] = viewType;
64          }
65        }
66      }
67    }
68
69    public static IMainForm MainForm {
70      get { return mainform; }
71    }
72
73    public static T GetMainForm<T>() where T : IMainForm {
74      return (T)mainform;
75    }
76
77    public static IEnumerable<Type> GetViewTypes(Type contentType) {
78      CheckForContentType(contentType);
79      List<Type> viewTypes = (from v in views
80                              where ContentAttribute.CanViewType(v, contentType)
81                              select v).ToList();
82      //transform generic type definitions to generic types
83      for (int i = 0; i < viewTypes.Count; i++) {
84        viewTypes[i] = TransformGenericTypeDefinition(viewTypes[i], contentType);
85      }
86      return viewTypes.Where(t => t != null);
87    }
88
89    public static IEnumerable<Type> GetViewTypes(Type contentType, bool returnOnlyMostSpecificViewTypes) {
90      CheckForContentType(contentType);
91      List<Type> viewTypes = new List<Type>(GetViewTypes(contentType));
92      if (returnOnlyMostSpecificViewTypes) {
93        Type defaultViewType = null;
94        try {
95          defaultViewType = GetDefaultViewType(contentType);
96        }
97        catch (InvalidOperationException) { }
98
99        foreach (Type viewType in viewTypes.ToList()) {
100          if ((viewType != defaultViewType) && viewTypes.Any(t => t.IsSubclassOf(viewType)))
101            viewTypes.Remove(viewType);
102        }
103      }
104      return viewTypes;
105    }
106
107    public static bool ViewCanViewContent(IContentView view, IContent content) {
108      return ContentAttribute.CanViewType(view.GetType(), content.GetType());
109    }
110
111    public static Type GetDefaultViewType(Type contentType) {
112      CheckForContentType(contentType);
113      //check base classes for default view
114      Type type = contentType;
115      while (type != null) {
116        //check classes
117        foreach (Type defaultContentType in defaultViews.Keys) {
118          if (type == defaultContentType || type.CheckGenericTypes(defaultContentType))
119            return TransformGenericTypeDefinition(defaultViews[defaultContentType], contentType);
120        }
121
122        //check interfaces
123        IEnumerable<Type> nonInheritedInterfaces = type.GetInterfaces().Where(i => !i.IsAssignableFrom(type.BaseType));
124        List<Type> defaultViewList = new List<Type>();
125        foreach (Type defaultContentType in defaultViews.Keys) {
126          if (nonInheritedInterfaces.Contains(defaultContentType) || nonInheritedInterfaces.Any(i => i.CheckGenericTypes(defaultContentType)))
127            defaultViewList.Add(defaultViews[defaultContentType]);
128        }
129
130        //return only most spefic view as default view
131        foreach (Type viewType in defaultViewList.ToList()) {
132          if (defaultViewList.Any(t => t.IsSubclassOf(viewType)))
133            defaultViewList.Remove(viewType);
134        }
135
136        if (defaultViewList.Count == 1)
137          return TransformGenericTypeDefinition(defaultViewList[0], contentType);
138        else if (defaultViewList.Count > 1)
139          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.");
140
141        type = type.BaseType;
142      }
143
144      return null;
145    }
146
147    public static IContentView CreateDefaultView(Type contentType) {
148      CheckForContentType(contentType);
149      Type t = GetDefaultViewType(contentType);
150      if (t == null)
151        return null;
152
153      return (IContentView)Activator.CreateInstance(t);
154    }
155    public static IContentView CreateView(Type viewType) {
156      CheckForContentViewType(viewType);
157      if (viewType.IsGenericTypeDefinition)
158        throw new ArgumentException("View can not be created becaues given type " + viewType.ToString() + " is a generic type definition.");
159
160      return (IContentView)Activator.CreateInstance(viewType);
161    }
162
163    private static void CheckForContentType(Type contentType) {
164          if (!typeof(IContent).IsAssignableFrom(contentType))
165        throw new ArgumentException("DefaultViews are only specified for types of IContent and not for " + contentType + ".");
166    }
167    private static void CheckForContentViewType(Type viewType) {
168      if (!typeof(IContentView).IsAssignableFrom(viewType))
169        throw new ArgumentException("View can not be created becaues given type " + viewType.ToString() + " is not of type IContentView.");
170    }
171
172    private static Type TransformGenericTypeDefinition(Type viewType, Type contentType) {
173      if (contentType.IsGenericTypeDefinition)
174        throw new ArgumentException("The content type " + contentType.ToString() + " must not be a generic type definition.");
175
176      if (!viewType.IsGenericTypeDefinition)
177        return viewType;
178
179      Type contentTypeBaseType = null;
180      foreach (Type type in ContentAttribute.GetViewableTypes(viewType)) {
181        contentTypeBaseType = contentType;
182        while (contentTypeBaseType != null && (!contentTypeBaseType.IsGenericType ||
183              type.GetGenericTypeDefinition() != contentTypeBaseType.GetGenericTypeDefinition()))
184          contentTypeBaseType = contentTypeBaseType.BaseType;
185
186        //check interfaces for generic type arguments
187        if (contentTypeBaseType == null) {
188          IEnumerable<Type> implementedInterfaces = contentType.GetInterfaces().Where(t => t.IsGenericType);
189          foreach (Type implementedInterface in implementedInterfaces) {
190            if (implementedInterface.CheckGenericTypes(type))
191              contentTypeBaseType = implementedInterface;
192          }
193        }
194        if (contentTypeBaseType != null) break;
195      }
196
197      if (!contentTypeBaseType.IsGenericType)
198        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.");
199
200      Type[] viewTypeGenericArguments = viewType.GetGenericArguments();
201      Type[] contentTypeGenericArguments = contentTypeBaseType.GetGenericArguments();
202
203      if (contentTypeGenericArguments.Length != viewTypeGenericArguments.Length)
204        throw new ArgumentException("Neiter the type (" + contentType.ToString() + ") nor any of its base types specifies " +
205          viewTypeGenericArguments.Length + " generic type arguments.");
206
207      for (int i = 0; i < viewTypeGenericArguments.Length; i++) {
208        foreach (Type typeConstraint in viewTypeGenericArguments[i].GetGenericParameterConstraints()) {
209          if (!typeConstraint.IsAssignableFrom(contentTypeGenericArguments[i]))
210            return null;
211        }
212      }
213
214      Type returnType = viewType.MakeGenericType(contentTypeGenericArguments);
215      return returnType;
216    }
217  }
218}
Note: See TracBrowser for help on using the repository browser.