1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
|
/************************************************************************
*
* Copyright (C) 2009-2024 IRCAD France
* Copyright (C) 2012-2020 IHU Strasbourg
*
* This file is part of Sight.
*
* Sight 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.
*
* Sight 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 Sight. If not, see <https://www.gnu.org/licenses/>.
*
***********************************************************************/
#pragma once
#include <sight/data/config.hpp>
#include "data/factory/new.hpp"
#include "data/resection.hpp"
#include <core/com/signal.hpp>
#include <core/com/signals.hpp>
namespace sight::data
{
/**
* @brief This class defines a resection container.
*
* @see Resection
*/
class SIGHT_DATA_CLASS_API resection_db final : public object
{
public:
SIGHT_DECLARE_CLASS(resection_db, object);
/**
* @brief Constructor
*/
SIGHT_DATA_API resection_db();
/// Destructor
SIGHT_DATA_API ~resection_db() noexcept override = default;
using resection_container_t = std::vector<resection::sptr>;
/**
* @brief Get the number of resections
*/
SIGHT_DATA_API resection_container_t::size_type num_resections() const;
/**
* @brief add resection
*/
SIGHT_DATA_API void add_resection(const resection::sptr& _resection);
/**
* @{
* @brief Get/Set value of the resections.
*/
const resection_container_t& get_resections() const;
void set_resections(const resection_container_t& _val);
/// @}
/**
* @{
* @brief Get/Set value of the safe resection.
*/
resection::sptr get_safe_resection();
resection::csptr get_safe_resection() const;
void set_safe_resection(const resection::sptr& _safe_resection);
/// @}
/***
* @name Signals
* @{
*/
/// Type of signal when the safe part is added
using safe_part_added_signal_t = core::com::signal<void ()>;
/// Key in m_signals map of signal m_sigSafePartAdded
SIGHT_DATA_API static const core::com::signals::key_t SAFE_PART_ADDED_SIG;
/// Type of signal when a resection is added
using resection_added_signal_t = core::com::signal<void ()>;
/// Key in m_signals map of signal m_sigResectionAdded
SIGHT_DATA_API static const core::com::signals::key_t RESECTION_ADDED_SIG;
/**
* @}
*/
/// Equality comparison operators
/// @{
SIGHT_DATA_API bool operator==(const resection_db& _other) const noexcept;
SIGHT_DATA_API bool operator!=(const resection_db& _other) const noexcept;
/// @}
/// Defines shallow copy
/// @throws data::exception if an errors occurs during copy
/// @param[in] _source the source object to copy
SIGHT_DATA_API void shallow_copy(const object::csptr& _source) override;
/// Defines deep copy
/// @throws data::exception if an errors occurs during copy
/// @param _source source object to copy
/// @param _cache cache used to deduplicate pointers
SIGHT_DATA_API void deep_copy(
const object::csptr& _source,
const std::unique_ptr<deep_copy_cache_t>& _cache = std::make_unique<deep_copy_cache_t>()
) override;
protected:
resection::sptr m_safe_resection;
resection_container_t m_resections;
private:
/// Signal emitted when the safe part is added
safe_part_added_signal_t::sptr m_sig_safe_part_added;
/// Signal emitted when a resection is added
resection_added_signal_t::sptr m_sig_resection_added;
};
//-----------------------------------------------------------------------------
inline const resection_db::resection_container_t& resection_db::get_resections() const
{
return m_resections;
}
//-----------------------------------------------------------------------------
inline void resection_db::set_resections(const resection_db::resection_container_t& _val)
{
m_resections = _val;
}
//-----------------------------------------------------------------------------
inline resection::sptr resection_db::get_safe_resection()
{
return m_safe_resection;
}
//-----------------------------------------------------------------------------
inline resection::csptr resection_db::get_safe_resection() const
{
return m_safe_resection;
}
//-----------------------------------------------------------------------------
inline void resection_db::set_safe_resection(const resection::sptr& _safe_resection)
{
m_safe_resection = _safe_resection;
}
//-----------------------------------------------------------------------------
} // namespace sight::data
|