Mercurial > hg > orthanc
annotate OrthancServer/IDatabaseWrapper.h @ 1526:096a8af528c9
fix streams, initialization/finalization of libcurl and openssl
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 12 Aug 2015 10:43:10 +0200 |
parents | 0586ed8897f1 |
children | c40fe92a68e7 |
rev | line source |
---|---|
1247 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
1288
6e7e5ed91c2d
upgrade to year 2015
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1286
diff
changeset
|
3 * Copyright (C) 2012-2015 Sebastien Jodogne, Medical Physics |
6e7e5ed91c2d
upgrade to year 2015
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1286
diff
changeset
|
4 * Department, University Hospital of Liege, Belgium |
1247 | 5 * |
6 * This program is free software: you can redistribute it and/or | |
7 * modify it under the terms of the GNU General Public License as | |
8 * published by the Free Software Foundation, either version 3 of the | |
9 * License, or (at your option) any later version. | |
10 * | |
11 * In addition, as a special exception, the copyright holders of this | |
12 * program give permission to link the code of its release with the | |
13 * OpenSSL project's "OpenSSL" library (or with modified versions of it | |
14 * that use the same license as the "OpenSSL" library), and distribute | |
15 * the linked executables. You must obey the GNU General Public License | |
16 * in all respects for all of the code used other than "OpenSSL". If you | |
17 * modify file(s) with this exception, you may extend this exception to | |
18 * your version of the file(s), but you are not obligated to do so. If | |
19 * you do not wish to do so, delete this exception statement from your | |
20 * version. If you delete this exception statement from all source files | |
21 * in the program, then also delete it here. | |
22 * | |
23 * This program is distributed in the hope that it will be useful, but | |
24 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
26 * General Public License for more details. | |
27 * | |
28 * You should have received a copy of the GNU General Public License | |
29 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
30 **/ | |
31 | |
32 | |
33 #pragma once | |
34 | |
35 #include "../Core/DicomFormat/DicomMap.h" | |
36 #include "../Core/SQLite/ITransaction.h" | |
37 #include "../Core/FileStorage/FileInfo.h" | |
1432
0ac74fa21db8
rename IServerIndexListener as IDatabaseListener
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1306
diff
changeset
|
38 #include "IDatabaseListener.h" |
1247 | 39 #include "ExportedResource.h" |
40 | |
41 #include <list> | |
42 #include <boost/noncopyable.hpp> | |
43 | |
44 namespace Orthanc | |
45 { | |
46 class IDatabaseWrapper : public boost::noncopyable | |
47 { | |
48 public: | |
49 virtual ~IDatabaseWrapper() | |
50 { | |
51 } | |
52 | |
53 virtual void AddAttachment(int64_t id, | |
54 const FileInfo& attachment) = 0; | |
55 | |
56 virtual void AttachChild(int64_t parent, | |
57 int64_t child) = 0; | |
58 | |
1286 | 59 virtual void ClearChanges() = 0; |
60 | |
61 virtual void ClearExportedResources() = 0; | |
1247 | 62 |
63 virtual int64_t CreateResource(const std::string& publicId, | |
64 ResourceType type) = 0; | |
65 | |
66 virtual void DeleteAttachment(int64_t id, | |
67 FileContentType attachment) = 0; | |
68 | |
69 virtual void DeleteMetadata(int64_t id, | |
70 MetadataType type) = 0; | |
71 | |
72 virtual void DeleteResource(int64_t id) = 0; | |
73 | |
74 virtual void FlushToDisk() = 0; | |
75 | |
1306
8cd5784a6d80
IDatabaseWrapper::HasFlushToDisk()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1302
diff
changeset
|
76 virtual bool HasFlushToDisk() const = 0; |
8cd5784a6d80
IDatabaseWrapper::HasFlushToDisk()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1302
diff
changeset
|
77 |
1301 | 78 virtual void GetAllMetadata(std::map<MetadataType, std::string>& target, |
1247 | 79 int64_t id) = 0; |
80 | |
81 virtual void GetAllPublicIds(std::list<std::string>& target, | |
82 ResourceType resourceType) = 0; | |
83 | |
1509
0586ed8897f1
limit and since arguments while retrieving DICOM resources in the REST API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1432
diff
changeset
|
84 virtual void GetAllPublicIds(std::list<std::string>& target, |
0586ed8897f1
limit and since arguments while retrieving DICOM resources in the REST API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1432
diff
changeset
|
85 ResourceType resourceType, |
0586ed8897f1
limit and since arguments while retrieving DICOM resources in the REST API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1432
diff
changeset
|
86 size_t since, |
0586ed8897f1
limit and since arguments while retrieving DICOM resources in the REST API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1432
diff
changeset
|
87 size_t limit) = 0; |
1247 | 88 |
89 virtual void GetChanges(std::list<ServerIndexChange>& target /*out*/, | |
90 bool& done /*out*/, | |
91 int64_t since, | |
1302 | 92 uint32_t maxResults) = 0; |
1247 | 93 |
1301 | 94 virtual void GetChildrenInternalId(std::list<int64_t>& target, |
1247 | 95 int64_t id) = 0; |
96 | |
1301 | 97 virtual void GetChildrenPublicId(std::list<std::string>& target, |
1247 | 98 int64_t id) = 0; |
99 | |
100 virtual void GetExportedResources(std::list<ExportedResource>& target /*out*/, | |
101 bool& done /*out*/, | |
102 int64_t since, | |
1302 | 103 uint32_t maxResults) = 0; |
1247 | 104 |
105 virtual void GetLastChange(std::list<ServerIndexChange>& target /*out*/) = 0; | |
106 | |
107 virtual void GetLastExportedResource(std::list<ExportedResource>& target /*out*/) = 0; | |
108 | |
109 virtual void GetMainDicomTags(DicomMap& map, | |
110 int64_t id) = 0; | |
111 | |
112 virtual std::string GetPublicId(int64_t resourceId) = 0; | |
113 | |
114 virtual uint64_t GetResourceCount(ResourceType resourceType) = 0; | |
115 | |
116 virtual ResourceType GetResourceType(int64_t resourceId) = 0; | |
117 | |
118 virtual uint64_t GetTotalCompressedSize() = 0; | |
119 | |
120 virtual uint64_t GetTotalUncompressedSize() = 0; | |
121 | |
122 virtual bool IsExistingResource(int64_t internalId) = 0; | |
123 | |
124 virtual bool IsProtectedPatient(int64_t internalId) = 0; | |
125 | |
126 virtual void ListAvailableMetadata(std::list<MetadataType>& target, | |
127 int64_t id) = 0; | |
128 | |
1301 | 129 virtual void ListAvailableAttachments(std::list<FileContentType>& target, |
1247 | 130 int64_t id) = 0; |
131 | |
132 virtual void LogChange(int64_t internalId, | |
133 const ServerIndexChange& change) = 0; | |
134 | |
135 virtual void LogExportedResource(const ExportedResource& resource) = 0; | |
136 | |
137 virtual bool LookupAttachment(FileInfo& attachment, | |
138 int64_t id, | |
139 FileContentType contentType) = 0; | |
140 | |
141 virtual bool LookupGlobalProperty(std::string& target, | |
142 GlobalProperty property) = 0; | |
143 | |
1301 | 144 virtual void LookupIdentifier(std::list<int64_t>& target, |
1247 | 145 const DicomTag& tag, |
146 const std::string& value) = 0; | |
147 | |
1301 | 148 virtual void LookupIdentifier(std::list<int64_t>& target, |
1247 | 149 const std::string& value) = 0; |
150 | |
151 virtual bool LookupMetadata(std::string& target, | |
152 int64_t id, | |
153 MetadataType type) = 0; | |
154 | |
155 virtual bool LookupParent(int64_t& parentId, | |
156 int64_t resourceId) = 0; | |
157 | |
1294 | 158 virtual bool LookupResource(int64_t& id, |
159 ResourceType& type, | |
160 const std::string& publicId) = 0; | |
1247 | 161 |
162 virtual bool SelectPatientToRecycle(int64_t& internalId) = 0; | |
163 | |
164 virtual bool SelectPatientToRecycle(int64_t& internalId, | |
165 int64_t patientIdToAvoid) = 0; | |
166 | |
167 virtual void SetGlobalProperty(GlobalProperty property, | |
168 const std::string& value) = 0; | |
169 | |
1286 | 170 virtual void SetMainDicomTag(int64_t id, |
171 const DicomTag& tag, | |
172 const std::string& value) = 0; | |
1247 | 173 |
174 virtual void SetMetadata(int64_t id, | |
175 MetadataType type, | |
176 const std::string& value) = 0; | |
177 | |
178 virtual void SetProtectedPatient(int64_t internalId, | |
179 bool isProtected) = 0; | |
180 | |
181 virtual SQLite::ITransaction* StartTransaction() = 0; | |
182 | |
1432
0ac74fa21db8
rename IServerIndexListener as IDatabaseListener
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1306
diff
changeset
|
183 virtual void SetListener(IDatabaseListener& listener) = 0; |
1247 | 184 }; |
185 } |