view OrthancFramework/Sources/DataSource/DataSourceReader.h @ 7129:662d58ce7ddf Orthanc-1.13.0

Orthanc-1.13.0
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sat, 15 Aug 2026 13:53:33 +0200
parents 5192f6a4cbb8
children 4ba287b00973
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 Lesser 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this program. If not, see
 * <http://www.gnu.org/licenses/>.
 **/


#pragma once

#include "../MultiThreading/IExecutorService.h"
#include "DataSourceAnswer.h"
#include "DataSourceRequest.h"
#include "IDataSource.h"

#include <stdint.h>


namespace Orthanc
{
  class MetricsRegistry;
  class SharedObjectCache;

  namespace Internals
  {
    class DataSourceMemoryBudget;
  }

  class ORTHANC_PUBLIC DataSourceReader : public boost::noncopyable
  {
  public:
    class MetricsConfiguration
    {
    protected:
      boost::shared_ptr<MetricsRegistry>  metrics_;
      std::string                         cacheSizeMegabytesName_;
      std::string                         cacheCountName_;
      std::string                         cacheHitCountName_;
      std::string                         cacheMissCountName_;
      std::string                         capacityMaxSizeMegabytesName_;
      std::string                         capacityCurrentSizeMegabytesName_;
      std::string                         capacityCountName_;
      std::string                         capacityMaxUsageSinceStartMegabytesName_;

    public:
      MetricsConfiguration()
      {
      }

      MetricsConfiguration(const boost::shared_ptr<MetricsRegistry>& metrics,
                           const std::string& cacheSizeMegabytesName,
                           const std::string& cacheCountName,
                           const std::string& cacheHitCountName,
                           const std::string& cacheMissCountName,
                           const std::string& capacityMaxSizeMegabytesName,
                           const std::string& capacityCurrentSizeMegabytesName,
                           const std::string& capacityCountName,
                           const std::string& capacityMaxUsageSinceStartMegabytesName);

      void SetCacheStatistics(SharedObjectCache& cache);

      void IncrementCacheHitCount();

      void IncrementCacheMissCount();
      
      friend DataSourceReader;
    };

  private:
    class DataSourceRunnable;

    boost::shared_ptr<IExecutorService>                   executor_;
    std::unique_ptr<IDataSource>                          source_;
    boost::shared_ptr<SharedObjectCache>                  cache_;
    boost::shared_ptr<Internals::DataSourceMemoryBudget>  budget_;
    MetricsConfiguration                                  metricsConfiguration_;

  public:
    DataSourceReader(const boost::shared_ptr<IExecutorService>& executor,
                     IDataSource* source /* takes ownership */);

    ~DataSourceReader();

    const boost::shared_ptr<IExecutorService>& GetExecutorService() const
    {
      return executor_;
    }

    void SetMetricsConfiguration(const MetricsConfiguration& configuration);

    void CreateCache(uint64_t capacity);

    /**
     * Apply backpressure by limiting memory for pending read
     * tasks. Further reads block until memory is released.
     **/
    void SetCapacity(uint64_t maximumMemory);

    uint64_t GetCapacity() const;

    /**
     * Request the data source to load a set of items. The values will
     * be read in parallel by a thread pool (cf. "executor_") and will
     * be answered in no specific order through a message queue
     * (cf. class "DataSourceAnswer"). The user data stored in
     * "IDataIdentifier" can be used to identify items. If order is
     * important, use the class "DataSourceSequentialReader" instead.
     **/
    boost::shared_ptr<DataSourceAnswer> Submit(DataSourceRequest* request /* takes ownership */);

    DataSourceAnswer::Item* ReadSingle(IDataIdentifier* id /* takes ownership */);

    void Stop()
    {
      executor_->Stop();
    }

    void GetStatistics(uint64_t& tasksMaximumMemory,
                       uint64_t& tasksCurrentMemory,
                       unsigned int& tasksReservations) const;

    size_t GetCacheSize() const;

    void StoreIntoCache(const std::string& key,
                        IDynamicObject* value /* takes ownership */);
  };
}