/** .============.* // M A K E / \* // C++ DEV / \* // E A S Y / \/ \* ++ ----------. \/\ .* \\ \ \ /\ /* \\ \ \ /* \\ \ \ /* -============'** Copyright (c) 2018 Hevake and contributors, all rights reserved.** This file is part of cpp-tbox (https://github.com/cpp-main/cpp-tbox)* Use of this source code is governed by MIT license that can be found* in the LICENSE file in the root of the source tree. All contributing* project authors may be found in the CONTRIBUTORS.md file in the root* of the source tree.*/#include "sleep_action.h"#include <tbox/base/assert.h>#include <tbox/event/loop.h>#include <tbox/event/timer_event.h>namespace tbox {namespace flow {SleepAction::SleepAction(event::Loop &loop, const std::chrono::milliseconds &time_span): Action(loop, "Sleep"), timer_(loop.newTimerEvent("SleepAction::timer_")), time_span_(time_span){TBOX_ASSERT(timer_ != nullptr);timer_->setCallback([this] {finish(true, Reason(ACTION_REASON_SLEEP_ACTION, "SleepAction"));});}SleepAction::SleepAction(event::Loop &loop, const Generator &gen): Action(loop, "Sleep"), timer_(loop.newTimerEvent("SleepAction::timer_")), gen_(gen){TBOX_ASSERT(timer_ != nullptr);timer_->setCallback([this] {finish(true, Reason(ACTION_REASON_SLEEP_ACTION, "SleepAction"));});}SleepAction::~SleepAction() {CHECK_DELETE_RESET_OBJ(timer_);}void SleepAction::onStart() {Action::onStart();auto time_span = gen_ ? gen_() : time_span_;//! 计算出到期时间点并保存到 finish_time_auto now = std::chrono::steady_clock::now();finish_time_ = now + time_span;timer_->initialize(time_span, event::Event::Mode::kOneshot);timer_->enable();}void SleepAction::onStop() {timer_->disable();Action::onStop();}void SleepAction::onPause() {//! 计算剩余时长,并保存到 remain_time_span_ 中auto now = std::chrono::steady_clock::now();remain_time_span_ = std::chrono::duration_cast<std::chrono::milliseconds>(finish_time_ - now);timer_->disable();Action::onPause();}void SleepAction::onResume() {Action::onResume();//! 恢复 remain_time_span_timer_->initialize(remain_time_span_, event::Event::Mode::kOneshot);timer_->enable();}void SleepAction::onReset() {timer_->disable();Action::onReset();}}}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。
1. Open source ecosystem
2. Collaboration, People, Software
3. Evaluation model