public class StudyReceiver
extends java.lang.Object
A class to wait for incoming composite instance storage operations and process when study is complete based on time since last instance received.
The class has no public methods other than the constructor and a main method that is useful as a utility.
External (unsecure) SQL access to the database is possible if the Application.DatabaseServerName property is specified; further
details are described in com.pixelmed.database.DatabaseInformationModel
; for example:
% java -cp lib/additional/hsqldb.jar org.hsqldb.util.DatabaseManagerSwing --url "jdbc:hsqldb:hsql://localhost/testserverdb"
For how to configure the necessary properties file, see:
Modifier and Type | Class and Description |
---|---|
protected class |
StudyReceiver.OurPatientStudySeriesInstanceModel |
protected static class |
StudyReceiver.OurReadTerminationStrategy |
protected class |
StudyReceiver.OurReceivedObjectHandler |
protected class |
StudyReceiver.ReceivedFileProcessor |
protected class |
StudyReceiver.WatchDatabaseAndProcessCompleteStudies |
Constructor and Description |
---|
StudyReceiver(java.lang.String propertiesFileName)
Wait for incoming composite instance storage operations and process when study is complete based on time since last instance received.
|
Modifier and Type | Method and Description |
---|---|
protected java.lang.String |
getBuildDate()
Get the date the package was built.
|
protected java.io.File |
getCompletedStudiesFolderNameCreatingItIfNecessary(java.lang.String completedStudiesFolderName)
Return the folder, creating it if necessary.
|
protected void |
loadProperties(java.lang.String propertiesFileName)
Load properties.
|
static void |
main(java.lang.String[] arg)
Wait for incoming composite instance storage operations and process when study is complete based on time since last instance received.
|
protected boolean |
processStudy(java.lang.String studyLocalPrimaryKeyValue) |
protected boolean |
processStudyIfComplete(java.lang.String studyLocalPrimaryKeyValue) |
protected void |
updateStudyMostRecentInsertionTime(java.lang.String studyInstanceUID,
long insertionTime) |
protected static java.lang.String defaultPropertiesFileName
protected static java.lang.String propertyName_CompletedStudiesFolderName
protected static java.lang.String propertyName_SleepTimeBetweenPassesToProcessReceivedFiles
protected static java.lang.String propertyName_IntervalAfterLastInstanceReceivedToWaitBeforeProcessingStudy
protected static java.lang.String propertyName_ApplicationDebugLevel
protected java.lang.String defaultCompletedStudiesFolderName
protected java.lang.String defaultSleepTimeBetweenPassesToProcessReceivedFiles
protected java.lang.String defaultIntervalAfterLastInstanceReceivedToWaitBeforeProcessingStudy
protected static int sleepTimeBetweenPassesToProcessReceivedFiles
protected static int intervalAfterLastInstanceReceivedToWaitBeforeProcessingStudy
protected java.util.Properties properties
protected NetworkApplicationProperties networkApplicationProperties
protected NetworkApplicationInformationFederated networkApplicationInformation
protected java.lang.String ourCalledAETitle
protected DatabaseInformationModel databaseInformationModel
protected int applicationDebugLevel
protected java.lang.String buildDate
protected java.io.File completedStudiesFolder
protected java.io.File savedImagesFolder
protected StoredFilePathStrategy storedFilePathStrategy
protected java.lang.String studyHasBeenProcessedColumnName
protected java.lang.String studyMostRecentInsertionTimeColumnName
protected java.lang.String instanceHasBeenProcessedColumnName
protected java.lang.String studyInstanceUIDColumnName
protected java.lang.String sopClassUIDColumnName
protected java.lang.String instanceLocalFileNameColumnName
protected java.lang.String instanceLocalFileReferenceTypeColumnName
protected java.lang.String instanceLocalPrimaryKeyColumnName
protected java.lang.String seriesLocalPrimaryKeyColumnName
protected static final AttributeList.ReadTerminationStrategy terminateAfterRelationshipGroup
public StudyReceiver(java.lang.String propertiesFileName) throws DicomException, DicomNetworkException, java.io.IOException, java.lang.InterruptedException
Wait for incoming composite instance storage operations and process when study is complete based on time since last instance received.
propertiesFileName
- DicomException
DicomNetworkException
java.io.IOException
java.lang.InterruptedException
protected java.lang.String getBuildDate()
Get the date the package was built.
protected void loadProperties(java.lang.String propertiesFileName) throws java.io.IOException
Load properties.
java.io.IOException
- thrown if properties file is missingprotected boolean processStudy(java.lang.String studyLocalPrimaryKeyValue) throws DicomException, java.io.IOException, java.lang.Exception
DicomException
java.io.IOException
java.lang.Exception
protected boolean processStudyIfComplete(java.lang.String studyLocalPrimaryKeyValue) throws DicomException, java.io.IOException, java.lang.Exception
DicomException
java.io.IOException
java.lang.Exception
protected void updateStudyMostRecentInsertionTime(java.lang.String studyInstanceUID, long insertionTime) throws DicomException
DicomException
protected java.io.File getCompletedStudiesFolderNameCreatingItIfNecessary(java.lang.String completedStudiesFolderName) throws java.io.IOException
Return the folder, creating it if necessary.
If not an absolute path, will be sought or created relative to the current user's home directory.
java.io.IOException
public static void main(java.lang.String[] arg)
Wait for incoming composite instance storage operations and process when study is complete based on time since last instance received.
arg
- none