Mercurial > hg > orthanc-databases
annotate Framework/Plugins/DatabaseBackendAdapterV2.h @ 328:6a49c495c940
back to mainline
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 22 Jul 2021 20:20:26 +0200 |
parents | 61c309e06797 |
children | 16aac0287485 |
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 | |
193
3236894320d6
upgrade to year 2021
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
5 * Copyright (C) 2017-2021 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 | |
23 /** | |
24 * NOTE: Until Orthanc 1.4.0, this file was part of the Orthanc source | |
25 * distribution. This file is now part of "orthanc-databases", in | |
26 * order to uncouple its evolution from the Orthanc core. | |
27 **/ | |
28 | |
29 #pragma once | |
30 | |
202 | 31 #include "IDatabaseBackend.h" |
152 | 32 |
204 | 33 |
203
2089d4071408
moving classes out of OrthancPlugins namespace, to OrthancDatabases
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
202
diff
changeset
|
34 namespace OrthancDatabases |
204 | 35 { |
0 | 36 /** |
37 * @brief Bridge between C and C++ database engines. | |
38 * | |
39 * Class creating the bridge between the C low-level primitives for | |
40 * custom database engines, and the high-level IDatabaseBackend C++ | |
204 | 41 * interface, for Orthanc <= 1.9.1. |
0 | 42 * |
43 * @ingroup Callbacks | |
44 **/ | |
200 | 45 class DatabaseBackendAdapterV2 |
0 | 46 { |
47 private: | |
48 // This class cannot be instantiated | |
200 | 49 DatabaseBackendAdapterV2() |
0 | 50 { |
51 } | |
52 | |
205
873e37048f96
renaming OrthancCppDatabasePlugin.h as DatabaseBackendAdapterV2.h
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
204
diff
changeset
|
53 public: |
224
61c309e06797
added internal class DatabaseBackendAdapterV2::Adapter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
222
diff
changeset
|
54 class Adapter; |
205
873e37048f96
renaming OrthancCppDatabasePlugin.h as DatabaseBackendAdapterV2.h
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
204
diff
changeset
|
55 class Output; |
0 | 56 |
204 | 57 class Factory : public IDatabaseBackendOutput::IFactory |
58 { | |
59 private: | |
60 OrthancPluginContext* context_; | |
61 OrthancPluginDatabaseContext* database_; | |
62 | |
63 public: | |
64 Factory(OrthancPluginContext* context, | |
65 OrthancPluginDatabaseContext* database) : | |
66 context_(context), | |
67 database_(database) | |
68 { | |
69 } | |
70 | |
205
873e37048f96
renaming OrthancCppDatabasePlugin.h as DatabaseBackendAdapterV2.h
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
204
diff
changeset
|
71 virtual IDatabaseBackendOutput* CreateOutput() ORTHANC_OVERRIDE; |
204 | 72 }; |
73 | |
222
c8e06b41feec
refactoring registration/finalization of index backend
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
207
diff
changeset
|
74 static void Register(IDatabaseBackend* backend); |
204 | 75 |
222
c8e06b41feec
refactoring registration/finalization of index backend
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
207
diff
changeset
|
76 static void Finalize(); |
0 | 77 }; |
78 } |