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 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467
|
/************************************************************************
*
* Copyright (C) 2009-2025 IRCAD France
* Copyright (C) 2012-2019 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 "core/progress/monitor.hpp"
#include "core/progress/exception/waiting.hpp"
#include "core/progress/observer.hpp"
#include "core/spy_log.hpp"
#include <core/com/signal.hxx>
#include <core/com/signals.hpp>
#include <core/thread/worker.hxx>
namespace sight::core::progress
{
monitor::monitor(std::string _name) :
m_sig_cancel_requested(std::make_shared<cancel_requested_signal>()),
m_sig_canceled(std::make_shared<state_signal>()),
m_sig_started(std::make_shared<state_signal>()),
m_sig_finished(std::make_shared<state_signal>()),
m_sig_done_work(std::make_shared<done_work_signal>()),
m_sig_logged(std::make_shared<log_signal>()),
m_name(std::move(_name))
{
}
//------------------------------------------------------------------------------
monitor::~monitor()
{
std::ranges::for_each(
m_state_hooks,
[&](const state_hook_seq::value_type& _f)
{
_f(m_state);
});
}
//------------------------------------------------------------------------------
bool monitor::cancel_requested() const
{
core::mt::read_lock lock(m_mutex);
return m_cancel_requested;
}
//------------------------------------------------------------------------------
core::progress::cancel_request_callback_t monitor::cancel_requested_callback() const
{
return [this]() -> bool
{
core::mt::read_lock lock(m_mutex);
return m_cancel_requested;
};
}
//------------------------------------------------------------------------------
std::uint64_t monitor::get_done_work_units() const
{
core::mt::read_lock lock(m_mutex);
return m_done_work_units;
}
//------------------------------------------------------------------------------
std::uint64_t monitor::get_total_work_units() const
{
core::mt::read_lock lock(m_mutex);
return m_total_work_units;
}
//------------------------------------------------------------------------------
void monitor::cancel()
{
core::mt::read_to_write_lock lock(m_mutex);
if(m_cancelable && (m_state == waiting || m_state == running))
{
state next_state = (m_state == waiting) ? canceled : canceling;
{
core::mt::upgrade_to_write_lock write_lock(lock);
m_cancel_requested = true;
this->set_state_no_lock(canceling);
}
// unlock mutex for cancel callbacks sanity
lock.unlock();
// m_cancelHooks can not be changed when m_state != WAITING or
// RUNNING, no need to lock m_mutex
for(const auto& cancel : m_cancel_hooks)
{
(cancel) ();
}
lock.lock();
core::mt::upgrade_to_write_lock write_lock(lock);
SIGHT_ASSERT(
"State shall be only CANCELING or CANCELED, not " << m_state,
m_state == canceled || m_state == canceling
);
if(m_state == canceling)
{
this->set_state_no_lock(next_state);
}
}
}
//------------------------------------------------------------------------------
void monitor::add_cancel_hook(cancel_hook _callback)
{
core::mt::write_lock lock(m_mutex);
this->add_cancel_hook_no_lock(_callback);
}
//------------------------------------------------------------------------------
void monitor::add_done_work_hook(done_work_hook _callback)
{
core::mt::write_lock lock(m_mutex);
this->add_done_work_hook_no_lock(_callback);
}
//------------------------------------------------------------------------------
void monitor::add_total_work_units_hook(total_work_units_hook _callback)
{
core::mt::write_lock lock(m_mutex);
this->add_total_work_units_hook_no_lock(_callback);
}
//------------------------------------------------------------------------------
void monitor::add_log_hook(log_hook _callback)
{
core::mt::write_lock lock(m_mutex);
this->add_log_hook_no_lock(_callback);
}
//------------------------------------------------------------------------------
void monitor::add_state_hook(state_hook _callback)
{
core::mt::write_lock lock(m_mutex);
this->add_state_hook_no_lock(_callback);
}
//------------------------------------------------------------------------------
monitor::state monitor::get_state() const
{
core::mt::read_lock lock(m_mutex);
return m_state;
}
//------------------------------------------------------------------------------
const std::string& monitor::name() const
{
return m_name; //Does not need to lock mutex, the name can't be changed
}
//------------------------------------------------------------------------------
void monitor::run()
{
core::mt::read_to_write_lock lock(m_mutex);
if(m_state == waiting)
{
{
core::mt::upgrade_to_write_lock write_lock(lock);
this->set_state_no_lock(running);
}
}
}
//------------------------------------------------------------------------------
void monitor::set_state(monitor::state _state)
{
core::mt::write_lock lock(m_mutex);
this->set_state_no_lock(_state);
}
//------------------------------------------------------------------------------
void monitor::set_state_no_lock(monitor::state _state)
{
m_state = _state;
switch(_state)
{
case waiting:
break;
case running:
m_sig_started->async_emit();
break;
case canceling:
m_sig_cancel_requested->async_emit();
break;
case canceled:
m_sig_canceled->async_emit();
break;
case finished:
m_sig_finished->async_emit();
break;
default:
SIGHT_ASSERT("You shall not pass !", 0);
}
std::ranges::for_each(
m_state_hooks,
[&](const state_hook_seq::value_type& _f)
{
_f(m_state);
});
}
//------------------------------------------------------------------------------
void monitor::finish()
{
core::mt::write_lock lock(m_mutex);
this->finish_no_lock();
}
//------------------------------------------------------------------------------
void monitor::finish_no_lock()
{
this->set_state_no_lock((m_state == canceling) ? canceled : finished);
}
//------------------------------------------------------------------------------
void monitor::log(const std::string& _message)
{
core::mt::write_lock lock(m_mutex);
this->log_no_lock(_message);
}
//------------------------------------------------------------------------------
void monitor::log_no_lock(const std::string& _message)
{
m_logs.push_back(_message);
m_sig_logged->async_emit(_message);
std::ranges::for_each(
m_log_hooks,
[&](const log_hook_seq::value_type& _f)
{
_f(*this, _message);
});
}
//------------------------------------------------------------------------------
monitor::state monitor::get_state_no_lock() const
{
return m_state;
}
//------------------------------------------------------------------------------
void monitor::add_cancel_hook_no_lock(cancel_hook _callback)
{
if(m_state == waiting || m_state == running)
{
m_cancel_hooks.push_back(_callback);
}
}
//------------------------------------------------------------------------------
void monitor::add_done_work_hook_no_lock(done_work_hook _callback)
{
if(m_state == waiting || m_state == running)
{
m_done_work_hooks.push_back(_callback);
}
}
//------------------------------------------------------------------------------
void monitor::add_total_work_units_hook_no_lock(total_work_units_hook _callback)
{
if(m_state == waiting || m_state == running)
{
m_total_work_units_hooks.push_back(_callback);
}
}
//------------------------------------------------------------------------------
void monitor::add_log_hook_no_lock(log_hook _callback)
{
m_log_hooks.push_back(_callback);
}
//------------------------------------------------------------------------------
void monitor::add_state_hook_no_lock(state_hook _callback)
{
m_state_hooks.push_back(_callback);
}
//------------------------------------------------------------------------------
void monitor::done_work(std::uint64_t _units)
{
core::mt::read_to_write_lock lock(m_mutex);
if(m_state != canceled)
{
SIGHT_ASSERT(
"Can not report done work while the monitor is not running.",
m_state == running || m_state == canceling
);
this->done_work(_units, lock);
}
}
//------------------------------------------------------------------------------
void monitor::done_work(std::uint64_t _units, core::mt::read_to_write_lock& _lock)
{
auto old_done_work = m_done_work_units;
SIGHT_ERROR_IF("Done work units should never decrease", old_done_work > _units);
decltype(m_done_work_hooks) done_work_hooks;
if(m_done_work_units == _units)
{
return;
}
done_work_hooks = m_done_work_hooks;
{
core::mt::upgrade_to_write_lock write_lock(_lock);
m_done_work_units = _units;
}
m_sig_done_work->async_emit(m_done_work_units, m_total_work_units);
_lock.unlock();
std::ranges::for_each(
done_work_hooks,
[&](const done_work_hook_seq::value_type& _f)
{
_f(*this, old_done_work);
});
}
//------------------------------------------------------------------------------
void monitor::set_total_work_units(std::uint64_t _units)
{
core::mt::read_to_write_lock lock(m_mutex);
this->set_total_work_units_upgrade_lock(_units, lock);
}
//------------------------------------------------------------------------------
void monitor::set_total_work_units_upgrade_lock(std::uint64_t _units, core::mt::read_to_write_lock& _lock)
{
SIGHT_ASSERT(
"Total work units should only be modified before running a monitor",
m_state == waiting or (m_state == running and m_done_work_units == 0)
);
auto old_total_work_units = m_total_work_units;
decltype(m_total_work_units_hooks) total_work_units_hook;
total_work_units_hook = m_total_work_units_hooks;
if(m_done_work_units > _units)
{
this->done_work(_units, _lock);
}
{
core::mt::upgrade_to_write_lock write_lock(_lock);
m_total_work_units = _units;
}
_lock.unlock();
std::ranges::for_each(
total_work_units_hook,
[&](const total_work_units_hook_seq::value_type& _f)
{
_f(*this, old_total_work_units);
});
}
//------------------------------------------------------------------------------
monitor::logs monitor::get_logs() const
{
core::mt::read_lock lock(m_mutex);
return m_logs;
}
//------------------------------------------------------------------------------
void monitor::set_cancelable(bool _cancel)
{
core::mt::write_lock lock(m_mutex);
m_cancelable = _cancel;
}
//------------------------------------------------------------------------------
bool monitor::is_cancelable() const
{
core::mt::read_lock lock(m_mutex);
return m_cancelable;
}
//------------------------------------------------------------------------------
void monitor::done()
{
this->done_work(m_total_work_units);
}
//------------------------------------------------------------------------------
} //namespace sight::core::progress
|