@@ -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 dicomStore = useDICOMStore ( ) ;
@@ -141,7 +138,7 @@ function getStudyUID(volumeID: string) {
141
138
}
142
139
143
140
function findBaseDataSource (
144
- succeeded : Array < PipelineResultSuccess < ImportResult > > ,
141
+ succeeded : Array < ImportResult > ,
145
142
segmentGroupExtension : string
146
143
) {
147
144
const loadableDataSources = filterLoadableDataSources ( succeeded ) ;
@@ -155,24 +152,24 @@ function findBaseDataSource(
155
152
156
153
function filterOtherVolumesInStudy (
157
154
volumeID : string ,
158
- succeeded : Array < PipelineResultSuccess < ImportResult > >
155
+ succeeded : Array < ImportResult >
159
156
) {
160
157
const targetStudyUID = getStudyUID ( volumeID ) ;
161
158
const dicomDataSources = filterLoadableDataSources ( succeeded ) . filter (
162
- ( { dataType } ) => dataType === 'dicom'
159
+ ( { dataID } ) => isDicomImage ( dataID )
163
160
) ;
164
161
return dicomDataSources . filter ( ( ds ) => {
165
162
const sourceStudyUID = getStudyUID ( ds . dataID ) ;
166
163
return sourceStudyUID === targetStudyUID && ds . dataID !== volumeID ;
167
- } ) as Array < VolumeResult > ;
164
+ } ) as Array < LoadableVolumeResult > ;
168
165
}
169
166
170
167
// Layers a DICOM PET on a CT if found
171
168
function loadLayers (
172
- primaryDataSource : VolumeResult ,
173
- succeeded : Array < PipelineResultSuccess < ImportResult > >
169
+ primaryDataSource : LoadableVolumeResult ,
170
+ succeeded : Array < ImportResult >
174
171
) {
175
- if ( primaryDataSource . dataType !== 'dicom' ) return ;
172
+ if ( ! isDicomImage ( primaryDataSource . dataID ) ) return ;
176
173
const otherVolumesInStudy = filterOtherVolumesInStudy (
177
174
primaryDataSource . dataID ,
178
175
succeeded
@@ -198,8 +195,8 @@ function loadLayers(
198
195
// - DICOM SEG modalities with matching StudyUIDs.
199
196
// - DataSources that have a name like foo.segmentation.bar and the primary DataSource is named foo.baz
200
197
function loadSegmentations (
201
- primaryDataSource : VolumeResult ,
202
- succeeded : Array < PipelineResultSuccess < ImportResult > > ,
198
+ primaryDataSource : LoadableVolumeResult ,
199
+ succeeded : Array < ImportResult > ,
203
200
segmentGroupExtension : string
204
201
) {
205
202
const matchingNames = filterMatchingNames (
@@ -237,13 +234,19 @@ function loadDataSources(sources: DataSource[]) {
237
234
238
235
let results : ImportDataSourcesResult [ ] ;
239
236
try {
240
- results = await importDataSources ( sources ) ;
237
+ results = ( await importDataSources ( sources ) ) . filter ( ( result ) =>
238
+ // only look at data and error results
239
+ [ 'data' , 'error' ] . includes ( result . type )
240
+ ) ;
241
241
} catch ( error ) {
242
242
loadDataStore . setError ( error as Error ) ;
243
243
return ;
244
244
}
245
245
246
- const [ succeeded , errored ] = partitionResults ( results ) ;
246
+ const [ succeeded , errored ] = partition (
247
+ ( result ) => result . type !== 'error' ,
248
+ results
249
+ ) ;
247
250
248
251
if ( ! dataStore . primarySelection && succeeded . length ) {
249
252
const primaryDataSource = findBaseDataSource (
@@ -264,14 +267,12 @@ function loadDataSources(sources: DataSource[]) {
264
267
}
265
268
266
269
if ( errored . length ) {
267
- const errorMessages = errored . map ( ( errResult ) => {
268
- // pick first error
269
- const [ firstError ] = errResult . errors ;
270
- // pick innermost dataset that errored
271
- const name = getDataSourceName ( firstError . inputDataStackTrace [ 0 ] ) ;
270
+ const errorMessages = ( errored as ErrorResult [ ] ) . map ( ( errResult ) => {
271
+ const { dataSource, error } = errResult ;
272
+ const name = getDataSourceName ( dataSource ) ;
272
273
// log error for debugging
273
- logError ( firstError . cause ) ;
274
- return `- ${ name } : ${ firstError . message } ` ;
274
+ logError ( error ) ;
275
+ return `- ${ name } : ${ error . message } ` ;
275
276
} ) ;
276
277
const failedError = new Error (
277
278
`These files failed to load:\n${ errorMessages . join ( '\n' ) } `
0 commit comments