~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/nrefactory/ICSharpCode.NRefactory.Demo/SemanticTreeDialog.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
Import upstream version 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright (c) 2010-2013 AlphaSierraPapa for the SharpDevelop Team
 
2
// 
 
3
// Permission is hereby granted, free of charge, to any person obtaining a copy of this
 
4
// software and associated documentation files (the "Software"), to deal in the Software
 
5
// without restriction, including without limitation the rights to use, copy, modify, merge,
 
6
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
 
7
// to whom the Software is furnished to do so, subject to the following conditions:
 
8
// 
 
9
// The above copyright notice and this permission notice shall be included in all copies or
 
10
// substantial portions of the Software.
 
11
// 
 
12
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
 
13
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
 
14
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
 
15
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
 
16
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 
17
// DEALINGS IN THE SOFTWARE.
 
18
 
 
19
using System;
 
20
using System.Collections;
 
21
using System.Drawing;
 
22
using System.Linq;
 
23
using System.Reflection;
 
24
using System.Text;
 
25
using System.Windows.Forms;
 
26
using ICSharpCode.NRefactory.Semantics;
 
27
 
 
28
namespace ICSharpCode.NRefactory.Demo
 
29
{
 
30
        /// <summary>
 
31
        /// Description of SemanticTreeDialog.
 
32
        /// </summary>
 
33
        public partial class SemanticTreeDialog : Form
 
34
        {
 
35
                public SemanticTreeDialog(ResolveResult rr)
 
36
                {
 
37
                        //
 
38
                        // The InitializeComponent() call is required for Windows Forms designer support.
 
39
                        //
 
40
                        InitializeComponent();
 
41
                        
 
42
                        var rootNode = MakeObjectNode("Resolve() = ", rr);
 
43
                        rootNode.Expand();
 
44
                        treeView.Nodes.Add(rootNode);
 
45
                }
 
46
                
 
47
                TreeNode MakeObjectNode(string prefix, object obj)
 
48
                {
 
49
                        if (obj == null)
 
50
                                return new TreeNode(prefix + "null");
 
51
                        if (obj is ResolveResult) {
 
52
                                TreeNode t = new TreeNode(prefix + obj.GetType().Name);
 
53
                                t.Tag = obj;
 
54
                                foreach (PropertyInfo p in obj.GetType().GetProperties(BindingFlags.Public | BindingFlags.Instance)) {
 
55
                                        if (p.Name == "ConstantValue" && !((ResolveResult)obj).IsCompileTimeConstant)
 
56
                                                continue;
 
57
                                        TreeNode child = MakePropertyNode(p.Name, p.PropertyType, p.GetValue(obj, null));
 
58
                                        if (child != null)
 
59
                                                t.Nodes.Add(child);
 
60
                                }
 
61
                                foreach (FieldInfo p in obj.GetType().GetFields(BindingFlags.Public | BindingFlags.Instance)) {
 
62
                                        TreeNode child = MakePropertyNode(p.Name, p.FieldType, p.GetValue(obj));
 
63
                                        if (child != null)
 
64
                                                t.Nodes.Add(child);
 
65
                                }
 
66
                                return t;
 
67
                        } else {
 
68
                                return new TreeNode(prefix + obj.ToString());
 
69
                        }
 
70
                }
 
71
                
 
72
                TreeNode MakePropertyNode(string propertyName, Type propertyType, object propertyValue)
 
73
                {
 
74
                        if (propertyName == "IsError" && (propertyValue as bool?) == false)
 
75
                                return null;
 
76
                        if (propertyName == "IsCompileTimeConstant" && (propertyValue as bool?) == false)
 
77
                                return null;
 
78
                        if (propertyValue == null) {
 
79
                                return new TreeNode(propertyName + " = null");
 
80
                        }
 
81
                        if (propertyType.GetInterface("System.Collections.IEnumerable") != null && propertyType != typeof(string)) {
 
82
                                var collection = ((IEnumerable)propertyValue).Cast<object>().ToList();
 
83
                                var node = new TreeNode(propertyName + " = Collection with " + collection.Count + " elements");
 
84
                                foreach (object element in collection) {
 
85
                                        node.Nodes.Add(MakeObjectNode("", element));
 
86
                                }
 
87
                                return node;
 
88
                        }
 
89
                        return MakeObjectNode(propertyName + " = ", propertyValue);
 
90
                }
 
91
        }
 
92
}