Mercurial > hg > orthanc-stone
view Framework/Toolbox/ParsedDicomFileCache.cpp @ 1127:3308ef083297 broker
fix
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 05 Nov 2019 19:01:57 +0100 |
parents | a8bf81756839 |
children | 42581a6182c8 |
line wrap: on
line source
/** * Stone of Orthanc * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics * Department, University Hospital of Liege, Belgium * Copyright (C) 2017-2019 Osimis S.A., 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 "ParsedDicomFileCache.h" namespace OrthancStone { class ParsedDicomFileCache::Item : public Orthanc::ICacheable { private: boost::mutex mutex_; boost::shared_ptr<Orthanc::ParsedDicomFile> dicom_; size_t fileSize_; bool hasPixelData_; public: Item(boost::shared_ptr<Orthanc::ParsedDicomFile> dicom, size_t fileSize, bool hasPixelData) : dicom_(dicom), fileSize_(fileSize), hasPixelData_(hasPixelData) { if (dicom == NULL) { throw Orthanc::OrthancException(Orthanc::ErrorCode_NullPointer); } } boost::mutex& GetMutex() { return mutex_; } virtual size_t GetMemoryUsage() const { return fileSize_; } boost::shared_ptr<Orthanc::ParsedDicomFile> GetDicom() const { assert(dicom_.get() != NULL); return dicom_; } bool HasPixelData() const { return hasPixelData_; } }; void ParsedDicomFileCache::Acquire(const std::string& path, boost::shared_ptr<Orthanc::ParsedDicomFile> dicom, size_t fileSize, bool hasPixelData) { cache_.Acquire(path, new Item(dicom, fileSize, hasPixelData)); } ParsedDicomFileCache::Reader::Reader(ParsedDicomFileCache& cache, const std::string& path) : reader_(cache.cache_, path) { if (reader_.IsValid()) { /** * The "Orthanc::MemoryObjectCache" uses readers/writers. The * "Reader" subclass of the cache locks as a reader. This means * that multiple threads can still access the underlying * "ParsedDicomFile" object, which is not supported by DCMTK. We * thus protect the DCMTK object by a simple mutex. **/ item_ = &dynamic_cast<Item&>(reader_.GetValue()); lock_.reset(new boost::mutex::scoped_lock(item_->GetMutex())); } else { item_ = NULL; } } bool ParsedDicomFileCache::Reader::HasPixelData() const { if (item_ == NULL) { throw Orthanc::OrthancException(Orthanc::ErrorCode_BadSequenceOfCalls); } else { return item_->HasPixelData(); } } boost::shared_ptr<Orthanc::ParsedDicomFile> ParsedDicomFileCache::Reader::GetDicom() const { if (item_ == NULL) { throw Orthanc::OrthancException(Orthanc::ErrorCode_BadSequenceOfCalls); } else { return item_->GetDicom(); } } size_t ParsedDicomFileCache::Reader::GetFileSize() const { if (item_ == NULL) { throw Orthanc::OrthancException(Orthanc::ErrorCode_BadSequenceOfCalls); } else { return item_->GetMemoryUsage(); } } }