view OrthancServer/Sources/ServerJobs/ThreadedInstancesLoader.h @ 6718:5974e02f23ce Orthanc-1.12.11

Orthanc-1.12.11
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 14 Apr 2026 12:31:07 +0200
parents 4dfff5043aef
children 3e56913120ab
line wrap: on
line source

/**
 * Orthanc - A Lightweight, RESTful DICOM Store
 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
 * Department, University Hospital of Liege, Belgium
 * Copyright (C) 2017-2023 Osimis S.A., Belgium
 * Copyright (C) 2024-2026 Orthanc Team SRL, Belgium
 * Copyright (C) 2021-2026 Sebastien Jodogne, ICTEAM UCLouvain, Belgium
 *
 * This program is free software: you can redistribute it and/or
 * modify it under the terms of the GNU 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
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 **/

#pragma once

#include "../../../OrthancFramework/Sources/Compatibility.h"
#include "../../../OrthancFramework/Sources/Enumerations.h"
#include "../../../OrthancFramework/Sources/FileStorage/FileInfo.h"
#include "../../../OrthancFramework/Sources/MultiThreading/BlockingSharedMessageQueue.h"
#include "../../../OrthancFramework/Sources/MultiThreading/Semaphore.h"

#include <string>
#include <boost/noncopyable.hpp>


namespace Orthanc
{
  class ServerContext;

  class ORTHANC_PUBLIC ThreadedInstancesLoader ORTHANC_FINAL : public boost::noncopyable
  {
  private:
    // Parameters from the constructor
    ServerContext&                      context_;
    bool                                transcode_;
    DicomTransferSyntax                 transferSyntax_;
    unsigned int                        lossyQuality_;
    std::string                         nameForLogs4Char_;

    // Internal variables
    boost::condition_variable           condInstanceAvailable_;
    std::map<std::string, boost::shared_ptr<std::string> >  availableInstances_;
    boost::mutex                        availableInstancesMutex_;
    Semaphore                           availableInstancesSemaphore_;
    BlockingSharedMessageQueue          instancesToPreload_;
    std::vector<boost::thread*>         threads_;
    bool                                loadersShouldStop_;

    static void PreloaderWorkerThread(ThreadedInstancesLoader* that);

    bool TranscodeDicom(std::string& transcodedBuffer,
                        const std::string& sourceBuffer,
                        const std::string& instanceId);

  public:
    ThreadedInstancesLoader(ServerContext& context,
                            size_t threadCount,
                            bool transcode,
                            DicomTransferSyntax transferSyntax,
                            unsigned int lossyQuality,
                            const std::string& nameForLogs4Char);

    ~ThreadedInstancesLoader();

    void Clear(bool isAbort);

    void PreloadDicomInstance(const std::string& instanceId,
                              const FileInfo& fileInfo);

    void WaitDicomInstance(std::string& dicom,
                           const std::string& instanceId);
  };
}