forked from grailbio/go-dicom
-
Notifications
You must be signed in to change notification settings - Fork 1
/
writer.go
462 lines (442 loc) · 13.7 KB
/
writer.go
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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
package dicom
import (
"encoding/binary"
"fmt"
"io"
"os"
"strings"
"github.com/hxhxhx88/go-dicom/dicomio"
"github.com/hxhxhx88/go-dicom/dicomlog"
"github.com/hxhxhx88/go-dicom/dicomtag"
)
func WriteFileHeader(e *dicomio.Encoder, metaElems []*Element) {
WriteFileHeaderWithOption(e, metaElems, WriteOption{
SkipVerifyingVR: false,
})
}
// WriteFileHeader produces a DICOM file header. metaElems[] is be a list of
// elements to be embedded in the header part. Every element in metaElems[]
// must have Tag.Group==2. It must contain at least the following three
// elements: TagTransferSyntaxUID, TagMediaStorageSOPClassUID,
// TagMediaStorageSOPInstanceUID. The list may contain other meta elements as
// long as their Tag.Group==2; they are added to the header.
//
// Errors are reported via e.Error().
//
// Consult the following page for the DICOM file header format.
//
// http://dicom.nema.org/dicom/2013/output/chtml/part10/chapter_7.html
func WriteFileHeaderWithOption(e *dicomio.Encoder, metaElems []*Element, opt WriteOption) {
e.PushTransferSyntax(binary.LittleEndian, dicomio.ExplicitVR)
defer e.PopTransferSyntax()
subEncoder := dicomio.NewBytesEncoder(binary.LittleEndian, dicomio.ExplicitVR)
tagsUsed := make(map[dicomtag.Tag]bool)
tagsUsed[dicomtag.FileMetaInformationGroupLength] = true
writeRequiredMetaElem := func(tag dicomtag.Tag) {
if elem, err := FindElementByTag(metaElems, tag); err == nil {
WriteElementWithOption(subEncoder, elem, opt)
} else {
subEncoder.SetErrorf("%v not found in metaelems: %v", dicomtag.DebugString(tag), err)
}
tagsUsed[tag] = true
}
writeOptionalMetaElem := func(tag dicomtag.Tag, defaultValue interface{}) {
if elem, err := FindElementByTag(metaElems, tag); err == nil {
WriteElementWithOption(subEncoder, elem, opt)
} else {
WriteElementWithOption(subEncoder, MustNewElement(tag, defaultValue), opt)
}
tagsUsed[tag] = true
}
writeOptionalMetaElem(dicomtag.FileMetaInformationVersion, []byte("0 1"))
if opt.DefaultMediaStorageSOPClassUID == "" {
writeRequiredMetaElem(dicomtag.MediaStorageSOPClassUID)
} else {
writeOptionalMetaElem(dicomtag.MediaStorageSOPClassUID, opt.DefaultMediaStorageSOPClassUID)
}
if opt.DefaultMediaStorageSOPInstanceUID == "" {
writeRequiredMetaElem(dicomtag.MediaStorageSOPInstanceUID)
} else {
writeOptionalMetaElem(dicomtag.MediaStorageSOPInstanceUID, opt.DefaultMediaStorageSOPInstanceUID)
}
if opt.DefaultTransferSyntaxUID == "" {
writeRequiredMetaElem(dicomtag.TransferSyntaxUID)
} else {
writeOptionalMetaElem(dicomtag.TransferSyntaxUID, opt.DefaultTransferSyntaxUID)
}
writeOptionalMetaElem(dicomtag.ImplementationClassUID, GoDICOMImplementationClassUID)
writeOptionalMetaElem(dicomtag.ImplementationVersionName, GoDICOMImplementationVersionName)
for _, elem := range metaElems {
if elem.Tag.Group == dicomtag.MetadataGroup {
if _, ok := tagsUsed[elem.Tag]; !ok {
WriteElementWithOption(subEncoder, elem, opt)
}
}
}
if subEncoder.Error() != nil {
e.SetError(subEncoder.Error())
return
}
metaBytes := subEncoder.Bytes()
e.WriteZeros(128)
e.WriteString("DICM")
WriteElementWithOption(e, MustNewElement(dicomtag.FileMetaInformationGroupLength, uint32(len(metaBytes))), opt)
e.WriteBytes(metaBytes)
}
func encodeElementHeader(e *dicomio.Encoder, tag dicomtag.Tag, vr string, vl uint32) {
doassert(vl == undefinedLength || vl%2 == 0, vl)
e.WriteUInt16(tag.Group)
e.WriteUInt16(tag.Element)
_, implicit := e.TransferSyntax()
if tag.Group == itemSeqGroup {
implicit = dicomio.ImplicitVR
}
if implicit == dicomio.ExplicitVR {
doassert(len(vr) == 2, vr)
e.WriteString(vr)
switch vr {
case "NA", "OB", "OD", "OF", "OL", "OW", "SQ", "UN", "UC", "UR", "UT":
e.WriteZeros(2) // two bytes for "future use" (0000H)
e.WriteUInt32(vl)
default:
e.WriteUInt16(uint16(vl))
}
} else {
doassert(implicit == dicomio.ImplicitVR, implicit)
e.WriteUInt32(vl)
}
}
func writeRawItem(e *dicomio.Encoder, data []byte) {
encodeElementHeader(e, dicomtag.Item, "NA", uint32(len(data)))
e.WriteBytes(data)
}
func writeBasicOffsetTable(e *dicomio.Encoder, offsets []uint32) {
byteOrder, _ := e.TransferSyntax()
subEncoder := dicomio.NewBytesEncoder(byteOrder, dicomio.ImplicitVR)
for _, offset := range offsets {
subEncoder.WriteUInt32(offset)
}
writeRawItem(e, subEncoder.Bytes())
}
func WriteElement(e *dicomio.Encoder, elem *Element) {
WriteElementWithOption(e, elem, WriteOption{
SkipVerifyingVR: false,
})
}
type WriteOption struct {
SkipVerifyingVR bool
SkipEncodingElementWithUndefinedLength bool
DefaultMediaStorageSOPClassUID string
DefaultMediaStorageSOPInstanceUID string
DefaultTransferSyntaxUID string
}
// WriteElement encodes one data element. Errors are reported through e.Error()
// and/or E.Finish().
//
// REQUIRES: Each value in values[] must match the VR of the tag. E.g., if tag
// is for UL, then each value must be uint32.
func WriteElementWithOption(e *dicomio.Encoder, elem *Element, opt WriteOption) {
vr := elem.VR
entry, err := dicomtag.Find(elem.Tag)
if vr == "" {
if err == nil {
vr = entry.VR
} else {
vr = "UN"
}
} else {
if err == nil && entry.VR != vr {
if !opt.SkipVerifyingVR && dicomtag.GetVRKind(elem.Tag, entry.VR) != dicomtag.GetVRKind(elem.Tag, vr) {
// The golang repl. is different. We can't continue.
e.SetErrorf("dicom.WriteElement: VR value mismatch for tag %s. Element.VR=%v, but DICOM standard defines VR to be %v", dicomtag.DebugString(elem.Tag), vr, entry.VR)
return
}
dicomlog.Vprintf(1, "dicom.WriteElement: VR value mismatch for tag %s. Element.VR=%v, but DICOM standard defines VR to be %v (continuing)", dicomtag.DebugString(elem.Tag), vr, entry.VR)
}
}
doassert(vr != "", vr)
if elem.Tag == dicomtag.PixelData {
if len(elem.Value) != 1 {
// TODO(saito) Use of PixelDataInfo is a temp hack. Come up with a more proper solution.
e.SetError(fmt.Errorf("PixelData element must have one value of type PixelDataInfo"))
}
image, ok := elem.Value[0].(PixelDataInfo)
if !ok {
e.SetError(fmt.Errorf("PixelData element must have one value of type PixelDataInfo"))
}
if elem.UndefinedLength {
encodeElementHeader(e, elem.Tag, vr, undefinedLength)
writeBasicOffsetTable(e, image.Offsets)
for _, image := range image.Frames {
writeRawItem(e, image)
}
encodeElementHeader(e, dicomtag.SequenceDelimitationItem, "" /*not used*/, 0)
} else {
doassert(len(image.Frames) == 1, image.Frames) // TODO
encodeElementHeader(e, elem.Tag, vr, uint32(len(image.Frames[0])))
e.WriteBytes(image.Frames[0])
}
return
}
if vr == "SQ" {
if elem.UndefinedLength {
encodeElementHeader(e, elem.Tag, vr, undefinedLength)
for _, value := range elem.Value {
subelem, ok := value.(*Element)
if !ok || subelem.Tag != dicomtag.Item {
e.SetError(fmt.Errorf("SQ element must be an Item, but found %v", value))
return
}
WriteElementWithOption(e, subelem, opt)
}
encodeElementHeader(e, dicomtag.SequenceDelimitationItem, "" /*not used*/, 0)
} else {
sube := dicomio.NewBytesEncoder(e.TransferSyntax())
for _, value := range elem.Value {
subelem, ok := value.(*Element)
if !ok || subelem.Tag != dicomtag.Item {
e.SetErrorf("SQ element must be an Item, but found %v", value)
return
}
WriteElementWithOption(sube, subelem, opt)
}
if sube.Error() != nil {
e.SetError(sube.Error())
return
}
bytes := sube.Bytes()
encodeElementHeader(e, elem.Tag, vr, uint32(len(bytes)))
e.WriteBytes(bytes)
}
} else if vr == "NA" { // Item
if elem.UndefinedLength {
encodeElementHeader(e, elem.Tag, vr, undefinedLength)
for _, value := range elem.Value {
subelem, ok := value.(*Element)
if !ok {
e.SetErrorf("Item values must be a dicom.Element, but found %v", value)
return
}
WriteElementWithOption(e, subelem, opt)
}
encodeElementHeader(e, dicomtag.ItemDelimitationItem, "" /*not used*/, 0)
} else {
sube := dicomio.NewBytesEncoder(e.TransferSyntax())
for _, value := range elem.Value {
subelem, ok := value.(*Element)
if !ok {
e.SetErrorf("Item values must be a dicom.Element, but found %v", value)
return
}
WriteElementWithOption(sube, subelem, opt)
}
if sube.Error() != nil {
e.SetError(sube.Error())
return
}
bytes := sube.Bytes()
encodeElementHeader(e, elem.Tag, vr, uint32(len(bytes)))
e.WriteBytes(bytes)
}
} else {
if elem.UndefinedLength {
if opt.SkipEncodingElementWithUndefinedLength {
dicomlog.Vprintf(1, "Encoding undefined-length element not yet supported: %v", elem)
} else {
e.SetErrorf("Encoding undefined-length element not yet supported: %v", elem)
}
return
}
sube := dicomio.NewBytesEncoder(e.TransferSyntax())
switch vr {
case "US":
for _, value := range elem.Value {
v, ok := value.(uint16)
if !ok {
e.SetErrorf("%v: expect uint16, but found %v",
dicomtag.DebugString(elem.Tag), value)
continue
}
sube.WriteUInt16(v)
}
case "UL":
for _, value := range elem.Value {
v, ok := value.(uint32)
if !ok {
e.SetErrorf("%v: expect uint32, but found %v",
dicomtag.DebugString(elem.Tag), value)
continue
}
sube.WriteUInt32(v)
}
case "SL":
for _, value := range elem.Value {
v, ok := value.(int32)
if !ok {
e.SetErrorf("%v: expect int32, but found %v",
dicomtag.DebugString(elem.Tag), value)
continue
}
sube.WriteInt32(v)
}
case "SS":
for _, value := range elem.Value {
v, ok := value.(int16)
if !ok {
e.SetErrorf("%v: expect int16, but found %v",
dicomtag.DebugString(elem.Tag), value)
continue
}
sube.WriteInt16(v)
}
case "FL":
for _, value := range elem.Value {
v, ok := value.(float32)
if !ok {
e.SetErrorf("%v: expect float32, but found %v",
dicomtag.DebugString(elem.Tag), value)
continue
}
sube.WriteFloat32(v)
}
case "FD":
for _, value := range elem.Value {
v, ok := value.(float64)
if !ok {
e.SetErrorf("%v: expect float64, but found %v",
dicomtag.DebugString(elem.Tag), value)
continue
}
sube.WriteFloat64(v)
}
case "OW", "OB": // TODO(saito) Check that size is even. Byte swap??
if len(elem.Value) != 1 {
e.SetErrorf("%v: expect a single value but found %v",
dicomtag.DebugString(elem.Tag), elem.Value)
break
}
bytes, ok := elem.Value[0].([]byte)
if !ok {
e.SetErrorf("%v: expect a binary string but found %v",
dicomtag.DebugString(elem.Tag), elem.Value[0])
break
}
if vr == "OW" {
if len(bytes)%2 != 0 {
e.SetErrorf("%v: expect a binary string of even length, but found length %v",
dicomtag.DebugString(elem.Tag), len(bytes))
break
}
d := dicomio.NewBytesDecoder(bytes, dicomio.NativeByteOrder, dicomio.UnknownVR)
n := int(len(bytes) / 2)
for i := 0; i < n; i++ {
v := d.ReadUInt16()
sube.WriteUInt16(v)
}
doassert(d.Finish() == nil, d.Error())
} else { // vr=="OB"
sube.WriteBytes(bytes)
if len(bytes)%2 == 1 {
sube.WriteByte(0)
}
}
case "AT":
for _, value := range elem.Value {
tag, ok := value.(dicomtag.Tag)
if !ok {
e.SetErrorf("%v: Non-tag value [%v] found", dicomtag.DebugString(elem.Tag), value)
continue
}
sube.WriteUInt16(tag.Group)
sube.WriteUInt16(tag.Element)
}
case "NA":
fallthrough
default:
s := ""
for i, value := range elem.Value {
substr, ok := value.(string)
if !ok {
e.SetErrorf("%v: Non-string value [%v] found", dicomtag.DebugString(elem.Tag), value)
continue
}
if i > 0 {
s += "\\"
}
s += substr
}
sube.WriteString(s)
if len(s)%2 == 1 {
sube.WriteByte(0)
}
}
if sube.Error() != nil {
e.SetError(sube.Error())
return
}
bytes := sube.Bytes()
encodeElementHeader(e, elem.Tag, vr, uint32(len(bytes)))
e.WriteBytes(bytes)
}
}
func WriteDataSet(out io.Writer, ds *DataSet) error {
return WriteDataSetWithOption(out, ds, WriteOption{
SkipVerifyingVR: false,
})
}
// WriteDataSet writes the dataset into the stream in DICOM file format,
// complete with the magic header and metadata elements.
//
// The transfer syntax (byte order, etc) of the file is determined by the
// TransferSyntax element in "ds". If ds is missing that or a few other
// essential elements, this function returns an error.
//
// ds := ... read or create dicom.Dataset ...
// out, err := os.Create("test.dcm")
// err := dicom.Write(out, ds)
func WriteDataSetWithOption(out io.Writer, ds *DataSet, opt WriteOption) error {
e := dicomio.NewEncoder(out, nil, dicomio.UnknownVR)
var metaElems []*Element
for _, elem := range ds.Elements {
if elem.Tag.Group == dicomtag.MetadataGroup {
metaElems = append(metaElems, elem)
}
}
WriteFileHeaderWithOption(e, metaElems, opt)
if e.Error() != nil {
return e.Error()
}
endian, implicit, _, err := getTransferSyntax(ds)
if err != nil {
if strings.Contains(err.Error(), "element not found") && opt.DefaultTransferSyntaxUID != "" {
// use default transfer syntax uid
endian, implicit, _, err = dicomio.ParseTransferSyntaxUID(opt.DefaultTransferSyntaxUID)
if err != nil {
return err
}
} else {
return err
}
}
e.PushTransferSyntax(endian, implicit)
for _, elem := range ds.Elements {
if elem.Tag.Group != dicomtag.MetadataGroup {
WriteElementWithOption(e, elem, opt)
}
}
e.PopTransferSyntax()
return e.Error()
}
// WriteDataSetToFile writes "ds" to the given file. If the file already exists,
// existing contents are clobbered. Else, the file is newly created.
func WriteDataSetToFile(path string, ds *DataSet) error {
out, err := os.Create(path)
if err != nil {
return err
}
if err := WriteDataSet(out, ds); err != nil {
out.Close()
return err
}
return out.Close()
}