-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathCommonNameFormat.cs
396 lines (364 loc) · 12.7 KB
/
CommonNameFormat.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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
// ------------------------------------------------------
// DVTk - The Healthcare Validation Toolkit (www.dvtk.org)
// Copyright © 2009 DVTk
// ------------------------------------------------------
// This file is part of DVTk.
//
// DVTk is free software; you can redistribute it and/or modify it under the terms of the GNU
// Lesser General Public License as published by the Free Software Foundation; either version 3.0
// of the License, or (at your option) any later version.
//
// DVTk is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
// the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
// General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License along with this
// library; if not, see <http://www.gnu.org/licenses/>
using System;
namespace Dvtk.CommonDataFormat
{
/// <summary>
/// Summary description for CommonNameFormat.
/// </summary>
public class CommonNameFormat : BaseCommonDataFormat
{
private System.String _surname = System.String.Empty;
private System.String _firstName = System.String.Empty;
private System.String _middleName = System.String.Empty;
private System.String _prefix = System.String.Empty;
private System.String _suffix = System.String.Empty;
private System.String _degree = System.String.Empty;
private System.String _ideographicName = System.String.Empty;
private System.String _phoneticName = System.String.Empty;
/// <summary>
/// Class constructor.
/// </summary>
public CommonNameFormat() { }
#region base class overrides
/// <summary>
/// Convert from Common Data Format to DICOM format.
/// </summary>
/// <returns>DICOM format.</returns>
public override System.String ToDicomFormat()
{
// format the name using all the components
System.String nameComponents = _surname + "^" +
_firstName + "^" +
_middleName + "^" +
_prefix + "^" +
_suffix;
// trim off any trailing component delimiters
System.String dicomName = nameComponents.TrimEnd('^');
// add the ideographic name representation
if (_ideographicName != System.String.Empty)
{
dicomName += ("=" + _ideographicName);
}
// add the phonetic name representation
if (_phoneticName != System.String.Empty)
{
if (_ideographicName == System.String.Empty)
{
// add empty ideographic name
dicomName += "=";
}
dicomName += ("=" + _phoneticName);
}
return dicomName;
}
/// <summary>
/// Convert from DICOM format to Common Data Format.
/// </summary>
/// <param name="dicomFormat">DICOM format.</param>
public override void FromDicomFormat(System.String dicomFormat)
{
// remove any trailing spaces from the name
dicomFormat = dicomFormat.TrimEnd(' ');
// split the incoming dicom format into the three component groups
System.String[] nameComponentGroups = new System.String[3];
nameComponentGroups = dicomFormat.Split('=');
// split the first component group into the five components
if (nameComponentGroups.Length > 0)
{
System.String[] nameComponents = new System.String[5];
nameComponents = nameComponentGroups[0].Split('^');
// save the individual components
switch (nameComponents.Length)
{
case 1:
_surname = nameComponents[0];
break;
case 2:
_surname = nameComponents[0];
_firstName = nameComponents[1];
break;
case 3:
_surname = nameComponents[0];
_firstName = nameComponents[1];
_middleName = nameComponents[2];
break;
case 4:
_surname = nameComponents[0];
_firstName = nameComponents[1];
_middleName = nameComponents[2];
_prefix = nameComponents[3];
break;
case 5:
_surname = nameComponents[0];
_firstName = nameComponents[1];
_middleName = nameComponents[2];
_prefix = nameComponents[3];
_suffix = nameComponents[4];
break;
default:
break;
}
// save the ideographic name - if present
if (nameComponentGroups.Length > 1)
{
_ideographicName = nameComponentGroups[1];
}
// save the phonetic name - if present
if (nameComponentGroups.Length > 2)
{
_phoneticName = nameComponentGroups[2];
}
}
}
/// <summary>
/// Convert from Common Data Format to HL7 format.
/// </summary>
/// <returns>HL7 format.</returns>
public override System.String ToHl7Format()
{
// format the name using all the components
System.String nameComponents = _surname + "^" +
_firstName + "^" +
_middleName + "^" +
_suffix + "^" +
_prefix + "^" +
_degree;
// trim off any trailing component delimiters
System.String hl7Name = nameComponents.TrimEnd('^');
return hl7Name;
}
/// <summary>
/// Convert from HL7 format to Common Data Format.
/// </summary>
/// <param name="hl7Format">HL7 format.</param>
public override void FromHl7Format(System.String hl7Format)
{
// <family name (ST)> ^
// <given name (ST)> ^
// <middle initial or name (ST)> ^
// <suffix (e.g., JR or III) (ST)> ^
// <prefix (e.g., DR) (ST)> ^
// <degree (e.g., MD) (ST)>
// remove any trailing spaces from the name
hl7Format = hl7Format.TrimEnd(' ');
// split the HL7 format into the six components
System.String[] nameComponents = new System.String[6];
nameComponents = hl7Format.Split('^');
// save the individual components
switch (nameComponents.Length)
{
case 1:
_surname = nameComponents[0];
break;
case 2:
_surname = nameComponents[0];
_firstName = nameComponents[1];
break;
case 3:
_surname = nameComponents[0];
_firstName = nameComponents[1];
_middleName = nameComponents[2];
break;
case 4:
_surname = nameComponents[0];
_firstName = nameComponents[1];
_middleName = nameComponents[2];
_suffix = nameComponents[3];
break;
case 5:
_surname = nameComponents[0];
_firstName = nameComponents[1];
_middleName = nameComponents[2];
_suffix = nameComponents[3];
_prefix = nameComponents[4];
break;
case 6:
_surname = nameComponents[0];
_firstName = nameComponents[1];
_middleName = nameComponents[2];
_suffix = nameComponents[3];
_prefix = nameComponents[4];
_degree = nameComponents[5];
break;
default:
break;
}
}
/// <summary>
/// Check if the objects are equal.
/// </summary>
/// <param name="obj">Comparison object.</param>
/// <returns>bool indicating true = equal or false = not equal.</returns>
public override bool Equals(object obj)
{
bool equals = false;
if (obj is CommonNameFormat)
{
CommonNameFormat thatCommonName = (CommonNameFormat)obj;
if ((this.Surname == thatCommonName.Surname) &&
(this.FirstName == thatCommonName.FirstName) &&
(this.MiddleName == thatCommonName.MiddleName) &&
(this.Prefix == thatCommonName.Prefix) &&
(this.Suffix == thatCommonName.Suffix) &&
(this.Degree == thatCommonName.Degree))
equals = true;
}
return equals;
}
/// <summary>
/// Get HashCode.
/// </summary>
/// <returns>Base HashCode value.</returns>
public override int GetHashCode()
{
return base.GetHashCode();
}
/// <summary>
/// Console Display the Common Data Format content - for debugging purposes.
/// </summary>
public override void ConsoleDisplay()
{
Console.WriteLine("CommonNameFormat...");
Console.WriteLine("Surname: \"{0}\"", _surname);
Console.WriteLine("FirstName: \"{0}\"", _firstName);
Console.WriteLine("MiddleName: \"{0}\"", _middleName);
Console.WriteLine("Prefix: \"{0}\"", _prefix);
Console.WriteLine("Suffix: \"{0}\"", _suffix);
Console.WriteLine("Degree: \"{0}\"", _degree);
Console.WriteLine("DicomNameFormat...");
Console.WriteLine("PersonName: \"{0}\"", this.ToDicomFormat());
Console.WriteLine("Hl7NameFormat...");
Console.WriteLine("PersonName: \"{0}\"", this.ToHl7Format());
}
#endregion
#region properties
/// <summary>
/// Surname Property
/// </summary>
public System.String Surname
{
set
{
_surname = value.Trim();
}
get
{
return _surname;
}
}
/// <summary>
/// FirstName Property
/// </summary>
public System.String FirstName
{
set
{
_firstName = value.Trim();
}
get
{
return _firstName;
}
}
/// <summary>
/// MiddleName Property
/// </summary>
public System.String MiddleName
{
set
{
_middleName = value.Trim();
}
get
{
return _middleName;
}
}
/// <summary>
/// Prefix Property
/// </summary>
public System.String Prefix
{
set
{
_prefix = value.Trim();
}
get
{
return _prefix;
}
}
/// <summary>
/// Suffix Property
/// </summary>
public System.String Suffix
{
set
{
_suffix = value.Trim();
}
get
{
return _suffix;
}
}
/// <summary>
/// Degree Property
/// </summary>
public System.String Degree
{
set
{
_degree = value.Trim();
}
get
{
return _degree;
}
}
/// <summary>
/// Ideographic Name Representation Property
/// </summary>
public System.String IdeographicName
{
set
{
_ideographicName = value;
}
get
{
return _ideographicName;
}
}
/// <summary>
/// Phonetic Name Representation Property
/// </summary>
public System.String PhoneticName
{
set
{
_phoneticName = value;
}
get
{
return _phoneticName;
}
}
#endregion
}
}