mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-21 19:45:53 +00:00
178 lines
3.5 KiB
C++
178 lines
3.5 KiB
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
This file is part of rippled: https://github.com/ripple/rippled
|
|
Copyright (c) 2012, 2013 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 <xrpl/ledger/detail/ApplyViewBase.h>
|
|
|
|
namespace ripple {
|
|
namespace detail {
|
|
|
|
ApplyViewBase::ApplyViewBase(ReadView const* base, ApplyFlags flags)
|
|
: flags_(flags), base_(base)
|
|
{
|
|
}
|
|
|
|
//---
|
|
|
|
bool
|
|
ApplyViewBase::open() const
|
|
{
|
|
return base_->open();
|
|
}
|
|
|
|
LedgerInfo const&
|
|
ApplyViewBase::info() const
|
|
{
|
|
return base_->info();
|
|
}
|
|
|
|
Fees const&
|
|
ApplyViewBase::fees() const
|
|
{
|
|
return base_->fees();
|
|
}
|
|
|
|
Rules const&
|
|
ApplyViewBase::rules() const
|
|
{
|
|
return base_->rules();
|
|
}
|
|
|
|
bool
|
|
ApplyViewBase::exists(Keylet const& k) const
|
|
{
|
|
return items_.exists(*base_, k);
|
|
}
|
|
|
|
auto
|
|
ApplyViewBase::succ(key_type const& key, std::optional<key_type> const& last)
|
|
const -> std::optional<key_type>
|
|
{
|
|
return items_.succ(*base_, key, last);
|
|
}
|
|
|
|
std::shared_ptr<SLE const>
|
|
ApplyViewBase::read(Keylet const& k) const
|
|
{
|
|
return items_.read(*base_, k);
|
|
}
|
|
|
|
auto
|
|
ApplyViewBase::slesBegin() const -> std::unique_ptr<sles_type::iter_base>
|
|
{
|
|
return base_->slesBegin();
|
|
}
|
|
|
|
auto
|
|
ApplyViewBase::slesEnd() const -> std::unique_ptr<sles_type::iter_base>
|
|
{
|
|
return base_->slesEnd();
|
|
}
|
|
|
|
auto
|
|
ApplyViewBase::slesUpperBound(uint256 const& key) const
|
|
-> std::unique_ptr<sles_type::iter_base>
|
|
{
|
|
return base_->slesUpperBound(key);
|
|
}
|
|
|
|
auto
|
|
ApplyViewBase::txsBegin() const -> std::unique_ptr<txs_type::iter_base>
|
|
{
|
|
return base_->txsBegin();
|
|
}
|
|
|
|
auto
|
|
ApplyViewBase::txsEnd() const -> std::unique_ptr<txs_type::iter_base>
|
|
{
|
|
return base_->txsEnd();
|
|
}
|
|
|
|
bool
|
|
ApplyViewBase::txExists(key_type const& key) const
|
|
{
|
|
return base_->txExists(key);
|
|
}
|
|
|
|
auto
|
|
ApplyViewBase::txRead(key_type const& key) const -> tx_type
|
|
{
|
|
return base_->txRead(key);
|
|
}
|
|
|
|
//---
|
|
|
|
ApplyFlags
|
|
ApplyViewBase::flags() const
|
|
{
|
|
return flags_;
|
|
}
|
|
|
|
std::shared_ptr<SLE>
|
|
ApplyViewBase::peek(Keylet const& k)
|
|
{
|
|
return items_.peek(*base_, k);
|
|
}
|
|
|
|
void
|
|
ApplyViewBase::erase(std::shared_ptr<SLE> const& sle)
|
|
{
|
|
items_.erase(*base_, sle);
|
|
}
|
|
|
|
void
|
|
ApplyViewBase::insert(std::shared_ptr<SLE> const& sle)
|
|
{
|
|
items_.insert(*base_, sle);
|
|
}
|
|
|
|
void
|
|
ApplyViewBase::update(std::shared_ptr<SLE> const& sle)
|
|
{
|
|
items_.update(*base_, sle);
|
|
}
|
|
|
|
//---
|
|
|
|
void
|
|
ApplyViewBase::rawErase(std::shared_ptr<SLE> const& sle)
|
|
{
|
|
items_.rawErase(*base_, sle);
|
|
}
|
|
|
|
void
|
|
ApplyViewBase::rawInsert(std::shared_ptr<SLE> const& sle)
|
|
{
|
|
items_.insert(*base_, sle);
|
|
}
|
|
|
|
void
|
|
ApplyViewBase::rawReplace(std::shared_ptr<SLE> const& sle)
|
|
{
|
|
items_.replace(*base_, sle);
|
|
}
|
|
|
|
void
|
|
ApplyViewBase::rawDestroyXRP(XRPAmount const& fee)
|
|
{
|
|
items_.destroyXRP(fee);
|
|
}
|
|
|
|
} // namespace detail
|
|
} // namespace ripple
|