Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AstStockIcons.cs « MonoDevelop.CSharp « CSharpBinding « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 15216145e5bf47341571b6cbb24b8a1d074b8a55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
// 
// AstStockIcons.cs
//  
// Author:
//       Mike Krüger <mkrueger@xamarin.com>
// 
// Copyright (c) 2012 Xamarin Inc. (http://xamarin.com)
// 
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
// 
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
// 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

using System;
using System.Linq;
using MonoDevelop.Ide.TypeSystem;
using MonoDevelop.Core;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
using MonoDevelop.Components.MainToolbar;

namespace MonoDevelop.CSharp
{
	// Copied from StockIcons.cs and extended for the c# ast (c# AST shouldn't be in Ide)
	static class AstStockIcons
	{
		static readonly IconId Class = "md-class";
		static readonly IconId Enum = "md-enum";
		static readonly IconId Event = "md-event";
		static readonly IconId Field = "md-field";
		static readonly IconId Interface = "md-interface";
		static readonly IconId Method = "md-method";
		static readonly IconId Property = "md-property";
		static readonly IconId Struct = "md-struct";
		static readonly IconId Delegate = "md-delegate";
		// static readonly IconId Constant = "md-literal";
		public static readonly IconId Namespace = "md-name-space";

			
		static void AdjustAccessibility (SyntaxTokenList modifiers, ref Accessibility acc, ref bool isStatic, ref bool result)
		{
			isStatic = modifiers.Any (mod => mod.Kind () == Microsoft.CodeAnalysis.CSharp.SyntaxKind.StaticKeyword);
			if (modifiers.Any (mod => mod.Kind () == Microsoft.CodeAnalysis.CSharp.SyntaxKind.ProtectedKeyword) &&
				modifiers.Any (mod => mod.Kind () == Microsoft.CodeAnalysis.CSharp.SyntaxKind.InternalKeyword)) {
				acc = Accessibility.ProtectedOrInternal;
				result = true;
				return;
			}

			foreach (var mod in modifiers) {
				if (mod.Kind () == Microsoft.CodeAnalysis.CSharp.SyntaxKind.PublicKeyword) {
					acc = Accessibility.Public;
					result = true;
					return;
				}
				if (mod.Kind () == Microsoft.CodeAnalysis.CSharp.SyntaxKind.PrivateKeyword) {
					acc = Accessibility.Private;
					result = true;
					return;
				}
				if (mod.Kind () == Microsoft.CodeAnalysis.CSharp.SyntaxKind.ProtectedKeyword) {
					acc = Accessibility.Protected;
					result = true;
					return;
				}
				if (mod.Kind () == Microsoft.CodeAnalysis.CSharp.SyntaxKind.InternalKeyword) {
					acc = Accessibility.Internal;
					result = true;
					return;
				}
			}
		}

		static bool GetAccessibility (SyntaxNode element, out Accessibility acc, out bool isStatic)
		{
			isStatic = false;
			if (element.Parent is TypeDeclarationSyntax && element.Parent is InterfaceDeclarationSyntax) {
				acc = Accessibility.Public;
				return true;
			}
			bool result = false;
			acc = Accessibility.Private;
			if (element is TypeDeclarationSyntax && !(element.Parent is TypeDeclarationSyntax))
				acc = Accessibility.Internal;

			if (element is VariableDeclaratorSyntax)
				element = element.Parent.Parent;
			
			if (element is TypeDeclarationSyntax)
				AdjustAccessibility (((TypeDeclarationSyntax)element).Modifiers, ref acc, ref isStatic, ref result);
			if (element is BaseFieldDeclarationSyntax)
				AdjustAccessibility (((BaseFieldDeclarationSyntax)element).Modifiers, ref acc, ref isStatic, ref result);
			if (element is BasePropertyDeclarationSyntax)
				AdjustAccessibility (((BasePropertyDeclarationSyntax)element).Modifiers, ref acc, ref isStatic, ref result);
			if (element is BaseMethodDeclarationSyntax)
				AdjustAccessibility (((BaseMethodDeclarationSyntax)element).Modifiers, ref acc, ref isStatic, ref result);
			if (element is EnumDeclarationSyntax)
				AdjustAccessibility (((EnumDeclarationSyntax)element).Modifiers, ref acc, ref isStatic, ref result);
			if (element is DelegateDeclarationSyntax)
				AdjustAccessibility (((DelegateDeclarationSyntax)element).Modifiers, ref acc, ref isStatic, ref result);
			
			return result;
		}

		static bool IsConst (SyntaxTokenList modifiers)
		{
			return modifiers.Any (mod => mod.Kind () == Microsoft.CodeAnalysis.CSharp.SyntaxKind.ConstKeyword);
		}

