view Framework/Deprecated/Layers/DicomSeriesVolumeSlicer.cpp @ 1066:b537002f83a9 broker

removing broker from deprecated classes
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 15 Oct 2019 15:39:39 +0200
parents e713f1a99861
children 04a95ee91327
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 "DicomSeriesVolumeSlicer.h"

#include "FrameRenderer.h"
#include "../Toolbox/DicomFrameConverter.h"

#include <Core/Logging.h>
#include <Core/OrthancException.h>

#include <boost/lexical_cast.hpp>

namespace Deprecated
{

  void DicomSeriesVolumeSlicer::OnSliceGeometryReady(const OrthancSlicesLoader::SliceGeometryReadyMessage& message)
  {
    if (message.GetOrigin().GetSlicesCount() > 0)
    {
      BroadcastMessage(IVolumeSlicer::GeometryReadyMessage(*this));
    }
    else
    {
      BroadcastMessage(IVolumeSlicer::GeometryErrorMessage(*this));
    }
  }

  void DicomSeriesVolumeSlicer::OnSliceGeometryError(const OrthancSlicesLoader::SliceGeometryErrorMessage& message)
  {
    BroadcastMessage(IVolumeSlicer::GeometryErrorMessage(*this));
  }


  class DicomSeriesVolumeSlicer::RendererFactory : public LayerReadyMessage::IRendererFactory
  {
  private:
    const OrthancSlicesLoader::SliceImageReadyMessage&  message_;

  public:
    RendererFactory(const OrthancSlicesLoader::SliceImageReadyMessage& message) :
      message_(message)
    {
    }

    virtual ILayerRenderer* CreateRenderer() const
    {
      bool isFull = (message_.GetEffectiveQuality() == SliceImageQuality_FullPng ||
                     message_.GetEffectiveQuality() == SliceImageQuality_FullPam);

      return FrameRenderer::CreateRenderer(message_.GetImage(), message_.GetSlice(), isFull);
    }
  };

  void DicomSeriesVolumeSlicer::OnSliceImageReady(const OrthancSlicesLoader::SliceImageReadyMessage& message)
  {
    // first notify that the pixel data of the frame is ready (targeted to, i.e: an image cache)
    BroadcastMessage(FrameReadyMessage(*this, message.GetImage(), 
                                  message.GetEffectiveQuality(), message.GetSlice()));

    // then notify that the layer is ready for rendering
    RendererFactory factory(message);
    BroadcastMessage(IVolumeSlicer::LayerReadyMessage(*this, factory, message.GetSlice().GetGeometry()));
  }

  void DicomSeriesVolumeSlicer::OnSliceImageError(const OrthancSlicesLoader::SliceImageErrorMessage& message)
  {
    BroadcastMessage(IVolumeSlicer::LayerErrorMessage(*this, message.GetSlice().GetGeometry()));
  }


  DicomSeriesVolumeSlicer::DicomSeriesVolumeSlicer(OrthancApiClient& orthanc) :
    loader_(orthanc),
    quality_(SliceImageQuality_FullPng)
  {
    // TODO => Move this out of the constructor
    Register<OrthancSlicesLoader::SliceGeometryReadyMessage>(loader_, &DicomSeriesVolumeSlicer::OnSliceGeometryReady);
    Register<OrthancSlicesLoader::SliceGeometryErrorMessage>(loader_, &DicomSeriesVolumeSlicer::OnSliceGeometryError);
    Register<OrthancSlicesLoader::SliceImageReadyMessage>(loader_, &DicomSeriesVolumeSlicer::OnSliceImageReady);
    Register<OrthancSlicesLoader::SliceImageErrorMessage>(loader_, &DicomSeriesVolumeSlicer::OnSliceImageError);
  }

  
  void DicomSeriesVolumeSlicer::LoadSeries(const std::string& seriesId)
  {
    loader_.ScheduleLoadSeries(seriesId);
  }


  void DicomSeriesVolumeSlicer::LoadInstance(const std::string& instanceId)
  {
    loader_.ScheduleLoadInstance(instanceId);
  }


  void DicomSeriesVolumeSlicer::LoadFrame(const std::string& instanceId,
                                          unsigned int frame)
  {
    loader_.ScheduleLoadFrame(instanceId, frame);
  }


  bool DicomSeriesVolumeSlicer::GetExtent(std::vector<OrthancStone::Vector>& points,
                                          const OrthancStone::CoordinateSystem3D& viewportSlice)
  {
    size_t index;

    if (loader_.IsGeometryReady() &&
        loader_.LookupSlice(index, viewportSlice))
    {
      loader_.GetSlice(index).GetExtent(points);
      return true;
    }
    else
    {
      return false;
    }
  }

  
  void DicomSeriesVolumeSlicer::ScheduleLayerCreation(const OrthancStone::CoordinateSystem3D& viewportSlice)
  {
    size_t index;

    if (loader_.IsGeometryReady() &&
        loader_.LookupSlice(index, viewportSlice))
    {
      loader_.ScheduleLoadSliceImage(index, quality_);
    }
  }
}