-
Notifications
You must be signed in to change notification settings - Fork 1
/
AppCenterProperties.cs
289 lines (243 loc) · 8.49 KB
/
AppCenterProperties.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
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
using System;
using System.Collections.Generic;
using System.Reflection;
using System.Text;
namespace kr.bbon.Xamarin.Forms
{
public class AppCenterProperties
{
private const int MAX_ITEMS_COUNT = 20;
private const int MAX_CHARACTERS = 125;
private const string MESSAGE_KEY = "message";
private const string TYPE_KEY = "type";
private const string METHOD_KEY = "method";
/// <summary>
/// AppCenterProperties 클래스의 인스턴스를 초기화합니다.
/// </summary>
/// <param name="isKeyIgnoreCase">키 대소문자 무시여부</param>
public AppCenterProperties(bool isKeyIgnoreCase)
{
this.isKeyIgnoreCase = isKeyIgnoreCase;
internalDictionary = new Dictionary<string, string>();
}
/// <summary>
/// AppCenterProperties 클래스의 인스턴스를 초기화합니다.
/// <para>키는 대소문자를 구분하지 않습니다.</para>
/// </summary>
public AppCenterProperties()
: this(true)
{
}
public static AppCenterProperties Create(bool isKeyIgnoreCase)
{
return new AppCenterProperties(isKeyIgnoreCase);
}
public static AppCenterProperties Create()
{
return new AppCenterProperties();
}
/// <summary>
/// 키에 해당하는 값을 나타냅니다.
/// <para>키에 해당하는 값이 없으면 null 입니다.</para>
/// </summary>
/// <param name="key">키</param>
/// <returns></returns>
public string this[string key]
{
get => TryGet(key);
set => AddOrUpdateProperty(key, value);
}
/// <summary>
/// 키에 해당하는 항목이 있는지 확인합니다.
/// </summary>
/// <param name="key">키</param>
/// <returns></returns>
public bool ContainsKey(string key)
{
var _key = NormalizeKey(key);
return internalDictionary.ContainsKey(_key);
}
/// <summary>
/// 컬렉션이 비었는지를 확인합니다.
/// </summary>
/// <returns></returns>
public bool IsEmpty() => internalDictionary.Count == 0;
/// <summary>
/// 항목을 추가하거나, 갱신합니다.
/// <para>키로 항목을 검색해서 없으면 추가하고 있으면 갱신합니다.</para>
/// </summary>
/// <param name="key">키</param>
/// <param name="value">값</param>
/// <returns></returns>
public AppCenterProperties AddOrUpdateProperty(string key, string value)
{
var _key = NormalizeKey(key);
var _value = AdjustStringValue(value);
if (internalDictionary.ContainsKey(_key))
{
internalDictionary[_key] = _value;
}
else
{
internalDictionary.Add(_key, _value);
}
return this;
}
/// <summary>
/// 항목을 추가합니다.
/// <para>키에 해당하는 항목이 있으면 무시됩니다.</para>
/// </summary>
/// <param name="key">키</param>
/// <param name="value">값</param>
/// <returns></returns>
public AppCenterProperties AddProperty(string key, string value)
{
var _key = NormalizeKey(key);
var _value = AdjustStringValue(value);
if (!ContainsKey(_key))
{
internalDictionary.Add(_key, _value);
}
return this;
}
/// <summary>
/// 항목을 갱신합니다.
/// <para>키에 해당하는 항목이 없으면 무시됩니다.</para>
/// </summary>
/// <param name="key">키</param>
/// <param name="value"></param>
/// <returns></returns>
public AppCenterProperties UpdateProperty(string key, string value)
{
var _key = NormalizeKey(key);
var _value = AdjustStringValue(value);
if (ContainsKey(_key))
{
internalDictionary[_key] = _value;
}
return this;
}
/// <summary>
/// 항목을 제거합니다.
/// <para>키에 해당하는 항목이 없으면 무시됩니다.</para>
/// </summary>
/// <param name="key"></param>
/// <param name="value"></param>
/// <returns></returns>
public AppCenterProperties RemoveProperty(string key, string value)
{
var _key = NormalizeKey(key);
if (!ContainsKey(_key))
{
internalDictionary.Remove(_key);
}
return this;
}
/// <summary>
/// 키에 해당하는 항목의 값을 가져옵니다.
/// <para>키에 해당하는 항목이 없으면 null입니다.</para>
/// </summary>
/// <param name="key">키</param>
/// <returns></returns>
public string TryGet(string key)
{
var _key = NormalizeKey(key);
if (ContainsKey(_key))
{
return internalDictionary[_key];
}
return null;
}
public AppCenterProperties AddMessage(string message)
{
AddOrUpdateProperty(MESSAGE_KEY, message);
return this;
}
public AppCenterProperties AddType(Type type)
{
return AddType(type.GetTypeInfo().FullName);
}
public AppCenterProperties AddType(string typeName)
{
AddOrUpdateProperty(TYPE_KEY, typeName);
return this;
}
public AppCenterProperties AddMethod(string methodName)
{
AddOrUpdateProperty(METHOD_KEY, methodName);
return this;
}
/// <summary>
/// 컬렉션을 초기화합니다.
/// </summary>
/// <returns></returns>
public AppCenterProperties Reset()
{
internalDictionary.Clear();
return this;
}
public IDictionary<string, string> ToDictionary()
{
return internalDictionary;
}
public override string ToString()
{
var builder = new StringBuilder();
builder.Append("{");
foreach (var item in internalDictionary)
{
builder.AppendLine("\t{");
builder.AppendLine($"\t\t\"{item.Key}\": \"{item.Value}\"");
builder.AppendLine("\t},");
}
if (builder.Length > 1)
{
builder.Remove(builder.Length - 1, 1);
}
builder.Append("}");
return builder.ToString();
}
private string NormalizeKey(string key)
{
if (String.IsNullOrWhiteSpace(key))
{
throw new ArgumentException("키는 빈값을 허용하지 않습니다.", nameof(key));
}
var _key = key.Trim();
CheckMaxCharacters(_key);
if (isKeyIgnoreCase)
{
return _key.ToLower();
}
return _key;
}
private string AdjustStringValue(string value)
{
if (value == null || value.Length == 0) { return value; }
var substringLength = value.Length;
if (substringLength > MAX_CHARACTERS)
{
substringLength = MAX_CHARACTERS;
}
return value
.Substring(0, substringLength)
.Trim();
}
private void CheckMaxItemsCount()
{
if (internalDictionary.Count >= MAX_ITEMS_COUNT)
{
throw new NotSupportedException($"추가 속성은 {MAX_ITEMS_COUNT}개 이하의 항목으로 구성되어야 합니다. https://docs.microsoft.com/en-us/appcenter/diagnostics/limitations");
}
}
private void CheckMaxCharacters(string value)
{
if (value.Length > MAX_CHARACTERS)
{
throw new NotSupportedException($"키, 값의 문자열은 {MAX_CHARACTERS}자 이하의 길이로 입력되어야 합니다. https://docs.microsoft.com/en-us/appcenter/diagnostics/limitations");
}
}
private readonly IDictionary<string, string> internalDictionary;
private bool isKeyIgnoreCase = true;
}
}