-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathReader.cs
112 lines (102 loc) · 5.3 KB
/
Reader.cs
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
// -------------------------------------------------------------------------------------------------
// <copyright file="Reader.cs" company="Starion Group S.A.">
//
// Copyright 2022-2025 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.Serializer.Dictionary
{
using System;
using System.Collections.Generic;
using SysML2.NET.Common;
/// <summary>
/// The purpose of the <see cref="IReader"/> is to read an <see cref="IData"/> and <see cref="IEnumerable{IData}"/>
/// from a <see cref="Dictionary{String, Object}"/>
/// </summary>
public class Reader : IReader
{
/// <summary>
/// Reads the <see cref="IData"/> from a <see cref="Dictionary{String, Object}"/>
/// </summary>
/// <param name="dictionary">
/// The subject <see cref="Dictionary{String, Object}"/> instance
/// </param>
/// <param name="dictionaryKind">
/// The <see cref="DictionaryKind"/> that specifies whether the source should be complex or simplified
/// </param>
/// <returns>
/// the resulting <see cref="IData"/>
/// </returns>
/// <remarks>
/// When the <see cref="DictionaryKind"/> is <see cref="DictionaryKind.Complex"/> then the values that are read from the
/// <see cref="Dictionary{String, Object}"/> are read as is. When the <see cref="DictionaryKind"/> is <see cref="DictionaryKind.Simplified"/>
/// then the following applies:
/// The values that are of the following types are read as is:
/// - Number, an abstract type, which has the subtypes Integer and Float
/// - String
/// - Boolean
/// - The spatial type Point
/// - Temporal types: Date, Time, LocalTime, DateTime, LocalDateTime and Duration
/// values of other types are converted from string, in case these are an <see cref="IEnumerable{T}"/> then
/// the values are converted from an Array of String using JSON notation, i.e. [ value_1, ..., value_n ]
/// </remarks>
public IData Read(Dictionary<string, object> dictionary, DictionaryKind dictionaryKind)
{
if (!dictionary.TryGetValue("@type", out object typeObject))
{
throw new ArgumentException("The type property is missing from the dictionary, the dictionary cannot be converted into a WhileLoopActionUsage");
}
var type = Convert.ToString(typeObject);
var reader = SysML2.NET.Serializer.Dictionary.Core.DTO.DictionaryReaderProvider.Provide(type);
return reader (dictionary, dictionaryKind);
}
/// <summary>
/// Reads the <see cref="IEnumerable{IData}"/> to from <see cref="IEnumerable{T}"/> of <see cref="Dictionary{String, Object}"/>
/// </summary>
/// <param name="dictionaries">
/// The subject list of <see cref="Dictionary{String, Object}"/> instances
/// </param>
/// <param name="dictionaryKind">
/// The <see cref="DictionaryKind"/> that specifies whether the source should be complex or simplified
/// </param>
/// <returns>
/// the resulting <see cref="IEnumerable{IData}"/>
/// </returns>
/// <remarks>
/// When the <see cref="DictionaryKind"/> is <see cref="DictionaryKind.Complex"/> then the values that are read from the
/// <see cref="Dictionary{String, Object}"/> are read as is. When the <see cref="DictionaryKind"/> is <see cref="DictionaryKind.Simplified"/>
/// then the following applies:
/// The values that are of the following types are read as is:
/// - Number, an abstract type, which has the subtypes Integer and Float
/// - String
/// - Boolean
/// - The spatial type Point
/// - Temporal types: Date, Time, LocalTime, DateTime, LocalDateTime and Duration
/// values of other types are converted from string, in case these are an <see cref="IEnumerable{T}"/> then
/// the values are converted from an Array of String using JSON notation, i.e. [ value_1, ..., value_n ]
/// </remarks>
public IEnumerable<IData> Read(IEnumerable<Dictionary<string, object>> dictionaries, DictionaryKind dictionaryKind)
{
var result = new List<IData>();
foreach (var dictionary in dictionaries)
{
var dataItem = this.Read(dictionary, dictionaryKind);
result.Add(dataItem);
}
return result;
}
}
}