public class MediaImporter
extends java.lang.Object
This class is designed to support the importation of DICOM files from interchange media (such as CDs and DVDs).
It supports locating a DICOMDIR file and iterating through the list of referenced files.
The actual work (e.g. to import the file into a database or similar) is
performed by the implementation of the doSomethingWithDicomFileOnMedia
method in a sub-class of this class.
DatabaseMediaImporter
Modifier and Type | Class and Description |
---|---|
static class |
MediaImporter.MediaImporterWithFileChooserDialogThread
A class that implements
Runnable so that it can be invoked by EventQueue.invokeAndWait() . |
Modifier and Type | Field and Description |
---|---|
protected MessageLogger |
logger |
protected java.lang.String |
mediaDirectoryPath |
protected javax.swing.JProgressBar |
progressBar |
protected SafeProgressBarUpdaterThread |
progressBarUpdater |
Constructor and Description |
---|
MediaImporter(MessageLogger logger)
Construct an importer that will looked for files in the system default path.
|
MediaImporter(MessageLogger logger,
javax.swing.JProgressBar progressBar)
Construct an importer that will looked for files in the system default path.
|
MediaImporter(java.lang.String mediaDirectoryPath,
MessageLogger logger)
Construct an importer that will looked for files in the specified path.
|
MediaImporter(java.lang.String mediaDirectoryPath,
MessageLogger logger,
javax.swing.JProgressBar progressBar)
Construct an importer that will looked for files in the specified path.
|
Modifier and Type | Method and Description |
---|---|
void |
choosePathAndImportDicomFiles()
Pop up a file chooser dialog that allows the user to specify the location of
the DICOMDIR file, or the parent folder (for example, the drive or volume) in which
the DICOMDIR file is located, and then import the referenced files.
|
void |
choosePathAndImportDicomFiles(java.awt.Component parent)
Pop up a file chooser dialog that allows the user to specify the location of
the DICOMDIR file, or the parent folder (for example, the drive or volume) in which
the DICOMDIR file is located, and then import the referenced files.
|
protected void |
doSomethingWithDicomFileOnMedia(java.lang.String mediaFileName)
Do something with the referenced DICOM file that has been encountered.
|
java.lang.String |
getDirectory() |
void |
importDicomFiles(java.lang.String pathName)
Read a DICOMDIR file, and then import any DICOM files that it references.
|
protected boolean |
isOKToImport(java.lang.String sopClassUID,
java.lang.String transferSyntaxUID)
Check for valid information, and that the file is not compressed or not a suitable storage object for import.
|
protected void |
logLn(java.lang.String s) |
static void |
main(java.lang.String[] arg)
Check that DICOM files are present and importable.
|
protected java.lang.String mediaDirectoryPath
protected MessageLogger logger
protected javax.swing.JProgressBar progressBar
protected SafeProgressBarUpdaterThread progressBarUpdater
public MediaImporter(MessageLogger logger)
Construct an importer that will looked for files in the system default path.
logger
- where to send status updates as files are read (may be null for no logging)public MediaImporter(MessageLogger logger, javax.swing.JProgressBar progressBar)
Construct an importer that will looked for files in the system default path.
logger
- where to send status updates as files are read (may be null for no logging)progressBar
- where to update progress as files are read (may be null for no progress bar)public MediaImporter(java.lang.String mediaDirectoryPath, MessageLogger logger)
Construct an importer that will looked for files in the specified path.
mediaDirectoryPath
- where to begin looking for the DICOMDIR and DICOM fileslogger
- where to send status updates as files are read (may be null for no logging)public MediaImporter(java.lang.String mediaDirectoryPath, MessageLogger logger, javax.swing.JProgressBar progressBar)
Construct an importer that will looked for files in the specified path.
mediaDirectoryPath
- where to begin looking for the DICOMDIR and DICOM fileslogger
- where to send status updates as files are read (may be null for no logging)progressBar
- where to update progress as files are read (may be null for no progress bar)protected void logLn(java.lang.String s)
s
- message to logpublic void choosePathAndImportDicomFiles(java.awt.Component parent) throws java.io.IOException, DicomException
Pop up a file chooser dialog that allows the user to specify the location of the DICOMDIR file, or the parent folder (for example, the drive or volume) in which the DICOMDIR file is located, and then import the referenced files.
Will be positioned relative to the parent component (for example, centered over the component) if specified, else placed in a look-and-feel-dependent position such as the center of the screen if null.
Can only be invoked on the AWT Event Dispatch Thread.
parent
- the parent component of the dialog; can be null
java.io.IOException
- thrown if the DICOMDIR file (but not any referenced files) cannot be opened or readDicomException
- thrown if the DICOMDIR file cannot be parsedpublic void choosePathAndImportDicomFiles() throws java.io.IOException, DicomException
Pop up a file chooser dialog that allows the user to specify the location of the DICOMDIR file, or the parent folder (for example, the drive or volume) in which the DICOMDIR file is located, and then import the referenced files.
Will be placed in a look-and-feel-dependent position such as the center of the screen.
Can only be invoked on the AWT Event Dispatch Thread.
java.io.IOException
- thrown if the DICOMDIR file (but not any referenced files) cannot be opened or readDicomException
- thrown if the DICOMDIR file cannot be parsedprotected boolean isOKToImport(java.lang.String sopClassUID, java.lang.String transferSyntaxUID)
Check for valid information, and that the file is not compressed or not a suitable storage object for import.
sopClassUID
- transferSyntaxUID
- public void importDicomFiles(java.lang.String pathName) throws java.io.IOException, DicomException
Read a DICOMDIR file, and then import any DICOM files that it references.
How errors are handled during the importation of the referenced files
depends on the implementation of doSomethingWithDicomFileOnMedia
in the sub-class. Any such errors will not interrupt the execution of this method (i.e., will not prevent the
importation of the remaining files).
pathName
- the path name to a DICOMDIR file or folder containing a DICOMDIR filejava.io.IOException
- thrown if the DICOMDIR file (but not any referenced files) cannot be opened or readDicomException
- thrown if the DICOMDIR file cannot be parsedprotected void doSomethingWithDicomFileOnMedia(java.lang.String mediaFileName)
Do something with the referenced DICOM file that has been encountered.
This method needs to be implemented in a sub-class to do anything useful. The default method does nothing.
This method does not define any exceptions and hence must handle any errors locally.
mediaFileName
- the fully qualified path name to a DICOM filepublic java.lang.String getDirectory()
public static void main(java.lang.String[] arg)
Check that DICOM files are present and importable.
arg
- array of one string - the path to the media or folder containing
the files to check are importable (in which case will write messages to
stderr), or else will pop up a file chooser dialog (and write messages to
a dialog box)