mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
@@ -1,95 +0,0 @@
|
||||
//------------------------------------------------------------------------------
|
||||
/*
|
||||
This file is part of rippled: https://github.com/ripple/rippled
|
||||
Copyright (c) 2012-2015 Ripple Labs Inc.
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted, provided that the above
|
||||
copyright notice and this permission notice appear in all copies.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||||
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
//==============================================================================
|
||||
|
||||
#include <test/jtx/ManualTimeKeeper.h>
|
||||
|
||||
namespace ripple {
|
||||
namespace test {
|
||||
|
||||
using namespace std::chrono_literals;
|
||||
|
||||
ManualTimeKeeper::ManualTimeKeeper() : closeOffset_{}, now_(0s)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
ManualTimeKeeper::run(std::vector<std::string> const& servers)
|
||||
{
|
||||
}
|
||||
|
||||
auto
|
||||
ManualTimeKeeper::now() const -> time_point
|
||||
{
|
||||
std::lock_guard lock(mutex_);
|
||||
return now_;
|
||||
}
|
||||
|
||||
auto
|
||||
ManualTimeKeeper::closeTime() const -> time_point
|
||||
{
|
||||
std::lock_guard lock(mutex_);
|
||||
return now_ + closeOffset_;
|
||||
}
|
||||
|
||||
void
|
||||
ManualTimeKeeper::adjustCloseTime(std::chrono::duration<std::int32_t> amount)
|
||||
{
|
||||
// Copied from TimeKeeper::adjustCloseTime
|
||||
using namespace std::chrono;
|
||||
auto const s = amount.count();
|
||||
std::lock_guard lock(mutex_);
|
||||
// Take large offsets, ignore small offsets,
|
||||
// push the close time towards our wall time.
|
||||
if (s > 1)
|
||||
closeOffset_ += seconds((s + 3) / 4);
|
||||
else if (s < -1)
|
||||
closeOffset_ += seconds((s - 3) / 4);
|
||||
else
|
||||
closeOffset_ = (closeOffset_ * 3) / 4;
|
||||
}
|
||||
|
||||
std::chrono::duration<std::int32_t>
|
||||
ManualTimeKeeper::nowOffset() const
|
||||
{
|
||||
return {};
|
||||
}
|
||||
|
||||
std::chrono::duration<std::int32_t>
|
||||
ManualTimeKeeper::closeOffset() const
|
||||
{
|
||||
std::lock_guard lock(mutex_);
|
||||
return closeOffset_;
|
||||
}
|
||||
|
||||
void
|
||||
ManualTimeKeeper::set(time_point now)
|
||||
{
|
||||
std::lock_guard lock(mutex_);
|
||||
now_ = now;
|
||||
}
|
||||
|
||||
auto
|
||||
ManualTimeKeeper::adjust(std::chrono::system_clock::time_point when)
|
||||
-> time_point
|
||||
{
|
||||
return time_point(std::chrono::duration_cast<duration>(
|
||||
when.time_since_epoch() - days(10957)));
|
||||
}
|
||||
} // namespace test
|
||||
} // namespace ripple
|
||||
Reference in New Issue
Block a user