comparison Framework/Loaders/LoaderCache.h @ 929:408bcc6c1505

Added Loader cache. Not activated yet.
author Benjamin Golinvaux <bgo@osimis.io>
date Wed, 24 Jul 2019 14:27:06 +0200
parents
children bf03cb879eb4
comparison
equal deleted inserted replaced
927:39d2a3661665 929:408bcc6c1505
1 /**
2 * Stone of Orthanc
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
4 * Department, University Hospital of Liege, Belgium
5 * Copyright (C) 2017-2019 Osimis S.A., Belgium
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 #pragma once
22
23 #include <boost/shared_ptr.hpp>
24
25 #include <map>
26 #include <string>
27
28 namespace OrthancStone
29 {
30 class OrthancSeriesVolumeProgressiveLoader;
31 class DicomVolumeImageMPRSlicer;
32 class DicomStructureSetLoader;
33 class OrthancMultiframeVolumeLoader;
34 class IOracle;
35
36 #if ORTHANC_ENABLE_WASM == 1
37 //class WebAssemblyOracle;
38 #else
39 //class ThreadedOracle;
40 class LockingEmitter;
41 #endif
42
43 class LoaderCache
44 {
45 public:
46 #if ORTHANC_ENABLE_WASM == 1
47 LoaderCache(IOracle& oracle);
48 #else
49 LoaderCache(IOracle& oracle, LockingEmitter& lockingEmitter);
50 #endif
51
52 boost::shared_ptr<OrthancSeriesVolumeProgressiveLoader>
53 GetSeriesVolumeProgressiveLoader (std::string seriesUuid);
54 boost::shared_ptr<DicomVolumeImageMPRSlicer>
55 GetMultiframeDicomVolumeImageMPRSlicer(std::string instanceUuid);
56 boost::shared_ptr<DicomStructureSetLoader>
57 GetDicomStructureSetLoader (std::string instanceUuid);
58
59 void ClearCache();
60
61 private:
62 IOracle& oracle_;
63 #if ORTHANC_ENABLE_WASM == 1
64 //WebAssemblyOracle& oracle_;
65 #else
66 //ThreadedOracle& oracle_;
67 LockingEmitter& lockingEmitter_;
68 #endif
69
70 std::map<std::string, boost::shared_ptr<OrthancSeriesVolumeProgressiveLoader> >
71 seriesVolumeProgressiveLoaders_;
72 std::map<std::string, boost::shared_ptr<OrthancMultiframeVolumeLoader> >
73 multiframeVolumeLoaders_;
74 std::map<std::string, boost::shared_ptr<DicomVolumeImageMPRSlicer> >
75 dicomVolumeImageMPRSlicers_;
76 std::map<std::string, boost::shared_ptr<DicomStructureSetLoader> >
77 dicomStructureSetLoaders_;
78 };
79 }
80