-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathClassExtensions.cs
More file actions
135 lines (123 loc) · 5.28 KB
/
ClassExtensions.cs
File metadata and controls
135 lines (123 loc) · 5.28 KB
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
// -------------------------------------------------------------------------------------------------
// <copyright file="ClassExtensions.cs" company="Starion Group S.A.">
//
// Copyright 2022-2026 Starion Group S.A.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// </copyright>
// ------------------------------------------------------------------------------------------------
namespace SysML2.NET.CodeGenerator.Extensions
{
using System.Collections.ObjectModel;
using System.Linq;
using uml4net.Classification;
using uml4net.Extensions;
using uml4net.StructuredClassifiers;
/// <summary>
/// Extension methods for <see cref="IClass" /> interface
/// </summary>
public static class ClassExtensions
{
/// <summary>
/// Queries all the properties that are implemented by the class directly or through superclasses
/// or interface implementations EXCLUDING IsDerived
/// </summary>
/// <param name="class">
/// The <see cref="IClass" /> from which to query the properties
/// </param>
/// <returns>
/// A <see cref="ReadOnlyCollection{T}" /> of <see cref="IProperty" />
/// </returns>
public static ReadOnlyCollection<IProperty> QueryAllNonDerivedProperties(this IClass @class)
{
var properties = @class.QueryAllProperties()
.Where(x => !x.IsDerived);
return properties.ToList().AsReadOnly();
}
/// <summary>
/// Queries all the properties that are implemented by the class directly or through superclasses
/// or interface implementations EXCLUDING IsDerived and EXCLUDING properties that have been
/// redefined in the context of the current class
/// </summary>
/// <param name="class">
/// The <see cref="IClass" /> from which to query the properties
/// </param>
/// <returns>
/// A <see cref="ReadOnlyCollection{T}" /> of <see cref="IProperty" />
/// </returns>
public static ReadOnlyCollection<IProperty> QueryAllNonDerivedNonRedefinedProperties(this IClass @class)
{
var properties = @class.QueryAllProperties()
.Where(x => !x.IsDerived)
.Where(x => !x.TryQueryRedefinedByProperty(@class, out _))
.OrderBy(x => x.Name);
return properties.ToList().AsReadOnly();
}
/// <summary>
/// Counts and returns to amount of non derived properties
/// </summary>
/// <param name="class">
/// The subject <see cref="IClass" />
/// </param>
/// <returns>
/// the amount of non derived properties
/// </returns>
public static int CountAllNonDerivedProperties(this IClass @class)
{
return @class.QueryAllNonDerivedProperties().Count;
}
/// <summary>
/// Counts and returns to amount of non derived properties
/// </summary>
/// <param name="class">
/// The subject <see cref="IClass" />
/// </param>
/// <returns>
/// the amount of non derived properties
/// </returns>
public static int CountAllNonDerivedNonRedefinedProperties(this IClass @class)
{
return @class.QueryAllNonDerivedNonRedefinedProperties().Count;
}
/// <summary>
/// Query the name of the internal interface to implement for an <see cref="IClass" />
/// </summary>
/// <param name="umlClass">The <see cref="IClass" /></param>
/// <returns>The name of the internal interface to implement, if any</returns>
public static string QueryInternalInterfaceName(this IClass umlClass)
{
var classifiers = umlClass.QueryAllGeneralClassifiers();
if (classifiers.Any(x => x.Name == "Relationship"))
{
return "IContainedRelationship";
}
return classifiers.Any(x => x.Name == "Element") ? "IContainedElement" : string.Empty;
}
/// <summary>
/// Asserts that an <see cref="IClass" /> is a subclass of another
/// </summary>
/// <param name="umlClass">The <see cref="IClass" /> to check</param>
/// <param name="potentialSuperClass">
/// The <see cref="IClass" /> that is potentially a super class of
/// <paramref name="umlClass" />
/// </param>
/// <returns>
/// True if the <paramref name="potentialSuperClass" /> is a super class of the <paramref name="umlClass" />
/// </returns>
public static bool QueryIsSubclassOf(this IClass umlClass, IClass potentialSuperClass)
{
return umlClass.QueryAllGeneralClassifiers().Contains(potentialSuperClass);
}
}
}