1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
|
/************************************************************************
*
* Copyright (C) 2018-2025 IRCAD France
* Copyright (C) 2018-2020 IHU Strasbourg
*
* This file is part of Sight.
*
* Sight is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Sight is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with Sight. If not, see <https://www.gnu.org/licenses/>.
*
***********************************************************************/
#include "query_editor.hpp"
#include <core/runtime/path.hpp>
#include <data/image_series.hpp>
#include <io/http/helper/series.hpp>
#include <service/macros.hpp>
#include <ui/__/dialog/message.hpp>
#include <ui/qt/container/widget.hpp>
#include <QGridLayout>
#include <QHBoxLayout>
#include <QLabel>
#include <filesystem>
namespace sight::module::io::dicomweb
{
static const std::string ADVANCED_CONFIG = "advanced";
static const std::string ICON_PATH_CONFIG = "icon";
static const std::string ICON_WIDTH_CONFIG = "width";
static const std::string ICON_HEIGHT_CONFIG = "height";
//------------------------------------------------------------------------------
query_editor::query_editor() noexcept =
default;
//------------------------------------------------------------------------------
query_editor::~query_editor() noexcept =
default;
//------------------------------------------------------------------------------
void query_editor::configuring()
{
sight::ui::service::initialize();
const auto config_tree = this->get_config();
const auto config = config_tree.get_child_optional("config.<xmlattr>");
if(config)
{
const auto icon_path = config->get_optional<std::string>(ICON_PATH_CONFIG);
if(icon_path)
{
m_icon_path = core::runtime::get_module_resource_file_path(icon_path.value());
}
m_advanced = config->get<bool>(ADVANCED_CONFIG, m_advanced);
m_icon_width = config->get<unsigned int>(ICON_WIDTH_CONFIG, m_icon_width);
m_icon_height = config->get<unsigned int>(ICON_HEIGHT_CONFIG, m_icon_height);
}
}
//------------------------------------------------------------------------------
void query_editor::starting()
{
sight::ui::service::create();
auto qt_container = std::dynamic_pointer_cast<sight::ui::qt::container::widget>(get_container());
// Main Widget
auto* layout = new QGridLayout();
m_patient_name_line_edit = new QLineEdit();
m_patient_name_query_button = new QPushButton("Search");
layout->addWidget(new QLabel("Patient name:"), 0, 0);
layout->addWidget(m_patient_name_line_edit, 0, 1);
layout->addWidget(m_patient_name_query_button, 0, 2);
m_study_date_query_button = new QPushButton("Search");
if(!m_icon_path.empty())
{
QIcon icon(QString::fromStdString(m_icon_path.string()));
m_patient_name_query_button->setText("");
m_study_date_query_button->setText("");
m_patient_name_query_button->setIcon(icon);
m_study_date_query_button->setIcon(icon);
if(m_icon_width > 0 && m_icon_height > 0)
{
m_patient_name_query_button->setIconSize(QSize(int(m_icon_width), int(m_icon_height)));
m_study_date_query_button->setIconSize(QSize(int(m_icon_width), int(m_icon_height)));
}
}
m_begin_study_date_edit = new QDateEdit();
m_begin_study_date_edit->setDate(QDate::currentDate());
m_begin_study_date_edit->setDisplayFormat("dd.MM.yyyy");
m_end_study_date_edit = new QDateEdit();
m_end_study_date_edit->setDate(QDate::currentDate());
m_end_study_date_edit->setDisplayFormat("dd.MM.yyyy");
auto* date_layout = new QHBoxLayout();
layout->addWidget(new QLabel("Study date:"), 1, 0);
layout->addLayout(date_layout, 1, 1);
layout->addWidget(m_study_date_query_button, 1, 2);
date_layout->addWidget(m_begin_study_date_edit);
date_layout->addWidget(m_end_study_date_edit);
//Set layout
qt_container->set_layout(layout);
// Connect the signals
QObject::connect(m_patient_name_line_edit, SIGNAL(returnPressed()), this, SLOT(query_patient_name()));
QObject::connect(m_patient_name_query_button, SIGNAL(clicked()), this, SLOT(query_patient_name()));
QObject::connect(m_study_date_query_button, SIGNAL(clicked()), this, SLOT(query_study_date()));
QObject::connect(m_begin_study_date_edit, SIGNAL(dateChanged(QDate)), this, SLOT(query_study_date()));
QObject::connect(m_end_study_date_edit, SIGNAL(dateChanged(QDate)), this, SLOT(query_study_date()));
}
//------------------------------------------------------------------------------
void query_editor::stopping()
{
{
const auto series_set = m_series_set.lock();
const auto scoped_emitter = series_set->scoped_emit();
// Delete old series from the series_set.
series_set->clear();
}
// Disconnect the signals
QObject::disconnect(m_patient_name_line_edit, SIGNAL(returnPressed()), this, SLOT(query_patient_name()));
QObject::disconnect(m_patient_name_query_button, SIGNAL(clicked()), this, SLOT(query_patient_name()));
QObject::disconnect(m_study_date_query_button, SIGNAL(clicked()), this, SLOT(query_study_date()));
QObject::disconnect(m_begin_study_date_edit, SIGNAL(dateChanged(QDate)), this, SLOT(query_study_date()));
QObject::disconnect(m_end_study_date_edit, SIGNAL(dateChanged(QDate)), this, SLOT(query_study_date()));
this->destroy();
}
//------------------------------------------------------------------------------
void query_editor::updating()
{
}
//------------------------------------------------------------------------------
void query_editor::query_patient_name()
{
try
{
// Vector of all Series that will be retrieved.
data::series_set::container_t all_series;
// Find series according to patient's name
QJsonObject query;
query.insert("PatientName", m_patient_name_line_edit->text().toStdString().c_str());
QJsonObject body;
body.insert("Level", "Series");
body.insert("Query", query);
body.insert("Limit", 0);
/// Url PACS
const std::string pacs_server("http://" + *m_server_hostname + ":" + std::to_string(*m_server_port));
/// Orthanc "/tools/find" route. POST a JSON to get all Series corresponding to the SeriesInstanceUID.
auto request = sight::io::http::request::New(pacs_server + "/tools/find");
const QByteArray& series_answer = m_client_qt.post(request, QJsonDocument(body).toJson());
QJsonDocument json_response = QJsonDocument::fromJson(series_answer);
QJsonArray series_array = json_response.array();
const auto series_array_size = series_array.count();
for(auto i = 0 ; i < series_array_size ; ++i)
{
const std::string& series_uid = series_array.at(i).toString().toStdString();
const std::string instances_list_url(pacs_server + "/series/" + series_uid);
const QByteArray& instances_answer = m_client_qt.get(sight::io::http::request::New(instances_list_url));
json_response = QJsonDocument::fromJson(instances_answer);
const QJsonObject& json_obj = json_response.object();
const QJsonArray& instance_array = json_obj["Instances"].toArray();
// Retrieve the first instance for the needed information
const std::string& instance_uid = instance_array.at(0).toString().toStdString();
const std::string instance_url(pacs_server + "/instances/" + instance_uid + "/simplified-tags");
const QByteArray& instance = m_client_qt.get(sight::io::http::request::New(instance_url));
QJsonObject series_json = QJsonDocument::fromJson(instance).object();
series_json.insert("NumberOfSeriesRelatedInstances", instance_array.count());
// Convert response to DicomSeries
data::series_set::container_t series = sight::io::http::helper::series::to_fw_med_data(series_json);
all_series.insert(std::end(all_series), std::begin(series), std::end(series));
this->update_series_set(all_series);
}
}
catch(sight::io::http::exceptions::base& exception)
{
sight::module::io::dicomweb::query_editor::display_error_message(exception.what());
}
}
//------------------------------------------------------------------------------
void query_editor::query_study_date()
{
try
{
// Vector of all Series that will be retrieved.
data::series_set::container_t all_series;
// Find Studies according to their StudyDate
QJsonObject query;
const std::string& begin_date = m_begin_study_date_edit->date().toString("yyyyMMdd").toStdString();
const std::string& end_date = m_end_study_date_edit->date().toString("yyyyMMdd").toStdString();
const std::string& date_range = begin_date + "-" + end_date;
query.insert("StudyDate", date_range.c_str());
QJsonObject body;
body.insert("Level", "Studies");
body.insert("Query", query);
body.insert("Limit", 0);
/// Url PACS
const std::string pacs_server("http://" + *m_server_hostname + ":" + std::to_string(*m_server_port));
/// Orthanc "/tools/find" route. POST a JSON to get all Studies corresponding to StudyDate range.
sight::io::http::request::sptr request = sight::io::http::request::New(pacs_server + "/tools/find");
QByteArray studies_list_answer;
try
{
studies_list_answer = m_client_qt.post(request, QJsonDocument(body).toJson());
}
catch(sight::io::http::exceptions::host_not_found& exception)
{
std::stringstream ss;
ss << "Host not found:\n"
<< " Please check your configuration: \n"
<< "Pacs host name: " << *m_server_hostname << "\n"
<< "Pacs port: " << *m_server_port << "\n";
sight::module::io::dicomweb::query_editor::display_error_message(ss.str());
SIGHT_WARN(exception.what());
}
QJsonDocument json_response = QJsonDocument::fromJson(studies_list_answer);
const QJsonArray& studies_list_array = json_response.array();
const auto studies_list_array_size = studies_list_array.count();
for(auto i = 0 ; i < studies_list_array_size ; ++i)
{
const std::string& studies_uid = studies_list_array.at(i).toString().toStdString();
const std::string studies_url(pacs_server + "/studies/" + studies_uid);
const QByteArray& studies_answer = m_client_qt.get(sight::io::http::request::New(studies_url));
json_response = QJsonDocument::fromJson(studies_answer);
const QJsonObject& json_obj = json_response.object();
const QJsonArray& series_array = json_obj["Series"].toArray();
const auto series_array_size = series_array.count();
for(auto j = 0 ; j < series_array_size ; ++j)
{
const std::string& series_uid = series_array.at(j).toString().toStdString();
const std::string instances_url(pacs_server + "/series/" + series_uid);
const QByteArray& instances_answer = m_client_qt.get(sight::io::http::request::New(instances_url));
json_response = QJsonDocument::fromJson(instances_answer);
const QJsonObject& another_json_obj = json_response.object();
const QJsonArray& instance_array = another_json_obj["Instances"].toArray();
// Retrieve the first instance for the needed information
const std::string& instance_uid = instance_array.at(0).toString().toStdString();
const std::string instance_url(pacs_server + "/instances/" + instance_uid + "/simplified-tags");
const QByteArray& instance = m_client_qt.get(sight::io::http::request::New(instance_url));
QJsonObject series_json = QJsonDocument::fromJson(instance).object();
series_json.insert("NumberOfSeriesRelatedInstances", instance_array.count());
// Convert response to DicomSeries
data::series_set::container_t series = sight::io::http::helper::series::to_fw_med_data(series_json);
all_series.insert(std::end(all_series), std::begin(series), std::end(series));
this->update_series_set(all_series);
}
}
}
catch(sight::io::http::exceptions::base& exception)
{
std::stringstream ss;
ss << "Unknown error.";
sight::module::io::dicomweb::query_editor::display_error_message(ss.str());
SIGHT_WARN(exception.what());
}
}
//------------------------------------------------------------------------------
void query_editor::update_series_set(const data::series_set::container_t& _series)
{
const auto series_set = m_series_set.lock();
const auto scoped_emitter = series_set->scoped_emit();
// Delete old series from the series_set
series_set->clear();
// Push new series in the series_set
for(const auto& s : _series)
{
const auto& series = std::dynamic_pointer_cast<data::series>(s);
series_set->push_back(series);
}
}
//------------------------------------------------------------------------------
void query_editor::display_error_message(const std::string& _message)
{
sight::ui::dialog::message message_box;
message_box.set_title("Error");
message_box.set_message(_message);
message_box.set_icon(ui::dialog::message::critical);
message_box.add_button(ui::dialog::message::ok);
message_box.show();
}
//------------------------------------------------------------------------------
} // namespace sight::module::io::dicomweb
|