Mercurial > hg > orthanc-book
view Sphinx/source/plugins/python/worklist.py @ 840:1262a26f96d1
Added tag Orthanc-1.11.0 for changeset c29ac12e3160
author | Alain Mazy <am@osimis.io> |
---|---|
date | Mon, 09 May 2022 13:11:47 +0200 |
parents | e95713f90614 |
children | 92ca063536ed |
line wrap: on
line source
import json import orthanc import os # Path to the directory containing the DICOM worklists # https://hg.orthanc-server.com/orthanc/file/Orthanc-1.10.1/OrthancServer/Plugins/Samples/ModalityWorklists/WorklistsDatabase WORKLIST_DIR = '/tmp/WorklistsDatabase' def OnWorklist(answers, query, issuerAet, calledAet): print('Received incoming C-FIND worklist request from %s:' % issuerAet) # Get a memory buffer containing the DICOM instance dicom = query.WorklistGetDicomQuery() # Get the DICOM tags in the JSON format from the binary buffer jsonTags = json.loads(orthanc.DicomBufferToJson( dicom, orthanc.DicomToJsonFormat.SHORT, orthanc.DicomToJsonFlags.NONE, 0)) orthanc.LogWarning('C-FIND worklist request to be handled in Python: %s' % json.dumps(jsonTags, indent = 4, sort_keys = True)) # Loop over the available DICOM worklists for path in os.listdir(WORKLIST_DIR): if os.path.splitext(path) [1] == '.wl': with open(os.path.join(WORKLIST_DIR, path), 'rb') as f: content = f.read() # Test whether the query matches the current worklist if query.WorklistIsMatch(content): orthanc.LogWarning('Matching worklist: %s' % path) answers.WorklistAddAnswer(query, content) orthanc.RegisterWorklistCallback(OnWorklist)