annotate OrthancServer/Sources/Database/BaseDatabaseWrapper.cpp @ 5747:796cb17db15c find-refactoring

merged default -> find-refactoring
author Alain Mazy <am@orthanc.team>
date Mon, 02 Sep 2024 17:17:22 +0200
parents 89d559e67b03
children ca06dde85358
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5516
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
1 /**
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
2 * Orthanc - A Lightweight, RESTful DICOM Store
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
4 * Department, University Hospital of Liege, Belgium
5640
f7adfb22e20e updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5518
diff changeset
5 * Copyright (C) 2017-2023 Osimis S.A., Belgium
f7adfb22e20e updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5518
diff changeset
6 * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium
5516
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
7 * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
8 *
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
9 * This program is free software: you can redistribute it and/or
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
10 * modify it under the terms of the GNU General Public License as
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
11 * published by the Free Software Foundation, either version 3 of the
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
12 * License, or (at your option) any later version.
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
13 *
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
14 * This program is distributed in the hope that it will be useful, but
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
17 * General Public License for more details.
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
18 *
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
19 * You should have received a copy of the GNU General Public License
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
21 **/
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
22
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
23
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
24 #include "BaseDatabaseWrapper.h"
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
25
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
26 #include "../../../OrthancFramework/Sources/OrthancException.h"
5593
862b54b4cfe2 implemented the default multi-stage find/expand
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5518
diff changeset
27 #include "Compatibility/GenericFind.h"
5516
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
28
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
29 namespace Orthanc
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
30 {
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
31 int64_t BaseDatabaseWrapper::BaseTransaction::IncrementGlobalProperty(GlobalProperty property,
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
32 int64_t increment,
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
33 bool shared)
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
34 {
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
35 throw OrthancException(ErrorCode_NotImplemented); // Not supported
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
36 }
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
37
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
38
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
39 void BaseDatabaseWrapper::BaseTransaction::UpdateAndGetStatistics(int64_t& patientsCount,
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
40 int64_t& studiesCount,
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
41 int64_t& seriesCount,
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
42 int64_t& instancesCount,
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
43 int64_t& compressedSize,
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
44 int64_t& uncompressedSize)
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
45 {
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
46 throw OrthancException(ErrorCode_NotImplemented); // Not supported
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
47 }
5518
bbe45a71f5cd reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5516
diff changeset
48
bbe45a71f5cd reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5516
diff changeset
49
5593
862b54b4cfe2 implemented the default multi-stage find/expand
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5518
diff changeset
50 void BaseDatabaseWrapper::BaseTransaction::ExecuteFind(FindResponse& response,
5677
dc96401dbe88 starting the refactoring of /tools/find
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5641
diff changeset
51 const FindRequest& request,
dc96401dbe88 starting the refactoring of /tools/find
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5641
diff changeset
52 const Capabilities& capabilities)
5593
862b54b4cfe2 implemented the default multi-stage find/expand
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5518
diff changeset
53 {
862b54b4cfe2 implemented the default multi-stage find/expand
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5518
diff changeset
54 throw OrthancException(ErrorCode_NotImplemented); // Not supported
862b54b4cfe2 implemented the default multi-stage find/expand
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5518
diff changeset
55 }
862b54b4cfe2 implemented the default multi-stage find/expand
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5518
diff changeset
56
862b54b4cfe2 implemented the default multi-stage find/expand
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5518
diff changeset
57
862b54b4cfe2 implemented the default multi-stage find/expand
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5518
diff changeset
58 void BaseDatabaseWrapper::BaseTransaction::ExecuteFind(std::list<std::string>& identifiers,
5720
89d559e67b03 fix compatibility with old database plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5677
diff changeset
59 const Capabilities& capabilities,
89d559e67b03 fix compatibility with old database plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5677
diff changeset
60 const FindRequest& request)
5593
862b54b4cfe2 implemented the default multi-stage find/expand
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5518
diff changeset
61 {
862b54b4cfe2 implemented the default multi-stage find/expand
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5518
diff changeset
62 Compatibility::GenericFind find(*this);
5720
89d559e67b03 fix compatibility with old database plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5677
diff changeset
63 find.ExecuteFind(identifiers, capabilities, request);
5593
862b54b4cfe2 implemented the default multi-stage find/expand
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5518
diff changeset
64 }
862b54b4cfe2 implemented the default multi-stage find/expand
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5518
diff changeset
65
862b54b4cfe2 implemented the default multi-stage find/expand
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5518
diff changeset
66
862b54b4cfe2 implemented the default multi-stage find/expand
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5518
diff changeset
67 void BaseDatabaseWrapper::BaseTransaction::ExecuteExpand(FindResponse& response,
5720
89d559e67b03 fix compatibility with old database plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5677
diff changeset
68 const Capabilities& capabilities,
5593
862b54b4cfe2 implemented the default multi-stage find/expand
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5518
diff changeset
69 const FindRequest& request,
862b54b4cfe2 implemented the default multi-stage find/expand
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5518
diff changeset
70 const std::string& identifier)
862b54b4cfe2 implemented the default multi-stage find/expand
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5518
diff changeset
71 {
862b54b4cfe2 implemented the default multi-stage find/expand
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5518
diff changeset
72 Compatibility::GenericFind find(*this);
5720
89d559e67b03 fix compatibility with old database plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5677
diff changeset
73 find.ExecuteExpand(response, capabilities, request, identifier);
5593
862b54b4cfe2 implemented the default multi-stage find/expand
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5518
diff changeset
74 }
862b54b4cfe2 implemented the default multi-stage find/expand
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5518
diff changeset
75
862b54b4cfe2 implemented the default multi-stage find/expand
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5518
diff changeset
76
5518
bbe45a71f5cd reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5516
diff changeset
77 uint64_t BaseDatabaseWrapper::MeasureLatency()
bbe45a71f5cd reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5516
diff changeset
78 {
bbe45a71f5cd reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5516
diff changeset
79 throw OrthancException(ErrorCode_NotImplemented); // only implemented in V4
bbe45a71f5cd reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5516
diff changeset
80 }
5516
d9c9f3c57f4f reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
81 }