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

EqualityMembersGenerator.cs « MonoDevelop.CSharp.CodeGeneration « CSharpBinding « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d5849c638bddc1dd8afcae1ed03b41087338edc5 (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
//// 
//// EqualityMembersGenerator.cs
////  
//// Author:
////       Mike Krüger <mkrueger@novell.com>
//// 
//// Copyright (c) 2009 Novell, Inc (http://www.novell.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.Collections.Generic;
//using MonoDevelop.Core;
//using Microsoft.CodeAnalysis;
//using ICSharpCode.NRefactory.CSharp;
//using ICSharpCode.NRefactory6.CSharp;
//
//namespace MonoDevelop.CodeGeneration
//{
//	class EqualityMembersGenerator : ICodeGenerator
//	{
//		public string Icon {
//			get {
//				return "md-newmethod";
//			}
//		}
//		
//		public string Text {
//			get {
//				return GettextCatalog.GetString ("Equality members");
//			}
//		}
//		
//		public string GenerateDescription {
//			get {
//				return GettextCatalog.GetString ("Select members to include in equality.");
//			}
//		}
//		
//		public bool IsValid (CodeGenerationOptions options)
//		{
//			return new CreateEquality (options).IsValid ();
//		}
//		
//		public IGenerateAction InitalizeSelection (CodeGenerationOptions options, Gtk.TreeView treeView)
//		{
//			var createEventMethod = new CreateEquality (options);
//			createEventMethod.Initialize (treeView);
//			return createEventMethod;
//		}
//		
//		class CreateEquality : AbstractGenerateAction
//		{
//			public CreateEquality (CodeGenerationOptions options) : base (options)
//			{
//			}
//			
//			protected override IEnumerable<object> GetValidMembers ()
//			{
//				if (Options.EnclosingType == null || Options.EnclosingMember != null)
//					yield break;
//				foreach (IFieldSymbol field in Options.EnclosingType.GetMembers ().OfType<IFieldSymbol> ()) {
//					if (field.IsImplicitlyDeclared)
//						continue;
//					yield return field;
//				}
//
//				foreach (IPropertySymbol property in Options.EnclosingType.GetMembers ().OfType<IPropertySymbol> ()) {
//					if (property.IsImplicitlyDeclared)
//						continue;
//					if (property.GetMethod != null)
//						yield return property;
//				}
//			}
//			
//			protected override IEnumerable<string> GenerateCode (List<object> includedMembers)
//			{
//				// Genereate Equals
//				var methodDeclaration = new MethodDeclaration ();
//				methodDeclaration.Name = "Equals";
//
//				methodDeclaration.ReturnType = new PrimitiveType ("bool");
//				methodDeclaration.Modifiers = Modifiers.Public | Modifiers.Override;
//				methodDeclaration.Body = new BlockStatement ();
//				methodDeclaration.Parameters.Add (new ParameterDeclaration (new PrimitiveType ("object"), "obj"));
//				var paramId = new IdentifierExpression ("obj");
//				var ifStatement = new IfElseStatement ();
//				ifStatement.Condition = new BinaryOperatorExpression (paramId, BinaryOperatorType.Equality, new PrimitiveExpression (null));
//				ifStatement.TrueStatement = new ReturnStatement (new PrimitiveExpression (false));
//				methodDeclaration.Body.Statements.Add (ifStatement);
//
//				ifStatement = new IfElseStatement ();
//				var arguments = new List<Expression> ();
//				arguments.Add (new ThisReferenceExpression ());
//				arguments.Add (paramId.Clone ());
//				ifStatement.Condition = new InvocationExpression (new IdentifierExpression ("ReferenceEquals"), arguments);
//				ifStatement.TrueStatement = new ReturnStatement (new PrimitiveExpression (true));
//				methodDeclaration.Body.Statements.Add (ifStatement);
//
//				ifStatement = new IfElseStatement ();
//				ifStatement.Condition = new BinaryOperatorExpression (new InvocationExpression (new MemberReferenceExpression (paramId.Clone (), "GetType")), BinaryOperatorType.InEquality, new TypeOfExpression (new SimpleType (Options.EnclosingType.Name)));
//				ifStatement.TrueStatement = new ReturnStatement (new PrimitiveExpression (false));
//				methodDeclaration.Body.Statements.Add (ifStatement);
//
//				var varType = new SimpleType (Options.EnclosingType.Name);
//				var varDecl = new VariableDeclarationStatement (varType, "other", new CastExpression (varType.Clone (), paramId.Clone ()));
//				methodDeclaration.Body.Statements.Add (varDecl);
//				
//				var otherId = new IdentifierExpression ("other");
//				Expression binOp = null;
//				foreach (ISymbol member in includedMembers) {
//					Expression right = new BinaryOperatorExpression (new IdentifierExpression (member.Name), BinaryOperatorType.Equality, new MemberReferenceExpression (otherId.Clone (), member.Name));
//					binOp = binOp == null ? right : new BinaryOperatorExpression (binOp, BinaryOperatorType.ConditionalAnd, right);
//				}
//
//				methodDeclaration.Body.Statements.Add (new ReturnStatement (binOp));
//				yield return methodDeclaration.ToString ();
//
//				methodDeclaration = new MethodDeclaration ();
//				methodDeclaration.Name = "GetHashCode";
//
//				methodDeclaration.ReturnType = new PrimitiveType ("int");
//				methodDeclaration.Modifiers = Modifiers.Public | Modifiers.Override;
//				methodDeclaration.Body = new BlockStatement ();
//
//				binOp = null;
//				foreach (ISymbol member in includedMembers) {
//					Expression right;
//					right = new InvocationExpression (new MemberReferenceExpression (new IdentifierExpression (member.Name), "GetHashCode"));
//
//					var type = member.GetReturnType ();
//					if (type != null && type.TypeKind != TypeKind.Struct && type.TypeKind != TypeKind.Enum)
//						right = new ParenthesizedExpression (new ConditionalExpression (new BinaryOperatorExpression (new IdentifierExpression (member.Name), BinaryOperatorType.InEquality, new PrimitiveExpression (null)), right, new PrimitiveExpression (0)));
//
//					binOp = binOp == null ? right : new BinaryOperatorExpression (binOp, BinaryOperatorType.ExclusiveOr, right);
//				}
//				var uncheckedBlock = new BlockStatement ();
//				uncheckedBlock.Statements.Add (new ReturnStatement (binOp));
//
//				methodDeclaration.Body.Statements.Add (new UncheckedStatement (uncheckedBlock));
//				yield return methodDeclaration.ToString ();
//			}
//		}
//	}
//}