| import { |
| NumericMeasurement, |
| getNumericMeasurement, |
| getDicomNumericMeasurementItem |
| } from './dicomNumericMeasurement'; |
| import { |
| getCode, |
| getDicomCodeItem, |
| getConceptNameCode, |
| getMeasurementUnitsCode |
| } from './dicomCode'; |
| import { |
| getImageReference, |
| getDicomImageReferenceItem |
| } from './dicomImageReference'; |
| import { |
| getSopInstanceReference, |
| getDicomSopInstanceReferenceItem |
| } from './dicomSopInstanceReference'; |
| import { |
| getSpatialCoordinate, |
| getDicomSpatialCoordinateItem |
| } from './dicomSpatialCoordinate'; |
| import { |
| getSpatialCoordinate3D, |
| getDicomSpatialCoordinate3DItem |
| } from './dicomSpatialCoordinate3D'; |
| |
| |
| |
| import {DataElement} from './dataElement'; |
| import {DicomCode} from './dicomCode'; |
| import {MeasuredValue} from './dicomMeasuredValue'; |
| |
| |
| |
| |
| |
| const TagKeys = { |
| ReferencedSOPSequence: '00081199', |
| RelationshipType: '0040A010', |
| ValueType: '0040A040', |
| ConceptNameCodeSequence: '0040A043', |
| ConceptCodeSequence: '0040A168', |
| ContentSequence: '0040A730', |
| DateTime: '0040A120', |
| Date: '0040A121', |
| Time: '0040A122', |
| UID: '0040A124', |
| PersonName: '0040A123', |
| TextValue: '0040A160', |
| ContinuityOfContent: '0040A050' |
| }; |
| |
| |
| |
| |
| |
| |
| export const RelationshipTypes = { |
| contains: 'CONTAINS', |
| hasProperties: 'HAS PROPERTIES', |
| hasObsContext: 'HAS OBS CONTEXT', |
| hasAcqContext: 'HAS ACQ CONTEXT', |
| inferredFrom: 'INFERRED FROM', |
| selectedFrom: 'SELECTED FROM', |
| hasConceptMod: 'HAS CONCEPT MOD' |
| }; |
| |
| |
| |
| |
| |
| |
| export const ValueTypes = { |
| text: 'TEXT', |
| num: 'NUM', |
| code: 'CODE', |
| date: 'DATE', |
| time: 'TIME', |
| datetime: 'DATETIME', |
| uidref: 'UIDREF', |
| pname: 'PNAME', |
| composite: 'COMPOSITE', |
| image: 'IMAGE', |
| waveform: 'WAVEFORM', |
| scoord: 'SCOORD', |
| scoord3d: 'SCOORD3D', |
| tcoord: 'TCOORD', |
| container: 'CONTAINER', |
| table: 'TABLE', |
| }; |
| |
| |
| |
| |
| export const ValueTypeValueTagName = { |
| TEXT: 'TextValue', |
| DATE: 'Date', |
| TIME: 'Time', |
| DATETIME: 'DateTime', |
| UIDREF: 'UID', |
| PNAME: 'PersonName', |
| CONTAINER: 'ContinuityOfContent', |
| }; |
| |
| |
| |
| |
| |
| |
| export class DicomSRContent { |
| |
| |
| |
| |
| |
| valueType; |
| |
| |
| |
| |
| |
| conceptNameCode; |
| |
| |
| |
| |
| |
| relationshipType; |
| |
| |
| |
| |
| |
| |
| contentSequence; |
| |
| |
| |
| |
| |
| |
| value; |
| |
| |
| |
| |
| constructor(valueType) { |
| this.valueType = valueType; |
| } |
| |
| |
| |
| |
| |
| |
| |
| toString(prefix) { |
| if (typeof prefix === 'undefined') { |
| prefix = ''; |
| } |
| |
| let res = ''; |
| |
| if (typeof this.relationshipType !== 'undefined') { |
| res += '(' + this.relationshipType + ') '; |
| } |
| |
| res += this.valueType + ': '; |
| |
| if (typeof this.conceptNameCode !== 'undefined') { |
| res += this.conceptNameCode.toString(); |
| } |
| |
| res += ' = ' + this.value.toString(); |
| |
| if (typeof this.contentSequence !== 'undefined') { |
| for (const item of this.contentSequence) { |
| res += '\n' + prefix + '- ' + item.toString(prefix + ' '); |
| } |
| } |
| |
| return res; |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| export function isEqualContentItem(item1, item2) { |
| return Object.keys(item1).length === Object.keys(item2).length && |
| Object.keys(item1).every(key => |
| Object.prototype.hasOwnProperty.call(item2, key) && |
| item1[key] === item2[key] |
| ); |
| } |
| |
| |
| |
| |
| |
| |
| |
| export function getSRContent(dataElements) { |
| |
| let valueType = ''; |
| if (typeof dataElements[TagKeys.ValueType] !== 'undefined') { |
| valueType = dataElements[TagKeys.ValueType].value[0]; |
| } |
| |
| const content = new DicomSRContent(valueType); |
| |
| |
| if (typeof dataElements[TagKeys.RelationshipType] !== 'undefined') { |
| content.relationshipType = |
| dataElements[TagKeys.RelationshipType].value[0]; |
| } |
| |
| if (typeof dataElements[TagKeys.ConceptNameCodeSequence] !== 'undefined') { |
| content.conceptNameCode = |
| getCode(dataElements[TagKeys.ConceptNameCodeSequence].value[0]); |
| } |
| |
| |
| |
| if (valueType === ValueTypes.code) { |
| content.value = getCode( |
| dataElements[TagKeys.ConceptCodeSequence].value[0]); |
| } else if (valueType === ValueTypes.num) { |
| content.value = getNumericMeasurement(dataElements); |
| } else if (valueType === ValueTypes.image) { |
| content.value = getImageReference(dataElements); |
| } else if (valueType === ValueTypes.composite) { |
| content.value = getSopInstanceReference( |
| dataElements[TagKeys.ReferencedSOPSequence].value[0] |
| ); |
| } else if (valueType === ValueTypes.scoord) { |
| content.value = getSpatialCoordinate(dataElements); |
| } else if (valueType === ValueTypes.scoord3d) { |
| content.value = getSpatialCoordinate3D(dataElements); |
| } else { |
| const valueTagName = ValueTypeValueTagName[valueType]; |
| if (typeof valueTagName !== 'undefined') { |
| content.value = dataElements[TagKeys[valueTagName]].value[0]; |
| } else { |
| console.warn('Unsupported input ValueType: ' + valueType); |
| } |
| } |
| |
| const contentSqEl = dataElements[TagKeys.ContentSequence]; |
| if (typeof contentSqEl !== 'undefined') { |
| content.contentSequence = []; |
| for (const item of dataElements[TagKeys.ContentSequence].value) { |
| content.contentSequence.push(getSRContent(item)); |
| } |
| } |
| |
| return content; |
| } |
| |
| |
| |
| |
| |
| |
| |
| export function getDicomSRContentItem(content) { |
| |
| let contentItem = {}; |
| |
| if (typeof content.relationshipType !== 'undefined') { |
| contentItem.RelationshipType = content.relationshipType; |
| } |
| if (typeof content.valueType !== 'undefined') { |
| contentItem.ValueType = content.valueType; |
| } |
| if (typeof content.conceptNameCode !== 'undefined') { |
| contentItem.ConceptNameCodeSequence = { |
| value: [getDicomCodeItem(content.conceptNameCode)] |
| }; |
| } |
| |
| |
| if (content.valueType === 'CODE') { |
| contentItem.ConceptCodeSequence = { |
| value: [getDicomCodeItem(content.value)] |
| }; |
| } else if (content.valueType === ValueTypes.num) { |
| contentItem = { |
| ...contentItem, |
| ...getDicomNumericMeasurementItem(content.value) |
| }; |
| } else if (content.valueType === ValueTypes.image) { |
| contentItem = { |
| ...contentItem, |
| ...getDicomImageReferenceItem(content.value) |
| }; |
| } else if (content.valueType === ValueTypes.composite) { |
| contentItem = { |
| ...contentItem, |
| ...getDicomSopInstanceReferenceItem(content.value) |
| }; |
| } else if (content.valueType === ValueTypes.scoord) { |
| contentItem = { |
| ...contentItem, |
| ...getDicomSpatialCoordinateItem(content.value) |
| }; |
| } else if (content.valueType === ValueTypes.scoord3d) { |
| contentItem = { |
| ...contentItem, |
| ...getDicomSpatialCoordinate3DItem(content.value) |
| }; |
| } else { |
| const valueTagName = ValueTypeValueTagName[content.valueType]; |
| if (typeof valueTagName !== 'undefined') { |
| contentItem[valueTagName] = content.value; |
| } else { |
| console.warn('Unsupported output ValueType: ' + content.valueType); |
| } |
| } |
| |
| if (typeof content.contentSequence !== 'undefined') { |
| contentItem.ContentSequence = { |
| value: [] |
| }; |
| for (const item of content.contentSequence) { |
| contentItem.ContentSequence.value.push(getDicomSRContentItem(item)); |
| } |
| } |
| |
| return contentItem; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| export function getSRContentFromValue(name, value, unit) { |
| const conceptNameCode = getConceptNameCode(name); |
| |
| if (typeof conceptNameCode === 'undefined') { |
| return undefined; |
| } |
| |
| const content = new DicomSRContent(ValueTypes.num); |
| content.relationshipType = RelationshipTypes.contains; |
| content.conceptNameCode = conceptNameCode; |
| |
| const measure = new MeasuredValue(); |
| measure.numericValue = value; |
| measure.measurementUnitsCode = getMeasurementUnitsCode(unit); |
| const numMeasure = new NumericMeasurement(); |
| numMeasure.measuredValue = measure; |
| |
| content.value = numMeasure; |
| |
| return content; |
| } |