Mercurial > hg > orthanc
annotate Plugins/Samples/ModalityWorklists/Plugin.cpp @ 2523:21e2ed283cd5
fix wasm
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 10 Apr 2018 16:48:49 +0200 |
parents | 878b59270859 |
children | d4fd4614f275 |
rev | line source |
---|---|
1802 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
1900 | 3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics |
1802 | 4 * Department, University Hospital of Liege, Belgium |
2447
878b59270859
upgrade to year 2018
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2289
diff
changeset
|
5 * Copyright (C) 2017-2018 Osimis S.A., Belgium |
1802 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
8 * modify it under the terms of the GNU General Public License as | |
9 * published by the Free Software Foundation, either version 3 of the | |
10 * License, or (at your option) any later version. | |
2289
89d17c72287b
Modality worklist: added logs to display the number of files parsed and number of matches
Alain Mazy <alain@mazy.be>
parents:
2268
diff
changeset
|
11 * |
1802 | 12 * This program is distributed in the hope that it will be useful, but |
13 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU General Public License | |
18 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
19 **/ | |
20 | |
21 | |
2205
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
22 #include "../Common/OrthancPluginCppWrapper.h" |
1802 | 23 |
24 #include <boost/filesystem.hpp> | |
25 #include <json/value.h> | |
26 #include <json/reader.h> | |
27 #include <string.h> | |
28 #include <iostream> | |
1814 | 29 #include <algorithm> |
1802 | 30 |
31 static OrthancPluginContext* context_ = NULL; | |
32 static std::string folder_; | |
2233
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
33 static bool filterIssuerAet_ = false; |
1802 | 34 |
35 /** | |
36 * This is the main function for matching a DICOM worklist against a query. | |
37 **/ | |
2289
89d17c72287b
Modality worklist: added logs to display the number of files parsed and number of matches
Alain Mazy <alain@mazy.be>
parents:
2268
diff
changeset
|
38 static bool MatchWorklist(OrthancPluginWorklistAnswers* answers, |
2214 | 39 const OrthancPluginWorklistQuery* query, |
40 const OrthancPlugins::FindMatcher& matcher, | |
2206
27106f7e3759
more refactoring of the worklist sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2205
diff
changeset
|
41 const std::string& path) |
1802 | 42 { |
2205
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
43 OrthancPlugins::MemoryBuffer dicom(context_); |
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
44 dicom.ReadFile(path); |
1802 | 45 |
2214 | 46 if (matcher.IsMatch(dicom)) |
1802 | 47 { |
48 // This DICOM file matches the worklist query, add it to the answers | |
2206
27106f7e3759
more refactoring of the worklist sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2205
diff
changeset
|
49 OrthancPluginErrorCode code = OrthancPluginWorklistAddAnswer |
2205
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
50 (context_, answers, query, dicom.GetData(), dicom.GetSize()); |
1802 | 51 |
2206
27106f7e3759
more refactoring of the worklist sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2205
diff
changeset
|
52 if (code != OrthancPluginErrorCode_Success) |
27106f7e3759
more refactoring of the worklist sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2205
diff
changeset
|
53 { |
27106f7e3759
more refactoring of the worklist sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2205
diff
changeset
|
54 OrthancPlugins::LogError(context_, "Error while adding an answer to a worklist request"); |
2234
a78d15509a1c
cleaner separation of PluginException
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
55 ORTHANC_PLUGINS_THROW_PLUGIN_ERROR_CODE(code); |
2206
27106f7e3759
more refactoring of the worklist sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2205
diff
changeset
|
56 } |
2289
89d17c72287b
Modality worklist: added logs to display the number of files parsed and number of matches
Alain Mazy <alain@mazy.be>
parents:
2268
diff
changeset
|
57 |
89d17c72287b
Modality worklist: added logs to display the number of files parsed and number of matches
Alain Mazy <alain@mazy.be>
parents:
2268
diff
changeset
|
58 return true; |
2206
27106f7e3759
more refactoring of the worklist sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2205
diff
changeset
|
59 } |
2289
89d17c72287b
Modality worklist: added logs to display the number of files parsed and number of matches
Alain Mazy <alain@mazy.be>
parents:
2268
diff
changeset
|
60 |
89d17c72287b
Modality worklist: added logs to display the number of files parsed and number of matches
Alain Mazy <alain@mazy.be>
parents:
2268
diff
changeset
|
61 return false; |
1814 | 62 } |
63 | |
64 | |
2216
9a8fab016145
sample worklist plugin fine-tuning the C-Find query
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2215
diff
changeset
|
65 static OrthancPlugins::FindMatcher* CreateMatcher(const OrthancPluginWorklistQuery* query, |
2233
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
66 const char* issuerAet) |
2215
028214a95194
refactoring the worklist sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2214
diff
changeset
|
67 { |
2216
9a8fab016145
sample worklist plugin fine-tuning the C-Find query
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2215
diff
changeset
|
68 // Extract the DICOM instance underlying the C-Find query |
2215
028214a95194
refactoring the worklist sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2214
diff
changeset
|
69 OrthancPlugins::MemoryBuffer dicom(context_); |
028214a95194
refactoring the worklist sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2214
diff
changeset
|
70 dicom.GetDicomQuery(query); |
028214a95194
refactoring the worklist sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2214
diff
changeset
|
71 |
2216
9a8fab016145
sample worklist plugin fine-tuning the C-Find query
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2215
diff
changeset
|
72 // Convert the DICOM as JSON, and dump it to the user in "--verbose" mode |
9a8fab016145
sample worklist plugin fine-tuning the C-Find query
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2215
diff
changeset
|
73 Json::Value json; |
2289
89d17c72287b
Modality worklist: added logs to display the number of files parsed and number of matches
Alain Mazy <alain@mazy.be>
parents:
2268
diff
changeset
|
74 dicom.DicomToJson(json, OrthancPluginDicomToJsonFormat_Short, |
2216
9a8fab016145
sample worklist plugin fine-tuning the C-Find query
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2215
diff
changeset
|
75 static_cast<OrthancPluginDicomToJsonFlags>(0), 0); |
2289
89d17c72287b
Modality worklist: added logs to display the number of files parsed and number of matches
Alain Mazy <alain@mazy.be>
parents:
2268
diff
changeset
|
76 |
89d17c72287b
Modality worklist: added logs to display the number of files parsed and number of matches
Alain Mazy <alain@mazy.be>
parents:
2268
diff
changeset
|
77 OrthancPlugins::LogInfo(context_, "Received worklist query from remote modality " + |
2233
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
78 std::string(issuerAet) + ":\n" + json.toStyledString()); |
2216
9a8fab016145
sample worklist plugin fine-tuning the C-Find query
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2215
diff
changeset
|
79 |
2233
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
80 if (!filterIssuerAet_) |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
81 { |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
82 return new OrthancPlugins::FindMatcher(context_, query); |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
83 } |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
84 else |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
85 { |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
86 // Alternative sample showing how to fine-tune an incoming C-Find |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
87 // request, before matching it against the worklist database. The |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
88 // code below will restrict the original DICOM request by |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
89 // requesting the ScheduledStationAETitle to correspond to the AET |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
90 // of the C-Find issuer. This code will make the integration test |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
91 // "test_filter_issuer_aet" succeed (cf. the orthanc-tests repository). |
2216
9a8fab016145
sample worklist plugin fine-tuning the C-Find query
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2215
diff
changeset
|
92 |
2233
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
93 static const char* SCHEDULED_PROCEDURE_STEP_SEQUENCE = "0040,0100"; |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
94 static const char* SCHEDULED_STATION_AETITLE = "0040,0001"; |
2216
9a8fab016145
sample worklist plugin fine-tuning the C-Find query
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2215
diff
changeset
|
95 |
2233
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
96 if (!json.isMember(SCHEDULED_PROCEDURE_STEP_SEQUENCE)) |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
97 { |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
98 // Create a ScheduledProcedureStepSequence sequence, with one empty element |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
99 json[SCHEDULED_PROCEDURE_STEP_SEQUENCE] = Json::arrayValue; |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
100 json[SCHEDULED_PROCEDURE_STEP_SEQUENCE].append(Json::objectValue); |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
101 } |
2215
028214a95194
refactoring the worklist sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2214
diff
changeset
|
102 |
2233
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
103 Json::Value& v = json[SCHEDULED_PROCEDURE_STEP_SEQUENCE]; |
2216
9a8fab016145
sample worklist plugin fine-tuning the C-Find query
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2215
diff
changeset
|
104 |
2233
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
105 if (v.type() != Json::arrayValue || |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
106 v.size() != 1 || |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
107 v[0].type() != Json::objectValue) |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
108 { |
2236 | 109 ORTHANC_PLUGINS_THROW_EXCEPTION(BadFileFormat); |
2233
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
110 } |
2216
9a8fab016145
sample worklist plugin fine-tuning the C-Find query
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2215
diff
changeset
|
111 |
2233
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
112 // Set the ScheduledStationAETitle if none was provided |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
113 if (!v[0].isMember(SCHEDULED_STATION_AETITLE) || |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
114 v[0].type() != Json::stringValue || |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
115 v[0][SCHEDULED_STATION_AETITLE].asString().size() == 0 || |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
116 v[0][SCHEDULED_STATION_AETITLE].asString() == "*") |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
117 { |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
118 v[0][SCHEDULED_STATION_AETITLE] = issuerAet; |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
119 } |
2216
9a8fab016145
sample worklist plugin fine-tuning the C-Find query
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2215
diff
changeset
|
120 |
2233
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
121 if (json.isMember("0010,21c0") && |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
122 json["0010,21c0"].asString().size() == 0) |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
123 { |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
124 json.removeMember("0010,21c0"); |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
125 } |
2216
9a8fab016145
sample worklist plugin fine-tuning the C-Find query
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2215
diff
changeset
|
126 |
2233
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
127 // Encode the modified JSON as a DICOM instance, then convert it to a C-Find matcher |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
128 OrthancPlugins::MemoryBuffer modified(context_); |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
129 modified.CreateDicom(json, OrthancPluginCreateDicomFlags_None); |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
130 return new OrthancPlugins::FindMatcher(context_, modified); |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
131 } |
2215
028214a95194
refactoring the worklist sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2214
diff
changeset
|
132 } |
028214a95194
refactoring the worklist sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2214
diff
changeset
|
133 |
028214a95194
refactoring the worklist sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2214
diff
changeset
|
134 |
028214a95194
refactoring the worklist sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2214
diff
changeset
|
135 |
1802 | 136 OrthancPluginErrorCode Callback(OrthancPluginWorklistAnswers* answers, |
137 const OrthancPluginWorklistQuery* query, | |
2233
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
138 const char* issuerAet, |
1802 | 139 const char* calledAet) |
140 { | |
141 try | |
142 { | |
2215
028214a95194
refactoring the worklist sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2214
diff
changeset
|
143 // Construct an object to match the worklists in the database against the C-Find query |
2233
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
144 std::auto_ptr<OrthancPlugins::FindMatcher> matcher(CreateMatcher(query, issuerAet)); |
1911 | 145 |
2215
028214a95194
refactoring the worklist sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2214
diff
changeset
|
146 // Loop over the regular files in the database folder |
2289
89d17c72287b
Modality worklist: added logs to display the number of files parsed and number of matches
Alain Mazy <alain@mazy.be>
parents:
2268
diff
changeset
|
147 namespace fs = boost::filesystem; |
2214 | 148 |
2205
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
149 fs::path source(folder_); |
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
150 fs::directory_iterator end; |
2289
89d17c72287b
Modality worklist: added logs to display the number of files parsed and number of matches
Alain Mazy <alain@mazy.be>
parents:
2268
diff
changeset
|
151 int parsedFilesCount = 0; |
89d17c72287b
Modality worklist: added logs to display the number of files parsed and number of matches
Alain Mazy <alain@mazy.be>
parents:
2268
diff
changeset
|
152 int matchedWorklistCount = 0; |
2205
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
153 |
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
154 try |
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
155 { |
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
156 for (fs::directory_iterator it(source); it != end; ++it) |
1802 | 157 { |
2205
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
158 fs::file_type type(it->status().type()); |
1814 | 159 |
2205
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
160 if (type == fs::regular_file || |
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
161 type == fs::reparse_file) // cf. BitBucket issue #11 |
1802 | 162 { |
2205
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
163 std::string extension = fs::extension(it->path()); |
2206
27106f7e3759
more refactoring of the worklist sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2205
diff
changeset
|
164 std::transform(extension.begin(), extension.end(), extension.begin(), tolower); // Convert to lowercase |
2205
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
165 |
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
166 if (extension == ".wl") |
1802 | 167 { |
2289
89d17c72287b
Modality worklist: added logs to display the number of files parsed and number of matches
Alain Mazy <alain@mazy.be>
parents:
2268
diff
changeset
|
168 parsedFilesCount++; |
2215
028214a95194
refactoring the worklist sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2214
diff
changeset
|
169 // We found a worklist (i.e. a DICOM find with extension ".wl"), match it against the query |
2289
89d17c72287b
Modality worklist: added logs to display the number of files parsed and number of matches
Alain Mazy <alain@mazy.be>
parents:
2268
diff
changeset
|
170 if (MatchWorklist(answers, query, *matcher, it->path().string())) |
89d17c72287b
Modality worklist: added logs to display the number of files parsed and number of matches
Alain Mazy <alain@mazy.be>
parents:
2268
diff
changeset
|
171 { |
89d17c72287b
Modality worklist: added logs to display the number of files parsed and number of matches
Alain Mazy <alain@mazy.be>
parents:
2268
diff
changeset
|
172 OrthancPlugins::LogInfo(context_, "Worklist matched: " + it->path().string()); |
89d17c72287b
Modality worklist: added logs to display the number of files parsed and number of matches
Alain Mazy <alain@mazy.be>
parents:
2268
diff
changeset
|
173 matchedWorklistCount++; |
89d17c72287b
Modality worklist: added logs to display the number of files parsed and number of matches
Alain Mazy <alain@mazy.be>
parents:
2268
diff
changeset
|
174 } |
1802 | 175 } |
176 } | |
177 } | |
2289
89d17c72287b
Modality worklist: added logs to display the number of files parsed and number of matches
Alain Mazy <alain@mazy.be>
parents:
2268
diff
changeset
|
178 |
89d17c72287b
Modality worklist: added logs to display the number of files parsed and number of matches
Alain Mazy <alain@mazy.be>
parents:
2268
diff
changeset
|
179 std::ostringstream message; |
89d17c72287b
Modality worklist: added logs to display the number of files parsed and number of matches
Alain Mazy <alain@mazy.be>
parents:
2268
diff
changeset
|
180 message << "Worklist C-Find: parsed " << parsedFilesCount << " files, found " << matchedWorklistCount << " match(es)"; |
89d17c72287b
Modality worklist: added logs to display the number of files parsed and number of matches
Alain Mazy <alain@mazy.be>
parents:
2268
diff
changeset
|
181 OrthancPlugins::LogInfo(context_, message.str()); |
89d17c72287b
Modality worklist: added logs to display the number of files parsed and number of matches
Alain Mazy <alain@mazy.be>
parents:
2268
diff
changeset
|
182 |
1802 | 183 } |
2205
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
184 catch (fs::filesystem_error&) |
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
185 { |
2206
27106f7e3759
more refactoring of the worklist sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2205
diff
changeset
|
186 OrthancPlugins::LogError(context_, "Inexistent folder while scanning for worklists: " + source.string()); |
2205
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
187 return OrthancPluginErrorCode_DirectoryExpected; |
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
188 } |
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
189 |
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
190 // Uncomment the following line if too many answers are to be returned |
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
191 // OrthancPluginMarkWorklistAnswersIncomplete(context_, answers); |
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
192 |
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
193 return OrthancPluginErrorCode_Success; |
1802 | 194 } |
2205
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
195 catch (OrthancPlugins::PluginException& e) |
1802 | 196 { |
2205
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
197 return e.GetErrorCode(); |
1802 | 198 } |
199 } | |
200 | |
201 | |
202 extern "C" | |
203 { | |
204 ORTHANC_PLUGINS_API int32_t OrthancPluginInitialize(OrthancPluginContext* c) | |
205 { | |
206 context_ = c; | |
207 | |
208 /* Check the version of the Orthanc core */ | |
209 if (OrthancPluginCheckVersion(c) == 0) | |
210 { | |
2289
89d17c72287b
Modality worklist: added logs to display the number of files parsed and number of matches
Alain Mazy <alain@mazy.be>
parents:
2268
diff
changeset
|
211 OrthancPlugins::ReportMinimalOrthancVersion(context_, |
2268
ce5c13b95dac
New function: OrthancPluginRegisterIncomingHttpRequestFilter2()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2244
diff
changeset
|
212 ORTHANC_PLUGINS_MINIMAL_MAJOR_NUMBER, |
ce5c13b95dac
New function: OrthancPluginRegisterIncomingHttpRequestFilter2()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2244
diff
changeset
|
213 ORTHANC_PLUGINS_MINIMAL_MINOR_NUMBER, |
ce5c13b95dac
New function: OrthancPluginRegisterIncomingHttpRequestFilter2()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2244
diff
changeset
|
214 ORTHANC_PLUGINS_MINIMAL_REVISION_NUMBER); |
1802 | 215 return -1; |
216 } | |
217 | |
2205
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
218 OrthancPlugins::LogWarning(context_, "Sample worklist plugin is initializing"); |
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
219 OrthancPluginSetDescription(context_, "Serve DICOM modality worklists from a folder with Orthanc."); |
1802 | 220 |
2205
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
221 OrthancPlugins::OrthancConfiguration configuration(context_); |
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
222 |
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
223 OrthancPlugins::OrthancConfiguration worklists; |
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
224 configuration.GetSection(worklists, "Worklists"); |
1808
9c2ffc4e938b
configuration of the sample modality worklists plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1802
diff
changeset
|
225 |
2205
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
226 bool enabled = worklists.GetBooleanValue("Enable", false); |
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
227 if (enabled) |
1802 | 228 { |
2205
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
229 if (worklists.LookupStringValue(folder_, "Database")) |
1802 | 230 { |
2205
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
231 OrthancPlugins::LogWarning(context_, "The database of worklists will be read from folder: " + folder_); |
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
232 OrthancPluginRegisterWorklistCallback(context_, Callback); |
1802 | 233 } |
1808
9c2ffc4e938b
configuration of the sample modality worklists plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1802
diff
changeset
|
234 else |
9c2ffc4e938b
configuration of the sample modality worklists plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1802
diff
changeset
|
235 { |
2205
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
236 OrthancPlugins::LogError(context_, "The configuration option \"Worklists.Database\" must contain a path"); |
395522e46b2b
refactoring of the worklist sample using OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1911
diff
changeset
|
237 return -1; |
1808
9c2ffc4e938b
configuration of the sample modality worklists plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1802
diff
changeset
|
238 } |
2233
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
239 |
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
240 filterIssuerAet_ = worklists.GetBooleanValue("FilterIssuerAet", false); |
1802 | 241 } |
242 else | |
243 { | |
2233
8f5b60647654
worklist sample: FilterIssuerAet configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2216
diff
changeset
|
244 OrthancPlugins::LogWarning(context_, "Worklist server is disabled by the configuration file"); |
1808
9c2ffc4e938b
configuration of the sample modality worklists plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1802
diff
changeset
|
245 } |
1802 | 246 |
247 return 0; | |
248 } | |
249 | |
250 | |
251 ORTHANC_PLUGINS_API void OrthancPluginFinalize() | |
252 { | |
253 OrthancPluginLogWarning(context_, "Sample worklist plugin is finalizing"); | |
254 } | |
255 | |
256 | |
257 ORTHANC_PLUGINS_API const char* OrthancPluginGetName() | |
258 { | |
1808
9c2ffc4e938b
configuration of the sample modality worklists plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1802
diff
changeset
|
259 return "worklists"; |
1802 | 260 } |
261 | |
262 | |
263 ORTHANC_PLUGINS_API const char* OrthancPluginGetVersion() | |
264 { | |
1808
9c2ffc4e938b
configuration of the sample modality worklists plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1802
diff
changeset
|
265 return MODALITY_WORKLISTS_VERSION; |
1802 | 266 } |
267 } |