view Framework/Messages/IMessage.h @ 302:4a79193ffb58 am-callable-and-promise

support for custom messages + no leaks in unit-tests
author am@osimis.io
date Tue, 18 Sep 2018 18:04:53 +0200
parents 3897f9f28cfa
children 6c22e0506587
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-2018 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/>.
 **/


#pragma once

#include "MessageType.h"

#include <boost/noncopyable.hpp>

namespace OrthancStone {


  // base message that are exchanged between IObservable and IObserver
  struct IMessage : public boost::noncopyable
  {
    int messageType_;
  protected:
    IMessage(const int& messageType)
      : messageType_(messageType)
    {}
  public:
    virtual ~IMessage() {}

    virtual int GetType() const {return messageType_;}
  };


  // base class to derive from to implement your own messages
  // it handles the message type for you
  template <int type>
  struct BaseMessage : public IMessage
  {
    enum
    {
      Type = type
    };

    BaseMessage()
      : IMessage(static_cast<int>(Type))
    {}
  };

  // simple message implementation when no payload is needed
  // sample usage:
  // typedef NoPayloadMessage<MessageType_LayerSource_GeometryReady> GeometryReadyMessage;
  template <MessageType type>
  struct NoPayloadMessage : public BaseMessage<type>
  {
    NoPayloadMessage()
      : BaseMessage<type>()
    {}

  };

  // simple message implementation when no payload is needed but the origin is required
  // sample usage:
  // typedef OriginMessage<MessageType_SliceLoader_GeometryError, OrthancSlicesLoader> SliceGeometryErrorMessage;
  template <MessageType type, typename TOrigin>
  struct OriginMessage : public BaseMessage<type>
  {
    TOrigin& origin_;
    OriginMessage(TOrigin& origin)
      : BaseMessage<type>(),
        origin_(origin)
    {}

  };

}