Mercurial > hg > orthanc-transfers
view Plugin/PluginContext.cpp @ 84:3a460db3e6cb
added upport for cookies in push jobs (by James Manners)
author | Alain Mazy <am@orthanc.team> |
---|---|
date | Mon, 19 May 2025 17:00:51 +0200 |
parents | e90266cc3d9b |
children |
line wrap: on
line source
/** * Transfers accelerator plugin for Orthanc * Copyright (C) 2018-2023 Osimis S.A., Belgium * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License * as published by the Free Software Foundation, either version 3 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. **/ #include "PluginContext.h" #include <Compatibility.h> // For std::unique_ptr #include <Logging.h> namespace OrthancPlugins { PluginContext::PluginContext(size_t threadsCount, size_t targetBucketSize, size_t maxPushTransactions, size_t memoryCacheSize, unsigned int maxHttpRetries, unsigned int peerConnectivityTimeout, unsigned int peerCommitTimeout) : pushTransactions_(maxPushTransactions), semaphore_(threadsCount), pluginUuid_(Orthanc::Toolbox::GenerateUuid()), threadsCount_(threadsCount), targetBucketSize_(targetBucketSize), maxHttpRetries_(maxHttpRetries), peerConnectivityTimeout_(peerConnectivityTimeout), peerCommitTimeout_(peerCommitTimeout) { cache_.SetMaxMemorySize(memoryCacheSize); LOG(INFO) << "Transfers accelerator will use " << threadsCount_ << " thread(s) to run HTTP queries"; LOG(INFO) << "Transfers accelerator will keep local DICOM files in a memory cache of size: " << OrthancPlugins::ConvertToMegabytes(memoryCacheSize) << " MB"; LOG(INFO) << "Transfers accelerator will aim at HTTP queries of size: " << OrthancPlugins::ConvertToKilobytes(targetBucketSize_) << " KB"; LOG(INFO) << "Transfers accelerator will be able to receive up to " << maxPushTransactions << " push transaction(s) at once"; LOG(INFO) << "Transfers accelerator will retry " << maxHttpRetries_ << " time(s) if some HTTP query fails"; LOG(INFO) << "Transfers accelerator will use " << peerConnectivityTimeout_ << " seconds as a timeout when checking peers connectivity"; LOG(INFO) << "Transfers accelerator will use " << peerCommitTimeout_ << " seconds as a timeout when committing push transfer"; } std::unique_ptr<PluginContext>& PluginContext::GetSingleton() { static std::unique_ptr<PluginContext> singleton_; return singleton_; } void PluginContext::Initialize(size_t threadsCount, size_t targetBucketSize, size_t maxPushTransactions, size_t memoryCacheSize, unsigned int maxHttpRetries, unsigned int peerConnectivityTimeout, unsigned int peerCommitTimeout) { GetSingleton().reset(new PluginContext(threadsCount, targetBucketSize, maxPushTransactions, memoryCacheSize, maxHttpRetries, peerConnectivityTimeout, peerCommitTimeout)); } PluginContext& PluginContext::GetInstance() { if (GetSingleton().get() == NULL) { throw Orthanc::OrthancException(Orthanc::ErrorCode_BadSequenceOfCalls); } else { return *GetSingleton(); } } void PluginContext::Finalize() { if (GetSingleton().get() != NULL) { GetSingleton().reset(); } } }