rippled
Loading...
Searching...
No Matches
flags.h
1//------------------------------------------------------------------------------
2/*
3 This file is part of rippled: https://github.com/ripple/rippled
4 Copyright (c) 2012, 2013 Ripple Labs Inc.
5
6 Permission to use, copy, modify, and/or distribute this software for any
7 purpose with or without fee is hereby granted, provided that the above
8 copyright notice and this permission notice appear in all copies.
9
10 THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17*/
18//==============================================================================
19
20#ifndef RIPPLE_TEST_JTX_FLAGS_H_INCLUDED
21#define RIPPLE_TEST_JTX_FLAGS_H_INCLUDED
22
23#include <test/jtx/Env.h>
24#include <xrpl/basics/contract.h>
25#include <xrpl/protocol/LedgerFormats.h>
26#include <xrpl/protocol/TxFlags.h>
27
28namespace ripple {
29namespace test {
30namespace jtx {
31
32// JSON generators
33
36fset(Account const& account, std::uint32_t on, std::uint32_t off = 0);
37
39inline Json::Value
40fclear(Account const& account, std::uint32_t off)
41{
42 return fset(account, 0, off);
43}
44
45namespace detail {
46
48{
49protected:
51
52private:
53 void
55 {
56 switch (flag)
57 {
58 case asfRequireDest:
60 break;
61 case asfRequireAuth:
63 break;
64 case asfDisallowXRP:
66 break;
69 break;
70 // case asfAccountTxnID: // ???
71 case asfNoFreeze:
73 break;
74 case asfGlobalFreeze:
76 break;
79 break;
80 case asfDepositAuth:
82 break;
85 break;
86 default:
87 Throw<std::runtime_error>("unknown flag");
88 }
89 }
90
91 template <class Flag, class... Args>
92 void
93 set_args(std::uint32_t flag, Args... args)
94 {
95 set_args(flag);
96 if constexpr (sizeof...(args))
97 set_args(args...);
98 }
99
100protected:
101 template <class... Args>
102 flags_helper(Args... args) : mask_(0)
103 {
104 set_args(args...);
105 }
106};
107
108} // namespace detail
109
112{
113private:
115
116public:
117 template <class... Args>
118 flags(Account const& account, Args... args)
119 : flags_helper(args...), account_(account)
120 {
121 }
122
123 void
124 operator()(Env& env) const;
125};
126
129{
130private:
132
133public:
134 template <class... Args>
135 nflags(Account const& account, Args... args)
136 : flags_helper(args...), account_(account)
137 {
138 }
139
140 void
141 operator()(Env& env) const;
142};
143
144} // namespace jtx
145} // namespace test
146} // namespace ripple
147
148#endif
Represents a JSON value.
Definition: json_value.h:147
Immutable cryptographic account descriptor.
Definition: Account.h:38
A transaction testing environment.
Definition: Env.h:117
void set_args(std::uint32_t flag)
Definition: flags.h:54
void set_args(std::uint32_t flag, Args... args)
Definition: flags.h:93
Match set account flags.
Definition: flags.h:112
flags(Account const &account, Args... args)
Definition: flags.h:118
void operator()(Env &env) const
Definition: flags.cpp:41
Match clear account flags.
Definition: flags.h:129
nflags(Account const &account, Args... args)
Definition: flags.h:135
void operator()(Env &env) const
Definition: flags.cpp:53
Json::Value fclear(Account const &account, std::uint32_t off)
Remove account flag.
Definition: flags.h:40
Json::Value fset(Account const &account, std::uint32_t on, std::uint32_t off=0)
Add and/or remove flag.
Definition: flags.cpp:28
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Definition: algorithm.h:26
constexpr std::uint32_t asfGlobalFreeze
Definition: TxFlags.h:82
constexpr std::uint32_t asfDepositAuth
Definition: TxFlags.h:84
constexpr std::uint32_t asfRequireDest
Definition: TxFlags.h:76
@ lsfRequireDestTag
@ lsfDefaultRipple
@ lsfRequireAuth
@ lsfAllowTrustLineClawback
@ lsfDisableMaster
@ lsfDepositAuth
@ lsfGlobalFreeze
@ lsfDisallowXRP
constexpr std::uint32_t asfNoFreeze
Definition: TxFlags.h:81
constexpr std::uint32_t asfDisableMaster
Definition: TxFlags.h:79
constexpr std::uint32_t asfDefaultRipple
Definition: TxFlags.h:83
constexpr std::uint32_t asfAllowTrustLineClawback
Definition: TxFlags.h:93
constexpr std::uint32_t asfRequireAuth
Definition: TxFlags.h:77
constexpr std::uint32_t asfDisallowXRP
Definition: TxFlags.h:78