Mercurial > hg > orthanc-databases
annotate PostgreSQL/Plugins/IndexPlugin.cpp @ 493:0a8168522165
news
author | Alain Mazy <am@osimis.io> |
---|---|
date | Fri, 22 Mar 2024 15:27:59 +0100 |
parents | af6998ed73dd |
children | 54d518dcd74a |
rev | line source |
---|---|
0 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
459
ecd0b719cff5
update year to 2024
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
389
diff
changeset
|
5 * Copyright (C) 2017-2024 Osimis S.A., Belgium |
ecd0b719cff5
update year to 2024
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
389
diff
changeset
|
6 * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
0 | 7 * |
8 * This program is free software: you can redistribute it and/or | |
9 * modify it under the terms of the GNU Affero General Public License | |
10 * as published by the Free Software Foundation, either version 3 of | |
11 * the License, or (at your option) any later version. | |
12 * | |
13 * This program is distributed in the hope that it will be useful, but | |
14 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
16 * Affero General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU Affero General Public License | |
19 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
20 **/ | |
21 | |
22 | |
23 #include "PostgreSQLIndex.h" | |
24
17f849b2af34
sharing plugin initialization code
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
11
diff
changeset
|
24 #include "../../Framework/Plugins/PluginInitialization.h" |
0 | 25 |
152 | 26 #include <Logging.h> |
267 | 27 #include <Toolbox.h> |
0 | 28 |
381
9cde77ca9ad9
initializing and finalizing protobuf
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
359
diff
changeset
|
29 #include <google/protobuf/any.h> |
9cde77ca9ad9
initializing and finalizing protobuf
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
359
diff
changeset
|
30 |
492
af6998ed73dd
fix deprecated calls
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
459
diff
changeset
|
31 #define ORTHANC_PLUGIN_NAME "postgresql-index" |
af6998ed73dd
fix deprecated calls
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
459
diff
changeset
|
32 |
0 | 33 |
34 extern "C" | |
35 { | |
36 ORTHANC_PLUGINS_API int32_t OrthancPluginInitialize(OrthancPluginContext* context) | |
37 { | |
381
9cde77ca9ad9
initializing and finalizing protobuf
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
359
diff
changeset
|
38 GOOGLE_PROTOBUF_VERIFY_VERSION; |
9cde77ca9ad9
initializing and finalizing protobuf
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
359
diff
changeset
|
39 |
492
af6998ed73dd
fix deprecated calls
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
459
diff
changeset
|
40 if (!OrthancDatabases::InitializePlugin(context, ORTHANC_PLUGIN_NAME, "PostgreSQL", true)) |
0 | 41 { |
42 return -1; | |
43 } | |
44 | |
267 | 45 Orthanc::Toolbox::InitializeOpenSsl(); |
46 | |
62
eedd082355f9
fix for compatibility with simplified OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
28
diff
changeset
|
47 OrthancPlugins::OrthancConfiguration configuration; |
0 | 48 |
49 if (!configuration.IsSection("PostgreSQL")) | |
50 { | |
51 LOG(WARNING) << "No available configuration for the PostgreSQL index plugin"; | |
52 return 0; | |
53 } | |
54 | |
55 OrthancPlugins::OrthancConfiguration postgresql; | |
56 configuration.GetSection(postgresql, "PostgreSQL"); | |
57 | |
58 bool enable; | |
59 if (!postgresql.LookupBooleanValue(enable, "EnableIndex") || | |
60 !enable) | |
61 { | |
62 LOG(WARNING) << "The PostgreSQL index is currently disabled, set \"EnableIndex\" " | |
63 << "to \"true\" in the \"PostgreSQL\" section of the configuration file of Orthanc"; | |
64 return 0; | |
65 } | |
66 | |
67 try | |
68 { | |
253
3bc442765b88
new configuration option: "IndexConnectionsCount"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
234
diff
changeset
|
69 const size_t countConnections = postgresql.GetUnsignedIntegerValue("IndexConnectionsCount", 1); |
3bc442765b88
new configuration option: "IndexConnectionsCount"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
234
diff
changeset
|
70 |
0 | 71 OrthancDatabases::PostgreSQLParameters parameters(postgresql); |
234
d1b124d116c1
PostgreSQL index plugin handles retries for collisions between multiple writers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
222
diff
changeset
|
72 OrthancDatabases::IndexBackend::Register( |
253
3bc442765b88
new configuration option: "IndexConnectionsCount"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
234
diff
changeset
|
73 new OrthancDatabases::PostgreSQLIndex(context, parameters), countConnections, |
3bc442765b88
new configuration option: "IndexConnectionsCount"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
234
diff
changeset
|
74 parameters.GetMaxConnectionRetries()); |
0 | 75 } |
2
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
76 catch (Orthanc::OrthancException& e) |
0 | 77 { |
2
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
78 LOG(ERROR) << e.What(); |
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
79 return -1; |
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
80 } |
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
81 catch (...) |
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
82 { |
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
83 LOG(ERROR) << "Native exception while initializing the plugin"; |
0 | 84 return -1; |
85 } | |
86 | |
87 return 0; | |
88 } | |
89 | |
90 | |
91 ORTHANC_PLUGINS_API void OrthancPluginFinalize() | |
92 { | |
11 | 93 LOG(WARNING) << "PostgreSQL index is finalizing"; |
222
c8e06b41feec
refactoring registration/finalization of index backend
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
213
diff
changeset
|
94 OrthancDatabases::IndexBackend::Finalize(); |
267 | 95 Orthanc::Toolbox::FinalizeOpenSsl(); |
381
9cde77ca9ad9
initializing and finalizing protobuf
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
359
diff
changeset
|
96 google::protobuf::ShutdownProtobufLibrary(); |
0 | 97 } |
98 | |
99 | |
100 ORTHANC_PLUGINS_API const char* OrthancPluginGetName() | |
101 { | |
492
af6998ed73dd
fix deprecated calls
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
459
diff
changeset
|
102 return ORTHANC_PLUGIN_NAME; |
0 | 103 } |
104 | |
105 | |
106 ORTHANC_PLUGINS_API const char* OrthancPluginGetVersion() | |
107 { | |
108 return ORTHANC_PLUGIN_VERSION; | |
109 } | |
110 } |