-
Notifications
You must be signed in to change notification settings - Fork 231
Expand file tree
/
Copy pathdataSet.js
More file actions
288 lines (237 loc) · 9.63 KB
/
dataSet.js
File metadata and controls
288 lines (237 loc) · 9.63 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
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
import { readFixedString } from './byteArrayParser.js';
/**
*
* The DataSet class encapsulates a collection of DICOM Elements and provides various functions
* to access the data in those elements
*
* Rules for handling padded spaces:
* DS = Strip leading and trailing spaces
* DT = Strip trailing spaces
* IS = Strip leading and trailing spaces
* PN = Strip trailing spaces
* TM = Strip trailing spaces
* AE = Strip leading and trailing spaces
* CS = Strip leading and trailing spaces
* SH = Strip leading and trailing spaces
* LO = Strip leading and trailing spaces
* LT = Strip trailing spaces
* ST = Strip trailing spaces
* UT = Strip trailing spaces
*
*/
function getByteArrayParser (element, defaultParser) {
return (element.parser !== undefined ? element.parser : defaultParser);
}
/**
* Constructs a new DataSet given byteArray and collection of elements
* @param byteArrayParser
* @param byteArray
* @param elements
* @constructor
*/
export default class DataSet {
constructor (byteArrayParser, byteArray, elements) {
this.byteArrayParser = byteArrayParser;
this.byteArray = byteArray;
this.elements = elements;
}
/**
* Finds the element for tag and returns an unsigned int 16 if it exists and has data
* @param tag The DICOM tag in the format xGGGGEEEE
* @param index the index of the value in a multivalued element. Default is index 0 if not supplied
* @returns {*} unsigned int 16 or undefined if the attribute is not present or has data of length 0
*/
uint16 (tag, index) {
var element = this.elements[tag];
index = (index !== undefined) ? index : 0;
if (element && element.length !== 0) {
return getByteArrayParser(element, this.byteArrayParser).readUint16(this.byteArray, element.dataOffset + (index * 2));
}
return undefined;
}
/**
* Finds the element for tag and returns an signed int 16 if it exists and has data
* @param tag The DICOM tag in the format xGGGGEEEE
* @param index the index of the value in a multivalued element. Default is index 0 if not supplied
* @returns {*} signed int 16 or undefined if the attribute is not present or has data of length 0
*/
int16 (tag, index) {
var element = this.elements[tag];
index = (index !== undefined) ? index : 0;
if (element && element.length !== 0) {
return getByteArrayParser(element, this.byteArrayParser).readInt16(this.byteArray, element.dataOffset + (index * 2));
}
return undefined;
}
/**
* Finds the element for tag and returns an unsigned int 32 if it exists and has data
* @param tag The DICOM tag in the format xGGGGEEEE
* @param index the index of the value in a multivalued element. Default is index 0 if not supplied
* @returns {*} unsigned int 32 or undefined if the attribute is not present or has data of length 0
*/
uint32 (tag, index) {
var element = this.elements[tag];
index = (index !== undefined) ? index : 0;
if (element && element.length !== 0) {
return getByteArrayParser(element, this.byteArrayParser).readUint32(this.byteArray, element.dataOffset + (index * 4));
}
return undefined;
}
/**
* Finds the element for tag and returns an signed int 32 if it exists and has data
* @param tag The DICOM tag in the format xGGGGEEEE
* @param index the index of the value in a multivalued element. Default is index 0 if not supplied
* @returns {*} signed int 32 or undefined if the attribute is not present or has data of length 0
*/
int32 (tag, index) {
var element = this.elements[tag];
index = (index !== undefined) ? index : 0;
if (element && element.length !== 0) {
return getByteArrayParser(element, this.byteArrayParser).readInt32(this.byteArray, element.dataOffset + (index * 4));
}
return undefined;
}
/**
* Finds the element for tag and returns a 32 bit floating point number (VR=FL) if it exists and has data
* @param tag The DICOM tag in the format xGGGGEEEE
* @param index the index of the value in a multivalued element. Default is index 0 if not supplied
* @returns {*} float or undefined if the attribute is not present or has data of length 0
*/
float (tag, index) {
var element = this.elements[tag];
index = (index !== undefined) ? index : 0;
if (element && element.length !== 0) {
return getByteArrayParser(element, this.byteArrayParser).readFloat(this.byteArray, element.dataOffset + (index * 4));
}
return undefined;
}
/**
* Finds the element for tag and returns a 64 bit floating point number (VR=FD) if it exists and has data
* @param tag The DICOM tag in the format xGGGGEEEE
* @param index the index of the value in a multivalued element. Default is index 0 if not supplied
* @returns {*} float or undefined if the attribute is not present or doesn't has data of length 0
*/
double (tag, index) {
var element = this.elements[tag];
index = (index !== undefined) ? index : 0;
if (element && element.length !== 0) {
return getByteArrayParser(element, this.byteArrayParser).readDouble(this.byteArray, element.dataOffset + (index * 8));
}
return undefined;
}
/**
* Returns the number of string values for the element
* @param tag The DICOM tag in the format xGGGGEEEE
* @returns {*} the number of string values or undefined if the attribute is not present or has zero length data
*/
numStringValues (tag) {
var element = this.elements[tag];
if (element && element.length > 0) {
var fixedString = readFixedString(this.byteArray, element.dataOffset, element.length);
var numMatching = fixedString.match(/\\/g);
if (numMatching === null) {
return 1;
}
return numMatching.length + 1;
}
return undefined;
}
/**
* Returns a string for the element. If index is provided, the element is assumed to be
* multi-valued and will return the component specified by index. Undefined is returned
* if there is no component with the specified index, the element does not exist or is zero length.
*
* Use this function for VR types of AE, CS, SH and LO
*
* @param tag The DICOM tag in the format xGGGGEEEE
* @param index the index of the desired value in a multi valued string or undefined for the entire string
* @returns {*}
*/
string (tag, index) {
var element = this.elements[tag];
if( element && element.Value ) return element.Value;
if (element && element.length > 0) {
var fixedString = readFixedString(this.byteArray, element.dataOffset, element.length);
if (index >= 0) {
var values = fixedString.split('\\');
// trim trailing spaces
return values[index].trim();
}
// trim trailing spaces
return fixedString.trim();
}
return undefined;
}
/**
* Returns a string with the leading spaces preserved and trailing spaces removed.
*
* Use this function to access data for VRs of type UT, ST and LT
*
* @param tag
* @param index
* @returns {*}
*/
text (tag, index) {
var element = this.elements[tag];
if (element && element.length > 0) {
var fixedString = readFixedString(this.byteArray, element.dataOffset, element.length);
if (index >= 0) {
var values = fixedString.split('\\');
return values[index].replace(/ +$/, '');
}
return fixedString.replace(/ +$/, '');
}
return undefined;
}
/**
* Parses a string to a float for the specified index in a multi-valued element. If index is not specified,
* the first value in a multi-valued VR will be parsed if present.
* @param tag The DICOM tag in the format xGGGGEEEE
* @param index the index of the desired value in a multi valued string or undefined for the first value
* @returns {*} a floating point number or undefined if not present or data not long enough
*/
floatString (tag, index) {
var element = this.elements[tag];
if (element && element.length > 0) {
index = (index !== undefined) ? index : 0;
var value = this.string(tag, index);
if (value !== undefined) {
return parseFloat(value);
}
}
return undefined;
}
/**
* Parses a string to an integer for the specified index in a multi-valued element. If index is not specified,
* the first value in a multi-valued VR will be parsed if present.
* @param tag The DICOM tag in the format xGGGGEEEE
* @param index the index of the desired value in a multi valued string or undefined for the first value
* @returns {*} an integer or undefined if not present or data not long enough
*/
intString (tag, index) {
var element = this.elements[tag];
if (element && element.length > 0) {
index = (index !== undefined) ? index : 0;
var value = this.string(tag, index);
if (value !== undefined) {
return parseInt(value);
}
}
return undefined;
}
/**
* Parses an element tag according to the 'AT' VR definition (VR=AT).
* @param {String} A DICOM tag with in the format xGGGGEEEE.
* @returns {String} A string representation of a data element tag or undefined if the field is not present or data is not long enough.
*/
attributeTag (tag) {
const element = this.elements[tag];
if (element && element.length === 4) {
const parser = getByteArrayParser(element, this.byteArrayParser).readUint16;
const bytes = this.byteArray;
const offset = element.dataOffset;
return `x${(`00000000${(parser(bytes, offset) * 256 * 256 + parser(bytes, offset + 2)).toString(16)}`).substr(-8)}`;
}
return undefined;
}
}