Mercurial > hg > orthanc-databases
annotate SQLite/Plugins/IndexPlugin.cpp @ 90:e61587582cef db-changes
moved extension TagMostRecentPatient into stored procedure CreateInstance
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 16 Jan 2019 18:14:28 +0100 |
parents | 714c5d2bee76 |
children | 4cd7e45b671e |
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 | |
67 | 5 * Copyright (C) 2017-2019 Osimis S.A., Belgium |
0 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
8 * modify it under the terms of the GNU Affero General Public License | |
9 * as published by the Free Software Foundation, either version 3 of | |
10 * the License, or (at your option) any later version. | |
11 * | |
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 * Affero General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Affero General Public License | |
18 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
19 **/ | |
20 | |
21 | |
22 #include "SQLiteIndex.h" | |
24
17f849b2af34
sharing plugin initialization code
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2
diff
changeset
|
23 #include "../../Framework/Plugins/PluginInitialization.h" |
0 | 24 |
25 #include <Core/Logging.h> | |
26 | |
27 static std::auto_ptr<OrthancDatabases::SQLiteIndex> backend_; | |
28 | |
29 | |
30 extern "C" | |
31 { | |
32 ORTHANC_PLUGINS_API int32_t OrthancPluginInitialize(OrthancPluginContext* context) | |
33 { | |
28
c0cb5d2cd696
checks depending on Orthanc version
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
24
diff
changeset
|
34 if (!OrthancDatabases::InitializePlugin(context, "SQLite", true)) |
0 | 35 { |
36 return -1; | |
37 } | |
38 | |
39 #if 0 | |
62
eedd082355f9
fix for compatibility with simplified OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
28
diff
changeset
|
40 OrthancPlugins::OrthancConfiguration configuration; |
0 | 41 |
42 if (!configuration.IsSection("SQLite")) | |
43 { | |
44 LOG(WARNING) << "No available configuration for the SQLite index plugin"; | |
45 return 0; | |
46 } | |
47 | |
48 OrthancPlugins::OrthancConfiguration sqlite; | |
49 configuration.GetSection(sqlite, "SQLite"); | |
50 | |
51 bool enable; | |
52 if (!sqlite.LookupBooleanValue(enable, "EnableIndex") || | |
53 !enable) | |
54 { | |
55 LOG(WARNING) << "The SQLite index is currently disabled, set \"EnableIndex\" " | |
56 << "to \"true\" in the \"SQLite\" section of the configuration file of Orthanc"; | |
57 return 0; | |
58 } | |
59 #endif | |
60 | |
61 try | |
62 { | |
63 /* Create the database back-end */ | |
64 backend_.reset(new OrthancDatabases::SQLiteIndex("index.db")); // TODO parameter | |
65 | |
66 /* Register the SQLite index into Orthanc */ | |
2
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
67 OrthancPlugins::DatabaseBackendAdapter::Register(context, *backend_); |
0 | 68 } |
2
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
69 catch (Orthanc::OrthancException& e) |
0 | 70 { |
2
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
71 LOG(ERROR) << e.What(); |
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
72 return -1; |
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
73 } |
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
74 catch (...) |
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
75 { |
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
76 LOG(ERROR) << "Native exception while initializing the plugin"; |
0 | 77 return -1; |
78 } | |
79 | |
80 return 0; | |
81 } | |
82 | |
83 | |
84 ORTHANC_PLUGINS_API void OrthancPluginFinalize() | |
85 { | |
2
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
86 LOG(WARNING) << "SQLite index is finalizing"; |
0 | 87 backend_.reset(NULL); |
88 } | |
89 | |
90 | |
91 ORTHANC_PLUGINS_API const char* OrthancPluginGetName() | |
92 { | |
93 return "sqlite-index"; | |
94 } | |
95 | |
96 | |
97 ORTHANC_PLUGINS_API const char* OrthancPluginGetVersion() | |
98 { | |
99 return ORTHANC_PLUGIN_VERSION; | |
100 } | |
101 } |