mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 19:15:54 +00:00
Per XLS-0095, we are taking steps to rename ripple(d) to xrpl(d). This change specifically removes all copyright notices referencing Ripple, XRPLF, and certain affiliated contributors upon mutual agreement, so the notice in the LICENSE.md file applies throughout. Copyright notices referencing external contributions remain as-is. Duplicate verbiage is also removed.
361 lines
9.7 KiB
C++
361 lines
9.7 KiB
C++
#ifndef XRPL_PROTOCOL_FEATURE_H_INCLUDED
|
|
#define XRPL_PROTOCOL_FEATURE_H_INCLUDED
|
|
|
|
#include <xrpl/basics/base_uint.h>
|
|
|
|
#include <boost/container/flat_map.hpp>
|
|
|
|
#include <bitset>
|
|
#include <map>
|
|
#include <optional>
|
|
#include <string>
|
|
|
|
/**
|
|
* @page Feature How to add new features
|
|
*
|
|
* Steps required to add new features to the code:
|
|
*
|
|
* 1) Add the appropriate XRPL_FEATURE or XRPL_FIX macro definition for the
|
|
* feature to features.macro with the feature's name, `Supported::no`, and
|
|
* `VoteBehavior::DefaultNo`.
|
|
*
|
|
* 2) Use the generated variable name as the parameter to `view.rules.enabled()`
|
|
* to control flow into new code that this feature limits. (featureName or
|
|
* fixName)
|
|
*
|
|
* 3) If the feature development is COMPLETE, and the feature is ready to be
|
|
* SUPPORTED, change the macro parameter in features.macro to Supported::yes.
|
|
*
|
|
* 4) In general, any newly supported amendments (`Supported::yes`) should have
|
|
* a `VoteBehavior::DefaultNo` indefinitely so that external governance can
|
|
* make the decision on when to activate it. High priority bug fixes can be
|
|
* an exception to this rule. In such cases, ensure the fix has been
|
|
* clearly communicated to the community using appropriate channels,
|
|
* then change the macro parameter in features.macro to
|
|
* `VoteBehavior::DefaultYes`. The communication process is beyond
|
|
* the scope of these instructions.
|
|
|
|
* 5) If a supported feature (`Supported::yes`) was _ever_ in a released
|
|
* version, it can never be changed back to `Supported::no`, because
|
|
* it _may_ still become enabled at any time. This would cause newer
|
|
* versions of `rippled` to become amendment blocked.
|
|
* Instead, to prevent newer versions from voting on the feature, use
|
|
* `VoteBehavior::Obsolete`. Obsolete features can not be voted for
|
|
* by any versions of `rippled` built with that setting, but will still
|
|
* work correctly if they get enabled. If a feature remains obsolete
|
|
* for long enough that _all_ clients that could vote for it are
|
|
* amendment blocked, the feature can be removed from the code
|
|
* as if it was unsupported.
|
|
*
|
|
*
|
|
* When a feature has been enabled for several years, the conditional code
|
|
* may be removed, and the feature "retired". To retire a feature:
|
|
*
|
|
* 1) MOVE the macro definition in features.macro to the "retired features"
|
|
* section at the end of the file, and change the macro to XRPL_RETIRE.
|
|
*
|
|
* The feature must remain registered and supported indefinitely because it
|
|
* may exist in the Amendments object on ledger. There is no need to vote
|
|
* for it because there's nothing to vote for. If the feature definition is
|
|
* removed completely from the code, any instances running that code will get
|
|
* amendment blocked. Removing the feature from the ledger is beyond the scope
|
|
* of these instructions.
|
|
*
|
|
*/
|
|
|
|
namespace ripple {
|
|
|
|
enum class VoteBehavior : int { Obsolete = -1, DefaultNo = 0, DefaultYes };
|
|
enum class AmendmentSupport : int { Retired = -1, Supported = 0, Unsupported };
|
|
|
|
/** All amendments libxrpl knows about. */
|
|
std::map<std::string, AmendmentSupport> const&
|
|
allAmendments();
|
|
|
|
namespace detail {
|
|
|
|
#pragma push_macro("XRPL_FEATURE")
|
|
#undef XRPL_FEATURE
|
|
#pragma push_macro("XRPL_FIX")
|
|
#undef XRPL_FIX
|
|
#pragma push_macro("XRPL_RETIRE")
|
|
#undef XRPL_RETIRE
|
|
|
|
#define XRPL_FEATURE(name, supported, vote) +1
|
|
#define XRPL_FIX(name, supported, vote) +1
|
|
#define XRPL_RETIRE(name) +1
|
|
|
|
// This value SHOULD be equal to the number of amendments registered in
|
|
// Feature.cpp. Because it's only used to reserve storage, and determine how
|
|
// large to make the FeatureBitset, it MAY be larger. It MUST NOT be less than
|
|
// the actual number of amendments. A LogicError on startup will verify this.
|
|
static constexpr std::size_t numFeatures =
|
|
(0 +
|
|
#include <xrpl/protocol/detail/features.macro>
|
|
);
|
|
|
|
#undef XRPL_RETIRE
|
|
#pragma pop_macro("XRPL_RETIRE")
|
|
#undef XRPL_FIX
|
|
#pragma pop_macro("XRPL_FIX")
|
|
#undef XRPL_FEATURE
|
|
#pragma pop_macro("XRPL_FEATURE")
|
|
|
|
/** Amendments that this server supports and the default voting behavior.
|
|
Whether they are enabled depends on the Rules defined in the validated
|
|
ledger */
|
|
std::map<std::string, VoteBehavior> const&
|
|
supportedAmendments();
|
|
|
|
/** Amendments that this server won't vote for by default.
|
|
|
|
This function is only used in unit tests.
|
|
*/
|
|
std::size_t
|
|
numDownVotedAmendments();
|
|
|
|
/** Amendments that this server will vote for by default.
|
|
|
|
This function is only used in unit tests.
|
|
*/
|
|
std::size_t
|
|
numUpVotedAmendments();
|
|
|
|
} // namespace detail
|
|
|
|
std::optional<uint256>
|
|
getRegisteredFeature(std::string const& name);
|
|
|
|
size_t
|
|
featureToBitsetIndex(uint256 const& f);
|
|
|
|
uint256
|
|
bitsetIndexToFeature(size_t i);
|
|
|
|
std::string
|
|
featureToName(uint256 const& f);
|
|
|
|
class FeatureBitset : private std::bitset<detail::numFeatures>
|
|
{
|
|
using base = std::bitset<detail::numFeatures>;
|
|
|
|
template <class... Fs>
|
|
void
|
|
initFromFeatures(uint256 const& f, Fs&&... fs)
|
|
{
|
|
set(f);
|
|
if constexpr (sizeof...(fs) > 0)
|
|
initFromFeatures(std::forward<Fs>(fs)...);
|
|
}
|
|
|
|
public:
|
|
using base::bitset;
|
|
using base::operator==;
|
|
|
|
using base::all;
|
|
using base::any;
|
|
using base::count;
|
|
using base::flip;
|
|
using base::none;
|
|
using base::reset;
|
|
using base::set;
|
|
using base::size;
|
|
using base::test;
|
|
using base::operator[];
|
|
using base::to_string;
|
|
using base::to_ullong;
|
|
using base::to_ulong;
|
|
|
|
FeatureBitset() = default;
|
|
|
|
explicit FeatureBitset(base const& b) : base(b)
|
|
{
|
|
XRPL_ASSERT(
|
|
b.count() == count(),
|
|
"ripple::FeatureBitset::FeatureBitset(base) : count match");
|
|
}
|
|
|
|
template <class... Fs>
|
|
explicit FeatureBitset(uint256 const& f, Fs&&... fs)
|
|
{
|
|
initFromFeatures(f, std::forward<Fs>(fs)...);
|
|
XRPL_ASSERT(
|
|
count() == (sizeof...(fs) + 1),
|
|
"ripple::FeatureBitset::FeatureBitset(uint256) : count and "
|
|
"sizeof... do match");
|
|
}
|
|
|
|
template <class Col>
|
|
explicit FeatureBitset(Col const& fs)
|
|
{
|
|
for (auto const& f : fs)
|
|
set(featureToBitsetIndex(f));
|
|
XRPL_ASSERT(
|
|
fs.size() == count(),
|
|
"ripple::FeatureBitset::FeatureBitset(Container auto) : count and "
|
|
"size do match");
|
|
}
|
|
|
|
auto
|
|
operator[](uint256 const& f)
|
|
{
|
|
return base::operator[](featureToBitsetIndex(f));
|
|
}
|
|
|
|
auto
|
|
operator[](uint256 const& f) const
|
|
{
|
|
return base::operator[](featureToBitsetIndex(f));
|
|
}
|
|
|
|
FeatureBitset&
|
|
set(uint256 const& f, bool value = true)
|
|
{
|
|
base::set(featureToBitsetIndex(f), value);
|
|
return *this;
|
|
}
|
|
|
|
FeatureBitset&
|
|
reset(uint256 const& f)
|
|
{
|
|
base::reset(featureToBitsetIndex(f));
|
|
return *this;
|
|
}
|
|
|
|
FeatureBitset&
|
|
flip(uint256 const& f)
|
|
{
|
|
base::flip(featureToBitsetIndex(f));
|
|
return *this;
|
|
}
|
|
|
|
FeatureBitset&
|
|
operator&=(FeatureBitset const& rhs)
|
|
{
|
|
base::operator&=(rhs);
|
|
return *this;
|
|
}
|
|
|
|
FeatureBitset&
|
|
operator|=(FeatureBitset const& rhs)
|
|
{
|
|
base::operator|=(rhs);
|
|
return *this;
|
|
}
|
|
|
|
FeatureBitset
|
|
operator~() const
|
|
{
|
|
return FeatureBitset{base::operator~()};
|
|
}
|
|
|
|
friend FeatureBitset
|
|
operator&(FeatureBitset const& lhs, FeatureBitset const& rhs)
|
|
{
|
|
return FeatureBitset{
|
|
static_cast<base const&>(lhs) & static_cast<base const&>(rhs)};
|
|
}
|
|
|
|
friend FeatureBitset
|
|
operator&(FeatureBitset const& lhs, uint256 const& rhs)
|
|
{
|
|
return lhs & FeatureBitset{rhs};
|
|
}
|
|
|
|
friend FeatureBitset
|
|
operator&(uint256 const& lhs, FeatureBitset const& rhs)
|
|
{
|
|
return FeatureBitset{lhs} & rhs;
|
|
}
|
|
|
|
friend FeatureBitset
|
|
operator|(FeatureBitset const& lhs, FeatureBitset const& rhs)
|
|
{
|
|
return FeatureBitset{
|
|
static_cast<base const&>(lhs) | static_cast<base const&>(rhs)};
|
|
}
|
|
|
|
friend FeatureBitset
|
|
operator|(FeatureBitset const& lhs, uint256 const& rhs)
|
|
{
|
|
return lhs | FeatureBitset{rhs};
|
|
}
|
|
|
|
friend FeatureBitset
|
|
operator|(uint256 const& lhs, FeatureBitset const& rhs)
|
|
{
|
|
return FeatureBitset{lhs} | rhs;
|
|
}
|
|
|
|
friend FeatureBitset
|
|
operator^(FeatureBitset const& lhs, FeatureBitset const& rhs)
|
|
{
|
|
return FeatureBitset{
|
|
static_cast<base const&>(lhs) ^ static_cast<base const&>(rhs)};
|
|
}
|
|
|
|
friend FeatureBitset
|
|
operator^(FeatureBitset const& lhs, uint256 const& rhs)
|
|
{
|
|
return lhs ^ FeatureBitset { rhs };
|
|
}
|
|
|
|
friend FeatureBitset
|
|
operator^(uint256 const& lhs, FeatureBitset const& rhs)
|
|
{
|
|
return FeatureBitset{lhs} ^ rhs;
|
|
}
|
|
|
|
// set difference
|
|
friend FeatureBitset
|
|
operator-(FeatureBitset const& lhs, FeatureBitset const& rhs)
|
|
{
|
|
return lhs & ~rhs;
|
|
}
|
|
|
|
friend FeatureBitset
|
|
operator-(FeatureBitset const& lhs, uint256 const& rhs)
|
|
{
|
|
return lhs - FeatureBitset{rhs};
|
|
}
|
|
|
|
friend FeatureBitset
|
|
operator-(uint256 const& lhs, FeatureBitset const& rhs)
|
|
{
|
|
return FeatureBitset{lhs} - rhs;
|
|
}
|
|
};
|
|
|
|
template <class F>
|
|
void
|
|
foreachFeature(FeatureBitset bs, F&& f)
|
|
{
|
|
for (size_t i = 0; i < bs.size(); ++i)
|
|
if (bs[i])
|
|
f(bitsetIndexToFeature(i));
|
|
}
|
|
|
|
#pragma push_macro("XRPL_FEATURE")
|
|
#undef XRPL_FEATURE
|
|
#pragma push_macro("XRPL_FIX")
|
|
#undef XRPL_FIX
|
|
#pragma push_macro("XRPL_RETIRE")
|
|
#undef XRPL_RETIRE
|
|
|
|
#define XRPL_FEATURE(name, supported, vote) extern uint256 const feature##name;
|
|
#define XRPL_FIX(name, supported, vote) extern uint256 const fix##name;
|
|
#define XRPL_RETIRE(name)
|
|
|
|
#include <xrpl/protocol/detail/features.macro>
|
|
|
|
#undef XRPL_RETIRE
|
|
#pragma pop_macro("XRPL_RETIRE")
|
|
#undef XRPL_FIX
|
|
#pragma pop_macro("XRPL_FIX")
|
|
#undef XRPL_FEATURE
|
|
#pragma pop_macro("XRPL_FEATURE")
|
|
|
|
} // namespace ripple
|
|
|
|
#endif
|