@@ -10,23 +10,24 @@ import { useDatasetStore } from '@/src/store/datasets';
10
10
import { useDICOMStore } from '@/src/store/datasets-dicom' ;
11
11
import { useLayersStore } from '@/src/store/datasets-layers' ;
12
12
import { useSegmentGroupStore } from '@/src/store/segmentGroups' ;
13
- import { wrapInArray , nonNullable } from '@/src/utils' ;
13
+ import { wrapInArray , nonNullable , partition } from '@/src/utils' ;
14
14
import { basename } from '@/src/utils/path' ;
15
15
import { parseUrl } from '@/src/utils/url' ;
16
16
import { logError } from '@/src/utils/loggers' ;
17
- import { PipelineResultSuccess , partitionResults } from '@/src/core/pipeline' ;
18
17
import {
19
- ImportDataSourcesResult ,
20
18
importDataSources ,
21
19
toDataSelection ,
22
20
} from '@/src/io/import/importDataSources' ;
23
21
import {
22
+ ErrorResult ,
24
23
ImportResult ,
25
24
LoadableResult ,
26
- VolumeResult ,
25
+ LoadableVolumeResult ,
27
26
isLoadableResult ,
28
27
isVolumeResult ,
28
+ ImportDataSourcesResult ,
29
29
} from '@/src/io/import/common' ;
30
+ import { isDicomImage } from '@/src/utils/dataSelection' ;
30
31
31
32
// higher value priority is preferred for picking a primary selection
32
33
const BASE_MODALITY_TYPES = {
@@ -38,8 +39,8 @@ const BASE_MODALITY_TYPES = {
38
39
39
40
function findBaseDicom ( loadableDataSources : Array < LoadableResult > ) {
40
41
// find dicom dataset for primary selection if available
41
- const dicoms = loadableDataSources . filter (
42
- ( { dataType } ) => dataType === 'dicom'
42
+ const dicoms = loadableDataSources . filter ( ( { dataID } ) =>
43
+ isDicomImage ( dataID )
43
44
) ;
44
45
// prefer some modalities as base
45
46
const dicomStore = useDICOMStore ( ) ;
@@ -97,19 +98,15 @@ function findBaseImage(
97
98
}
98
99
99
100
// returns image and dicom sources, no config files
100
- function filterLoadableDataSources (
101
- succeeded : Array < PipelineResultSuccess < ImportResult > >
102
- ) {
103
- return succeeded . flatMap ( ( result ) => {
104
- return result . data . filter ( isLoadableResult ) ;
105
- } ) ;
101
+ function filterLoadableDataSources ( succeeded : Array < ImportResult > ) {
102
+ return succeeded . filter ( isLoadableResult ) ;
106
103
}
107
104
108
105
// Returns list of dataSources with file names where the name has the extension argument
109
106
// and the start of the file name matches the primary file name.
110
107
function filterMatchingNames (
111
- primaryDataSource : VolumeResult ,
112
- succeeded : Array < PipelineResultSuccess < ImportResult > > ,
108
+ primaryDataSource : LoadableVolumeResult ,
109
+ succeeded : Array < ImportResult > ,
113
110
extension : string
114
111
) {
115
112
const primaryName = getDataSourceName ( primaryDataSource . dataSource ) ;
@@ -137,7 +134,7 @@ function getStudyUID(volumeID: string) {
137
134
}
138
135
139
136
function findBaseDataSource (
140
- succeeded : Array < PipelineResultSuccess < ImportResult > > ,
137
+ succeeded : Array < ImportResult > ,
141
138
segmentGroupExtension : string
142
139
) {
143
140
const loadableDataSources = filterLoadableDataSources ( succeeded ) ;
@@ -151,24 +148,24 @@ function findBaseDataSource(
151
148
152
149
function filterOtherVolumesInStudy (
153
150
volumeID : string ,
154
- succeeded : Array < PipelineResultSuccess < ImportResult > >
151
+ succeeded : Array < ImportResult >
155
152
) {
156
153
const targetStudyUID = getStudyUID ( volumeID ) ;
157
154
const dicomDataSources = filterLoadableDataSources ( succeeded ) . filter (
158
- ( { dataType } ) => dataType === 'dicom'
155
+ ( { dataID } ) => isDicomImage ( dataID )
159
156
) ;
160
157
return dicomDataSources . filter ( ( ds ) => {
161
158
const sourceStudyUID = getStudyUID ( ds . dataID ) ;
162
159
return sourceStudyUID === targetStudyUID && ds . dataID !== volumeID ;
163
- } ) as Array < VolumeResult > ;
160
+ } ) as Array < LoadableVolumeResult > ;
164
161
}
165
162
166
163
// Layers a DICOM PET on a CT if found
167
164
function loadLayers (
168
- primaryDataSource : VolumeResult ,
169
- succeeded : Array < PipelineResultSuccess < ImportResult > >
165
+ primaryDataSource : LoadableVolumeResult ,
166
+ succeeded : Array < ImportResult >
170
167
) {
171
- if ( primaryDataSource . dataType !== 'dicom' ) return ;
168
+ if ( ! isDicomImage ( primaryDataSource . dataID ) ) return ;
172
169
const otherVolumesInStudy = filterOtherVolumesInStudy (
173
170
primaryDataSource . dataID ,
174
171
succeeded
@@ -194,8 +191,8 @@ function loadLayers(
194
191
// - DICOM SEG modalities with matching StudyUIDs.
195
192
// - DataSources that have a name like foo.segmentation.bar and the primary DataSource is named foo.baz
196
193
function loadSegmentations (
197
- primaryDataSource : VolumeResult ,
198
- succeeded : Array < PipelineResultSuccess < ImportResult > > ,
194
+ primaryDataSource : LoadableVolumeResult ,
195
+ succeeded : Array < ImportResult > ,
199
196
segmentGroupExtension : string
200
197
) {
201
198
const matchingNames = filterMatchingNames (
@@ -233,13 +230,19 @@ function loadDataSources(sources: DataSource[]) {
233
230
234
231
let results : ImportDataSourcesResult [ ] ;
235
232
try {
236
- results = await importDataSources ( sources ) ;
233
+ results = ( await importDataSources ( sources ) ) . filter ( ( result ) =>
234
+ // only look at data and error results
235
+ [ 'data' , 'error' ] . includes ( result . type )
236
+ ) ;
237
237
} catch ( error ) {
238
238
loadDataStore . setError ( error as Error ) ;
239
239
return ;
240
240
}
241
241
242
- const [ succeeded , errored ] = partitionResults ( results ) ;
242
+ const [ succeeded , errored ] = partition (
243
+ ( result ) => result . type !== 'error' ,
244
+ results
245
+ ) ;
243
246
244
247
if ( ! dataStore . primarySelection && succeeded . length ) {
245
248
const primaryDataSource = findBaseDataSource (
@@ -260,14 +263,12 @@ function loadDataSources(sources: DataSource[]) {
260
263
}
261
264
262
265
if ( errored . length ) {
263
- const errorMessages = errored . map ( ( errResult ) => {
264
- // pick first error
265
- const [ firstError ] = errResult . errors ;
266
- // pick innermost dataset that errored
267
- const name = getDataSourceName ( firstError . inputDataStackTrace [ 0 ] ) ;
266
+ const errorMessages = ( errored as ErrorResult [ ] ) . map ( ( errResult ) => {
267
+ const { dataSource, error } = errResult ;
268
+ const name = getDataSourceName ( dataSource ) ;
268
269
// log error for debugging
269
- logError ( firstError . cause ) ;
270
- return `- ${ name } : ${ firstError . message } ` ;
270
+ logError ( error ) ;
271
+ return `- ${ name } : ${ error . message } ` ;
271
272
} ) ;
272
273
const failedError = new Error (
273
274
`These files failed to load:\n${ errorMessages . join ( '\n' ) } `
0 commit comments