Mercurial > hg > orthanc-book
view Sphinx/source/plugins/python/worklist.py @ 959:22a19433820b
clarification
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 22 Jun 2023 17:38:35 +0200 |
parents | 92ca063536ed |
children | 1316bc62b5d5 |
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.11.0/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)