All files / extensions/cornerstone-dicom-sr/src/utils isRehydratable.ts

70% Statements 14/20
66.66% Branches 6/9
100% Functions 1/1
68.42% Lines 13/19

Press n or j to go to the next uncovered block, b, p or k for the previous block.

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    34x                   1x       1x 1x 17x     1x   1x 1x 1x       1x 1x   1x 1x                
import { adaptersSR } from '@cornerstonejs/adapters';
 
const { MeasurementReport } = adaptersSR.Cornerstone3D;
 
/**
 * Checks if the given `displaySet`can be rehydrated into the `measurementService`.
 *
 * @param {object} displaySet The SR `displaySet` to check.
 * @param {object[]} mappings The CornerstoneTools 4 mappings to the `measurementService`.
 * @returns {boolean} True if the SR can be rehydrated into the `measurementService`.
 */
export default function isRehydratable(displaySet, mappings) {
  Iif (!mappings || !mappings.length) {
    return false;
  }
 
  const mappingDefinitions = new Set<string>();
  for (const m of mappings) {
    mappingDefinitions.add(m.annotationType);
  }
 
  const { measurements } = displaySet;
 
  for (let i = 0; i < measurements.length; i++) {
    const { TrackingIdentifier } = measurements[i] || {};
    Iif (!TrackingIdentifier) {
      console.warn('No tracking identifier for measurement ', measurements[i]);
      continue;
    }
    const adapter = MeasurementReport.getAdapterForTrackingIdentifier(TrackingIdentifier);
    const hydratable = adapter && mappingDefinitions.has(adapter.toolType);
 
    if (hydratable) {
      return true;
    }
    console.log('Measurement is not rehydratable', TrackingIdentifier, measurements[i]);
  }
 
  console.log('No measurements found which were rehydratable');
  return false;
}