Mercurial > hg > orthanc
annotate OrthancServer/ServerIndex.h @ 224:4eb0c7ce86c9
refactoring for store
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 29 Nov 2012 22:22:00 +0100 |
parents | bb8c260c0092 |
children | 8a26a8e85edf |
rev | line source |
---|---|
0 | 1 /** |
62 | 2 * Orthanc - A Lightweight, RESTful DICOM Store |
0 | 3 * Copyright (C) 2012 Medical Physics Department, CHU of Liege, |
4 * Belgium | |
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. | |
136 | 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. | |
0 | 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 <boost/thread.hpp> | |
220 | 36 #include <boost/noncopyable.hpp> |
0 | 37 #include "../Core/SQLite/Connection.h" |
38 #include "../Core/DicomFormat/DicomMap.h" | |
39 #include "../Core/FileStorage.h" | |
179 | 40 #include "../Core/DicomFormat/DicomInstanceHasher.h" |
183 | 41 #include "ServerEnumerations.h" |
0 | 42 |
186
f68c039b0571
preparing refactoring of ServerIndex
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
183
diff
changeset
|
43 #include "DatabaseWrapper.h" |
f68c039b0571
preparing refactoring of ServerIndex
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
183
diff
changeset
|
44 |
0 | 45 |
62 | 46 namespace Orthanc |
0 | 47 { |
48 namespace Internals | |
49 { | |
202 | 50 class ServerIndexListener; |
0 | 51 } |
52 | |
53 | |
220 | 54 class ServerIndex : public boost::noncopyable |
0 | 55 { |
56 private: | |
57 boost::mutex mutex_; | |
206
4453a010d0db
flush to disk thread
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
204
diff
changeset
|
58 boost::thread flushThread_; |
0 | 59 |
202 | 60 std::auto_ptr<Internals::ServerIndexListener> listener_; |
61 std::auto_ptr<DatabaseWrapper> db_; | |
180
626777d01dc4
use of hashes to index dicom objects
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
179
diff
changeset
|
62 |
202 | 63 void MainDicomTagsToJson(Json::Value& result, |
64 int64_t resourceId); | |
198
663cc6c46d0a
before refactoring of ServerIndex::GetXXX
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
197
diff
changeset
|
65 |
199 | 66 SeriesStatus GetSeriesStatus(int id); |
67 | |
0 | 68 public: |
201
bee20e978835
refactoring of delete
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
200
diff
changeset
|
69 ServerIndex(FileStorage& fileStorage, |
bee20e978835
refactoring of delete
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
200
diff
changeset
|
70 const std::string& dbPath); |
0 | 71 |
206
4453a010d0db
flush to disk thread
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
204
diff
changeset
|
72 ~ServerIndex(); |
4453a010d0db
flush to disk thread
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
204
diff
changeset
|
73 |
187
8e673a65564d
refactoring of storing new instances
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
186
diff
changeset
|
74 StoreStatus Store(const DicomMap& dicomSummary, |
0 | 75 const std::string& fileUuid, |
76 uint64_t uncompressedFileSize, | |
77 const std::string& jsonUuid, | |
187
8e673a65564d
refactoring of storing new instances
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
186
diff
changeset
|
78 const std::string& remoteAet); |
0 | 79 |
187
8e673a65564d
refactoring of storing new instances
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
186
diff
changeset
|
80 uint64_t GetTotalCompressedSize(); |
8e673a65564d
refactoring of storing new instances
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
186
diff
changeset
|
81 |
8e673a65564d
refactoring of storing new instances
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
186
diff
changeset
|
82 uint64_t GetTotalUncompressedSize(); |
0 | 83 |
212 | 84 bool LookupResource(Json::Value& result, |
85 const std::string& publicId, | |
86 ResourceType expectedType); | |
0 | 87 |
192
c56dc32266e0
refactoring getfile
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
190
diff
changeset
|
88 bool GetFile(std::string& fileUuid, |
193
a1b9d1e1497b
failed attempt to compile with linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
192
diff
changeset
|
89 CompressionType& compressionType, |
192
c56dc32266e0
refactoring getfile
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
190
diff
changeset
|
90 const std::string& instanceUuid, |
197
530a25320461
removal of text as ids in sqlite db
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
91 AttachedFileType contentType); |
0 | 92 |
93 void GetAllUuids(Json::Value& target, | |
190 | 94 ResourceType resourceType); |
0 | 95 |
212 | 96 bool DeleteResource(Json::Value& target, |
97 const std::string& uuid, | |
98 ResourceType expectedType); | |
0 | 99 |
100 bool GetChanges(Json::Value& target, | |
101 int64_t since, | |
102 unsigned int maxResults); | |
103 }; | |
104 } |