mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
This performs a deep refactor on the Ledger class and its supporting classes, in preparation for the move to shared_ptr<SLE const> in places where the SLE is immutable and we are currently using shared_ptr<SLE>. Member functions are converted to free functions, the SLECache is an explicit parameter, one line convenience functions are removed to streamline the interface. Some callers are changed to use <SLE const> instead of <SLE> SLECache: * Moved to its own header file RippleState: * Remove unused functions * Store the SLE as const * Simplify callers AccountState: * Remove unused members * Simplify existing members Ledger: * Replace writeBack with insert and update * Remove unused functions * Remove LedgerStateParams * Move getLastFullLedger to Application * add entryCacheI, exists, fetch, erase * Use boost::optional where it makes sense * Make member functions free functions Free functions: * fetch: cache-aware SLE retrieval * forEachItem, forEachItemAfter * (various)
65 lines
2.0 KiB
C++
65 lines
2.0 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.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#ifndef RIPPLE_APP_MISC_ACCOUNTSTATE_H_INCLUDED
|
|
#define RIPPLE_APP_MISC_ACCOUNTSTATE_H_INCLUDED
|
|
|
|
#include <ripple/basics/Blob.h>
|
|
#include <ripple/protocol/RippleAddress.h>
|
|
#include <ripple/protocol/STAmount.h>
|
|
#include <ripple/protocol/STLedgerEntry.h>
|
|
|
|
namespace ripple {
|
|
|
|
//
|
|
// Provide abstract access to an account's state, such that
|
|
// access to the serialized format is hidden.
|
|
//
|
|
|
|
// VFALCO TODO Remove this class, its redundant and hardly used
|
|
class AccountState
|
|
{
|
|
public:
|
|
// VFALCO TODO Figure out if we need this to be shared
|
|
using pointer = std::shared_ptr<AccountState>;
|
|
|
|
// For accounts in a ledger
|
|
AccountState (std::shared_ptr<SLE const> sle,
|
|
RippleAddress const& naAccountI);
|
|
|
|
SLE const&
|
|
sle() const
|
|
{
|
|
return *mLedgerEntry;
|
|
}
|
|
|
|
void addJson (Json::Value& value);
|
|
|
|
private:
|
|
// VFALCO TODO Remove this
|
|
static std::string createGravatarUrl (uint128 uEmailHash);
|
|
|
|
bool mValid = false;
|
|
std::shared_ptr<SLE const> mLedgerEntry;
|
|
};
|
|
|
|
} // ripple
|
|
|
|
#endif
|