Mercurial > hg > orthanc-databases
annotate MySQL/Plugins/IndexPlugin.cpp @ 382:97f12bcd1826 db-protobuf
implemented finalize_transaction()
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 31 Mar 2023 17:28:44 +0200 |
parents | 9cde77ca9ad9 |
children | 3d6886f3e5b3 |
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 | |
359
16aac0287485
copyright upgraded to 2022
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
253
diff
changeset
|
5 * Copyright (C) 2017-2022 Osimis S.A., Belgium |
16aac0287485
copyright upgraded to 2022
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
253
diff
changeset
|
6 * Copyright (C) 2021-2022 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 "MySQLIndex.h" | |
24 #include "../../Framework/MySQL/MySQLDatabase.h" | |
24
17f849b2af34
sharing plugin initialization code
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2
diff
changeset
|
25 #include "../../Framework/Plugins/PluginInitialization.h" |
0 | 26 |
152 | 27 #include <HttpClient.h> |
28 #include <Logging.h> | |
29 #include <Toolbox.h> | |
0 | 30 |
381
9cde77ca9ad9
initializing and finalizing protobuf
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
359
diff
changeset
|
31 #include <google/protobuf/any.h> |
9cde77ca9ad9
initializing and finalizing protobuf
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
359
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 |
28
c0cb5d2cd696
checks depending on Orthanc version
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
24
diff
changeset
|
40 if (!OrthancDatabases::InitializePlugin(context, "MySQL", true)) |
0 | 41 { |
42 return -1; | |
43 } | |
44 | |
42 | 45 Orthanc::Toolbox::InitializeOpenSsl(); |
40
5600949bfb12
preparing for release
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
28
diff
changeset
|
46 Orthanc::HttpClient::GlobalInitialize(); |
5600949bfb12
preparing for release
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
28
diff
changeset
|
47 |
62
eedd082355f9
fix for compatibility with simplified OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
42
diff
changeset
|
48 OrthancPlugins::OrthancConfiguration configuration; |
0 | 49 |
50 if (!configuration.IsSection("MySQL")) | |
51 { | |
52 LOG(WARNING) << "No available configuration for the MySQL index plugin"; | |
53 return 0; | |
54 } | |
55 | |
56 OrthancPlugins::OrthancConfiguration mysql; | |
57 configuration.GetSection(mysql, "MySQL"); | |
58 | |
59 bool enable; | |
60 if (!mysql.LookupBooleanValue(enable, "EnableIndex") || | |
61 !enable) | |
62 { | |
63 LOG(WARNING) << "The MySQL index is currently disabled, set \"EnableIndex\" " | |
64 << "to \"true\" in the \"MySQL\" section of the configuration file of Orthanc"; | |
65 return 0; | |
66 } | |
67 | |
68 try | |
69 { | |
253
3bc442765b88
new configuration option: "IndexConnectionsCount"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
234
diff
changeset
|
70 const size_t countConnections = mysql.GetUnsignedIntegerValue("IndexConnectionsCount", 1); |
3bc442765b88
new configuration option: "IndexConnectionsCount"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
234
diff
changeset
|
71 |
163
4d32c9c8d6c0
Added support for TLS connections
Alain Mazy <alain@mazy.be>
parents:
157
diff
changeset
|
72 OrthancDatabases::MySQLParameters parameters(mysql, configuration); |
234
d1b124d116c1
PostgreSQL index plugin handles retries for collisions between multiple writers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
222
diff
changeset
|
73 OrthancDatabases::IndexBackend::Register( |
253
3bc442765b88
new configuration option: "IndexConnectionsCount"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
234
diff
changeset
|
74 new OrthancDatabases::MySQLIndex(context, parameters), countConnections, |
3bc442765b88
new configuration option: "IndexConnectionsCount"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
234
diff
changeset
|
75 parameters.GetMaxConnectionRetries()); |
0 | 76 } |
2
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
77 catch (Orthanc::OrthancException& e) |
0 | 78 { |
2
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
79 LOG(ERROR) << e.What(); |
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
80 return -1; |
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
81 } |
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
82 catch (...) |
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
83 { |
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
84 LOG(ERROR) << "Native exception while initializing the plugin"; |
0 | 85 return -1; |
86 } | |
87 | |
88 return 0; | |
89 } | |
90 | |
91 | |
92 ORTHANC_PLUGINS_API void OrthancPluginFinalize() | |
93 { | |
2
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
94 LOG(WARNING) << "MySQL index is finalizing"; |
222
c8e06b41feec
refactoring registration/finalization of index backend
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
213
diff
changeset
|
95 OrthancDatabases::IndexBackend::Finalize(); |
2
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
96 |
0 | 97 OrthancDatabases::MySQLDatabase::GlobalFinalization(); |
40
5600949bfb12
preparing for release
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
28
diff
changeset
|
98 Orthanc::HttpClient::GlobalFinalize(); |
42 | 99 Orthanc::Toolbox::FinalizeOpenSsl(); |
381
9cde77ca9ad9
initializing and finalizing protobuf
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
359
diff
changeset
|
100 google::protobuf::ShutdownProtobufLibrary(); |
0 | 101 } |
102 | |
103 | |
104 ORTHANC_PLUGINS_API const char* OrthancPluginGetName() | |
105 { | |
106 return "mysql-index"; | |
107 } | |
108 | |
109 | |
110 ORTHANC_PLUGINS_API const char* OrthancPluginGetVersion() | |
111 { | |
112 return ORTHANC_PLUGIN_VERSION; | |
113 } | |
114 } |