-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathAnnotatingElementExtensions.cs
More file actions
154 lines (131 loc) · 7.1 KB
/
AnnotatingElementExtensions.cs
File metadata and controls
154 lines (131 loc) · 7.1 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
// -------------------------------------------------------------------------------------------------
// <copyright file="AnnotatingElementExtensions.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>
// ------------------------------------------------------------------------------------------------
// ------------------------------------------------------------------------------------------------
// --------THIS IS AN AUTOMATICALLY GENERATED FILE. ANY MANUAL CHANGES WILL BE OVERWRITTEN!--------
// ------------------------------------------------------------------------------------------------
namespace SysML2.NET.Serializer.Xmi.Extensions
{
using System;
using System.Collections.Generic;
using Microsoft.Extensions.Logging;
using SysML2.NET.Common;
/// <summary>
/// Provides extensions methods for the <see cref="{SysML2.NET.Core.POCO.Root.Annotations.{this.Name}}"/> to help resolve reference for properties
/// </summary>
public static class AnnotatingElementExtensions
{
/// <summary>
/// Resolve and assign single reference value for a specific property
/// </summary>
/// <param name="poco">The <see cref="SysML2.NET.Core.POCO.Root.Annotations.AnnotatingElement"/> that should have the value of a property to be set</param>
/// <param name="propertyName">The name of the property</param>
/// <param name="reference">The identifier of the <see cref="IData"/> value to set</param>
/// <param name="xmiDataCache">The <see cref="IXmiDataCache"/></param>
/// <param name="logger">The <see cref="ILogger" /> used to produce log statement</param>
public static void ResolveAndAssignSingleValueReference(this SysML2.NET.Core.POCO.Root.Annotations.AnnotatingElement poco, string propertyName, Guid reference, IXmiDataCache xmiDataCache, ILogger logger)
{
if (poco == null)
{
throw new ArgumentNullException(nameof(poco));
}
if (xmiDataCache == null)
{
throw new ArgumentNullException(nameof(xmiDataCache));
}
if (logger == null)
{
throw new ArgumentNullException(nameof(logger));
}
switch (propertyName)
{
case "owningRelationship":
{
if (!xmiDataCache.TryGetData(reference, out var referencedData))
{
logger.LogWarning("The reference to [{Reference}] for property [owningRelationship] on element type [AnnotatingElement] with id [{Id}] was not found in the cache, probably because its type is not supported.",
reference, poco.Id);
return;
}
if (referencedData is not SysML2.NET.Core.POCO.Root.Elements.IRelationship owningRelationshipReference)
{
throw new InvalidOperationException($"The referenced element with the id [{reference}] is a {referencedData.GetType().Name}, expected type: an IRelationship");
}
poco.OwningRelationship = owningRelationshipReference;
return;
}
default:
throw new ArgumentOutOfRangeException(nameof(propertyName), propertyName, "Unknown property name");
}
}
/// <summary>
/// Resolve and assign multiple references value for a specific property
/// </summary>
/// <param name="poco">The <see cref="SysML2.NET.Core.POCO.Root.Annotations.AnnotatingElement"/> that should have the value of a property to be set</param>
/// <param name="propertyName">The name of the property</param>
/// <param name="references">The collection of identifier values to set</param>
/// <param name="xmiDataCache">The <see cref="IXmiDataCache"/></param>
/// <param name="logger">The <see cref="ILogger" /> used to produce log statement</param>
public static void ResolveAndAssignMultipleValueReferences(this SysML2.NET.Core.POCO.Root.Annotations.AnnotatingElement poco, string propertyName, IReadOnlyCollection<Guid> references, IXmiDataCache xmiDataCache, ILogger logger)
{
if (poco == null)
{
throw new ArgumentNullException(nameof(poco));
}
if (references == null)
{
throw new ArgumentNullException(nameof(references));
}
if (xmiDataCache == null)
{
throw new ArgumentNullException(nameof(xmiDataCache));
}
if (logger == null)
{
throw new ArgumentNullException(nameof(logger));
}
switch (propertyName)
{
case "ownedRelationship":
{
foreach (var reference in references)
{
if (!xmiDataCache.TryGetData(reference, out var referencedData))
{
logger.LogWarning("The reference to [{Reference}] for property [ownedRelationship] on element type [AnnotatingElement] with id [{Id}] was not found in the cache, probably because its type is not supported.",
reference, poco.Id);
continue;
}
if (referencedData is not SysML2.NET.Core.POCO.Root.Elements.IRelationship ownedRelationshipReference)
{
throw new InvalidOperationException($"The referenced element with the id [{reference}] is a {referencedData.GetType().Name}, expected type: an IRelationship");
}
poco.OwnedRelationship.Add(ownedRelationshipReference);
}
return;
}
default:
throw new ArgumentOutOfRangeException(nameof(propertyName), propertyName, "Unknown property name");
}
}
}
}
// ------------------------------------------------------------------------------------------------
// --------THIS IS AN AUTOMATICALLY GENERATED FILE. ANY MANUAL CHANGES WILL BE OVERWRITTEN!--------
// ------------------------------------------------------------------------------------------------