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
|
/************************************************************************
*
* Copyright (C) 2009-2023 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/>.
*
***********************************************************************/
#include "memory_consumption.hpp"
#include <data/array.hpp>
#include <service/macros.hpp>
#include <ui/__/dialog/message.hpp>
#include <boost/lexical_cast.hpp>
#include <sstream>
namespace sight::module::debug::action
{
/// Static variable shared by both actions
static std::vector<data::array::sptr> memory_consumer;
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
void memory_consumption::push_new_array(std::size_t _memory_size_in_bytes)
{
try
{
data::array::sptr buffer = std::make_shared<data::array>();
data::array::size_t size(1, _memory_size_in_bytes);
buffer->resize(size, core::type::UINT8, true);
SIGHT_INFO("Creating a data::array consuming " << _memory_size_in_bytes / (1024LL * 1024) << " Mo ");
memory_consumer.push_back(buffer);
}
catch(std::exception& e)
{
std::stringstream msg;
msg << "Cannot allocate buffer (" << _memory_size_in_bytes / (1024LL * 1024) << " Mo) :\n" << e.what()
<< std::endl;
sight::ui::dialog::message::show(
"Action increase memory",
msg.str(),
sight::ui::dialog::message::critical
);
}
}
//------------------------------------------------------------------------------
memory_consumption::memory_consumption() noexcept :
m_memory_size_in_bytes(1024LL * 1024 * 256) // 256 Mo
{
}
//------------------------------------------------------------------------------
memory_consumption::~memory_consumption() noexcept =
default;
//------------------------------------------------------------------------------
void memory_consumption::updating()
{
if(m_is_increase_mode)
{
this->push_new_array(m_memory_size_in_bytes);
}
else
{
if(!memory_consumer.empty())
{
SIGHT_INFO("Removing one data::array");
memory_consumer.pop_back();
}
}
}
//------------------------------------------------------------------------------
void memory_consumption::configuring()
{
this->sight::ui::action::initialize();
const auto& config = this->get_config();
const auto mode = config.get<std::string>("config.<xmlattr>.mode");
SIGHT_ASSERT("Wrong value (" << mode << ") for mode tag", mode == "increase" || mode == "decrease");
m_is_increase_mode = (mode == "increase");
if(const auto value = config.get_optional<std::string>("config.<xmlattr>.value");
m_is_increase_mode&& value.has_value())
{
auto size_in_mo = boost::lexical_cast<std::size_t>(value.value());
m_memory_size_in_bytes = size_in_mo * 1024 * 1024;
}
}
//------------------------------------------------------------------------------
void memory_consumption::starting()
{
this->sight::ui::action::action_service_starting();
}
//------------------------------------------------------------------------------
void memory_consumption::stopping()
{
this->sight::ui::action::action_service_stopping();
}
//------------------------------------------------------------------------------
} // namespace sight::module::debug::action
|