		static bool IsConst (SyntaxNode element)
		{
			if (element is BaseFieldDeclarationSyntax)
				return IsConst (((BaseFieldDeclarationSyntax)element).Modifiers);
			if (element is LocalDeclarationStatementSyntax)
				return IsConst (((LocalDeclarationStatementSyntax)element).Modifiers);
			return false;
		}
		public static string GetStockIcon (this SyntaxNode element)
		{
			Accessibility acc = Accessibility.Public;
			bool isStatic = false;
			if (element is NamespaceDeclarationSyntax)
				return Namespace;
			
			if (element is AccessorDeclarationSyntax) {
				if (!GetAccessibility ((MemberDeclarationSyntax)element, out acc, out isStatic))
					GetAccessibility (element.Parent as MemberDeclarationSyntax, out acc, out isStatic);

				return "md-" + GetAccess (acc) + "method";
			}
			
			GetAccessibility (element, out acc, out isStatic);

			if (element is EnumDeclarationSyntax) {
				return "md-" + GetAccess (acc) + "enum";
			}

			if (element is TypeDeclarationSyntax) {
				var type = element as TypeDeclarationSyntax;
				switch (type.Keyword.Kind ()) {
				case SyntaxKind.ClassKeyword:
					return "md-" + GetAccess (acc) + "class";
				case SyntaxKind.StructKeyword:
					return "md-" + GetAccess (acc) + "struct";
				case SyntaxKind.InterfaceKeyword:
					return "md-" + GetAccess (acc) + "interface";
				case SyntaxKind.EnumKeyword:
					return "md-" + GetAccess (acc) + "enum";
				default:
					throw new ArgumentOutOfRangeException ();
				}
			}
			if (element is DelegateDeclarationSyntax)
				return "md-" + GetAccess (acc) + "delegate";

			// member accessibility
			GetAccessibility (element, out acc, out isStatic);

			if (element is BaseMethodDeclarationSyntax) {
				// TODO!
				// var method = element as MethodDeclarationSyntax;
				//				if (method.ParameterList.Parameters.First ())
				//	return extensionMethodIconTable [(int) (acc)];


				return "md-" + GetAccess (acc) + GetGlobal (isStatic) + "method";
			}

			if (element is PropertyDeclarationSyntax || element is IndexerDeclarationSyntax)
				return "md-" + GetAccess (acc) + GetGlobal (isStatic) + "property";
			if (element is EventDeclarationSyntax || element is EventFieldDeclarationSyntax)
				return "md-" + GetAccess (acc) + GetGlobal (isStatic) + "event";
			if (element is EnumMemberDeclarationSyntax)
				return "md-literal";
			if (element?.Parent?.Parent is FieldDeclarationSyntax || element?.Parent?.Parent is LocalDeclarationStatementSyntax) {
				if (IsConst (element.Parent.Parent))
					return "md-" + GetAccess (acc) + "literal";
			}

			if (element is FieldDeclarationSyntax || element is LocalDeclarationStatementSyntax) {
				if (IsConst (element))
					return "md-" + GetAccess (acc) + "literal";
			}

			return "md-" + GetAccess (acc) + GetGlobal (isStatic) + "field";
		}

		static string GetGlobal (bool isStatic)
		{
			return isStatic ? "static-" : "";
		}

		static string GetAccess (Accessibility acc)
		{
			return MonoDevelop.Ide.TypeSystem.Stock.GetAccess (acc);
		}

		internal static IconId GetStockIconForSymbolInfo (this DeclaredSymbolInfo symbol)
		{
			switch (symbol.Kind) {
			case DeclaredSymbolInfoKind.Class:
				return AstStockIcons.Class;
			case DeclaredSymbolInfoKind.Constant:
				return AstStockIcons.Field;
			case DeclaredSymbolInfoKind.Constructor:
				return AstStockIcons.Method;
			case DeclaredSymbolInfoKind.Delegate:
				return AstStockIcons.Delegate;
			case DeclaredSymbolInfoKind.Enum:
				return AstStockIcons.Enum;
			case DeclaredSymbolInfoKind.EnumMember:
				return AstStockIcons.Field;
			case DeclaredSymbolInfoKind.Event:
				return AstStockIcons.Event;
			case DeclaredSymbolInfoKind.Field:
				return AstStockIcons.Field;
			case DeclaredSymbolInfoKind.Indexer:
				return AstStockIcons.Method;
			case DeclaredSymbolInfoKind.Interface:
				return AstStockIcons.Interface;
			case DeclaredSymbolInfoKind.Method:
				return AstStockIcons.Method;
			case DeclaredSymbolInfoKind.Module:
				return AstStockIcons.Method;
			case DeclaredSymbolInfoKind.Property:
				return AstStockIcons.Property;
			case DeclaredSymbolInfoKind.Struct:
				return AstStockIcons.Struct;
			default:
				throw new ArgumentOutOfRangeException ();
			}
		}
	}
}