Mercurial > hg > orthanc-transfers
annotate Framework/PushMode/ActivePushTransactions.h @ 77:1e396fb509ca default
updated copyright, as Orthanc Team now replaces Osimis
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 30 May 2024 22:44:10 +0200 |
parents | 44a0430d7899 |
children |
rev | line source |
---|---|
0 | 1 /** |
2 * Transfers accelerator plugin for Orthanc | |
77
1e396fb509ca
updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
33
diff
changeset
|
3 * Copyright (C) 2018-2023 Osimis S.A., Belgium |
1e396fb509ca
updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
33
diff
changeset
|
4 * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium |
1e396fb509ca
updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
33
diff
changeset
|
5 * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, 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 #pragma once | |
23 | |
24 #include "../TransferBucket.h" | |
25 | |
20 | 26 #include <Cache/LeastRecentlyUsedIndex.h> |
0 | 27 |
28 #include <boost/thread/mutex.hpp> | |
29 | |
30 namespace OrthancPlugins | |
31 { | |
32 class ActivePushTransactions : public boost::noncopyable | |
33 { | |
34 private: | |
35 class Transaction; | |
36 | |
37 typedef Orthanc::LeastRecentlyUsedIndex<std::string> Index; | |
38 typedef std::map<std::string, Transaction*> Content; | |
39 | |
40 boost::mutex mutex_; | |
41 Content content_; | |
42 Index index_; | |
43 size_t maxSize_; | |
44 | |
8
4c3437217518
fix for compatibility with simplified OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
45 void FinalizeTransaction(const std::string& transactionUuid, |
0 | 46 bool commit); |
47 | |
48 public: | |
12 | 49 explicit ActivePushTransactions(size_t maxSize) : |
0 | 50 maxSize_(maxSize) |
51 { | |
52 } | |
53 | |
54 ~ActivePushTransactions(); | |
55 | |
56 void ListTransactions(std::vector<std::string>& target); | |
57 | |
58 std::string CreateTransaction(const std::vector<DicomInstanceInfo>& instances, | |
59 const std::vector<TransferBucket>& buckets, | |
60 BucketCompression compression); | |
61 | |
8
4c3437217518
fix for compatibility with simplified OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
62 void Store(const std::string& transactionUuid, |
0 | 63 size_t bucketIndex, |
64 const void* data, | |
65 size_t size); | |
66 | |
8
4c3437217518
fix for compatibility with simplified OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
67 void Commit(const std::string& transactionUuid) |
0 | 68 { |
8
4c3437217518
fix for compatibility with simplified OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
69 FinalizeTransaction(transactionUuid, true); |
0 | 70 } |
71 | |
72 void Discard(const std::string& transactionUuid) | |
73 { | |
8
4c3437217518
fix for compatibility with simplified OrthancPluginCppWrapper
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
74 FinalizeTransaction(transactionUuid, false); |
0 | 75 } |
76 }; | |
77 } |