comparison OrthancStone/Sources/Platforms/WebAssembly/WebAssemblyLoadersContext.h @ 1899:917500c46fe0

moved the Platform folder from the Applications folder to the Stone library itself
author Alain Mazy <am@osimis.io>
date Sat, 29 Jan 2022 12:47:32 +0100
parents
children 184b0aeae1af
comparison
equal deleted inserted replaced
1898:a5e54bd87b25 1899:917500c46fe0
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-2022 Osimis S.A., Belgium
6 * Copyright (C) 2021-2022 Sebastien Jodogne, ICTEAM UCLouvain, Belgium
7 *
8 * This program is free software: you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public License
10 * as published by the Free Software Foundation, either version 3 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this program. If not, see
20 * <http://www.gnu.org/licenses/>.
21 **/
22
23
24 #pragma once
25
26 #include "../../../OrthancStone/Sources/Loaders/ILoadersContext.h"
27 #include "../../../OrthancStone/Sources/Loaders/OracleScheduler.h"
28 #include "WebAssemblyOracle.h"
29
30 #include <list>
31
32 namespace OrthancStone
33 {
34 class WebAssemblyLoadersContext : public ILoadersContext
35 {
36 private:
37 class Locker;
38
39 WebAssemblyOracle oracle_;
40 boost::shared_ptr<OracleScheduler> scheduler_;
41 std::list< boost::shared_ptr<IObserver> > loaders_;
42
43 public:
44 WebAssemblyLoadersContext(unsigned int maxHighPriority,
45 unsigned int maxStandardPriority,
46 unsigned int maxLowPriority);
47
48 void SetLocalOrthanc(const std::string& root)
49 {
50 oracle_.SetLocalOrthanc(root);
51 }
52
53 void SetRemoteOrthanc(const Orthanc::WebServiceParameters& orthanc)
54 {
55 oracle_.SetRemoteOrthanc(orthanc);
56 }
57
58 void SetDicomCacheSize(size_t size)
59 {
60 oracle_.SetDicomCacheSize(size);
61 }
62
63 WebAssemblyOracle::CachedInstanceAccessor* AccessCachedInstance(const std::string& sopInstanceUid)
64 {
65 return new WebAssemblyOracle::CachedInstanceAccessor(oracle_, sopInstanceUid);
66 }
67
68 virtual ILock* Lock() ORTHANC_OVERRIDE;
69 };
70 }