본문으로 건너뛰기

libraries/eosiolib/contracts/eosio/action.hpp

More...

Namespaces

Name
eosio
eosio::internal_use_do_not_use
eosio::detail

Classes

Name
structeosio::permission_level
structeosio::action
structeosio::action_wrapper
Used to wrap an a particular action to simplify the process of other contracts sending inline actions to "wrapped" action. Example:
structeosio::variant_action_wrapper
structeosio::inline_dispatcher< void(T::*)(Args...), Name >

Defines

Name
INLINE_ACTION_SENDER3(CONTRACT_CLASS, FUNCTION_NAME, ACTION_NAME)
INLINE_ACTION_SENDER2(CONTRACT_CLASS, NAME)
INLINE_ACTION_SENDER(...)
SEND_INLINE_ACTION(CONTRACT, NAME, ...)
A macro to simplify calling inline actions.

Detailed Description

Copyright: defined in eos/LICENSE

Macros Documentation

define INLINE_ACTION_SENDER3

#define INLINE_ACTION_SENDER3(
CONTRACT_CLASS,
FUNCTION_NAME,
ACTION_NAME
)
::eosio::inline_dispatcher<decltype(&CONTRACT_CLASS::FUNCTION_NAME), ACTION_NAME>::call

define INLINE_ACTION_SENDER2

#define INLINE_ACTION_SENDER2(
CONTRACT_CLASS,
NAME
)
INLINE_ACTION_SENDER3( CONTRACT_CLASS, NAME, ::eosio::name(#NAME) )

define INLINE_ACTION_SENDER

#define INLINE_ACTION_SENDER(
...
)
BOOST_PP_OVERLOAD(INLINE_ACTION_SENDER,__VA_ARGS__)(__VA_ARGS__)

define SEND_INLINE_ACTION

#define SEND_INLINE_ACTION(
CONTRACT,
NAME,
...
)
INLINE_ACTION_SENDER(std::decay_t<decltype(CONTRACT)>, NAME)( (CONTRACT).get_self(),\
BOOST_PP_TUPLE_ENUM(BOOST_PP_VARIADIC_SIZE(__VA_ARGS__), BOOST_PP_VARIADIC_TO_TUPLE(__VA_ARGS__)) );

A macro to simplify calling inline actions.

Parameters:

  • CONTRACT - The contract to call, which contains the action being sent, maps to the account
  • NAME - The name of the action to be called, maps to a Name
  • ... - The authorising permission, maps to an authorization , followed by the parameters of the action, maps to a data.

Send an inline-action from inside a contract.

The send inline action macro is intended to simplify the process of calling inline actions. When calling new actions from existing actions EOSIO supports two communication models, inline and deferred. Inline actions are executed as part of the current transaction. This macro creates an Action using the supplied parameters and automatically calls action.send() on this newly created action.

Example:

SEND_INLINE_ACTION( *this, transfer, {st.issuer,N(active)}, {st.issuer, to, quantity, memo} );

The example above is taken from eosio.token. This example: uses the passed in, dereferenced this pointer, to call this.get_self() i.e. the eosio.token contract; calls the eosio.token::transfer() action; uses the active permission of the "issuer" account; uses parameters st.issuer, to, quantity and memo. This macro creates an action struct used to 'send()' (call) transfer(account_name from, account_name to, asset quantity, string memo)

Source code


#pragma once
#include <cstdlib>

#include "../../core/eosio/serialize.hpp"
#include "../../core/eosio/datastream.hpp"
#include "../../core/eosio/name.hpp"
#include "../../core/eosio/ignore.hpp"
#include "../../core/eosio/time.hpp"

#include <boost/preprocessor/variadic/size.hpp>
#include <boost/preprocessor/variadic/to_tuple.hpp>
#include <boost/preprocessor/tuple/enum.hpp>
#include <boost/preprocessor/facilities/overload.hpp>

namespace eosio {

namespace internal_use_do_not_use {
extern "C" {
__attribute__((eosio_wasm_import))
uint32_t read_action_data( void* msg, uint32_t len );

__attribute__((eosio_wasm_import))
uint32_t action_data_size();

__attribute__((eosio_wasm_import))
void require_recipient( uint64_t name );

__attribute__((eosio_wasm_import))
void require_auth( uint64_t name );

__attribute__((eosio_wasm_import))
bool has_auth( uint64_t name );

__attribute__((eosio_wasm_import))
void require_auth2( uint64_t name, uint64_t permission );

__attribute__((eosio_wasm_import))
bool is_account( uint64_t name );

__attribute__((eosio_wasm_import))
void send_inline(char *serialized_action, size_t size);

__attribute__((eosio_wasm_import))
void send_context_free_inline(char *serialized_action, size_t size);

__attribute__((eosio_wasm_import))
uint64_t publication_time();

__attribute__((eosio_wasm_import))
uint64_t current_receiver();
}
};

template<typename T>
T unpack_action_data() {
constexpr size_t max_stack_buffer_size = 512;
size_t size = internal_use_do_not_use::action_data_size();
char* buffer = (char*)( max_stack_buffer_size < size ? malloc(size) : alloca(size) );
internal_use_do_not_use::read_action_data( buffer, size );
return unpack<T>( buffer, size );
}

inline void require_recipient( name notify_account ){
internal_use_do_not_use::require_recipient( notify_account.value );
}

template<typename... accounts>
void require_recipient( name notify_account, accounts... remaining_accounts ){
internal_use_do_not_use::require_recipient( notify_account.value );
require_recipient( remaining_accounts... );
}

inline void require_auth( name n ) {
internal_use_do_not_use::require_auth( n.value );
}

inline time_point publication_time() {
return time_point( microseconds ( internal_use_do_not_use::publication_time() ) );
}

inline name current_receiver() {
return name{internal_use_do_not_use::current_receiver()};
}

inline uint32_t read_action_data( void* msg, uint32_t len ) {
return internal_use_do_not_use::read_action_data(msg, len);
}

inline uint32_t action_data_size() {
return internal_use_do_not_use::action_data_size();
}
struct permission_level {
permission_level( name a, name p ):actor(a),permission(p){}

permission_level(){}

name actor;
name permission;

friend constexpr bool operator == ( const permission_level& a, const permission_level& b ) {
return std::tie( a.actor, a.permission ) == std::tie( b.actor, b.permission );
}

friend constexpr bool operator < ( const permission_level& a, const permission_level& b ) {
return std::tie( a.actor, a.permission ) < std::tie( b.actor, b.permission );
}

EOSLIB_SERIALIZE( permission_level, (actor)(permission) )
};

inline void require_auth( const permission_level& level ) {
internal_use_do_not_use::require_auth2( level.actor.value, level.permission.value );
}

inline bool has_auth( name n ) {
return internal_use_do_not_use::has_auth( n.value );
}

inline bool is_account( name n ) {
return internal_use_do_not_use::is_account( n.value );
}

struct action {
name account;

name name;

std::vector<permission_level> authorization;

std::vector<char> data;

action() = default;

template<typename T>
action( const permission_level& auth, struct name a, struct name n, T&& value )
:account(a), name(n), authorization(1,auth), data(pack(std::forward<T>(value))) {}

template<typename T>
action( std::vector<permission_level> auths, struct name a, struct name n, T&& value )
:account(a), name(n), authorization(std::move(auths)), data(pack(std::forward<T>(value))) {}


EOSLIB_SERIALIZE( action, (account)(name)(authorization)(data) )




void send() const {
auto serialize = pack(*this);
internal_use_do_not_use::send_inline(serialize.data(), serialize.size());
}

void send_context_free() const {
eosio::check( authorization.size() == 0, "context free actions cannot have authorizations");
auto serialize = pack(*this);
internal_use_do_not_use::send_context_free_inline(serialize.data(), serialize.size());
}

template<typename T>
T data_as() {
return unpack<T>( &data[0], data.size() );
}

};



namespace detail {


template <typename T>
struct unwrap { typedef T type; };

template <typename T>
struct unwrap<ignore<T>> { typedef T type; };

template <typename R, typename Act, typename... Args>
auto get_args(R(Act::*p)(Args...)) {
return std::tuple<std::decay_t<typename unwrap<Args>::type>...>{};
}

template <typename R, typename Act, typename... Args>
auto get_args_nounwrap(R(Act::*p)(Args...)) {
return std::tuple<std::decay_t<Args>...>{};
}

template <auto Action>
using deduced = decltype(get_args(Action));

template <auto Action>
using deduced_nounwrap = decltype(get_args_nounwrap(Action));

template <typename T>
struct convert { typedef T type; };

template <>
struct convert<const char*> { typedef std::string type; };

template <>
struct convert<char*> { typedef std::string type; };

template <typename T, typename U>
struct is_same { static constexpr bool value = std::is_convertible<T,U>::value; };

template <typename U>
struct is_same<bool,U> { static constexpr bool value = std::is_integral<U>::value; };

template <typename T>
struct is_same<T,bool> { static constexpr bool value = std::is_integral<T>::value; };

template <size_t N, size_t I, auto Arg, auto... Args>
struct get_nth_impl { static constexpr auto value = get_nth_impl<N,I+1,Args...>::value; };

template <size_t N, auto Arg, auto... Args>
struct get_nth_impl<N, N, Arg, Args...> { static constexpr auto value = Arg; };

template <size_t N, auto... Args>
struct get_nth { static constexpr auto value = get_nth_impl<N,0,Args...>::value; };

template <auto Action, size_t I, typename T, typename... Rest>
struct check_types {
static_assert(detail::is_same<typename convert<T>::type, typename convert<typename std::tuple_element<I, deduced<Action>>::type>::type>::value);
using type = check_types<Action, I+1, Rest...>;
static constexpr bool value = true;
};
template <auto Action, size_t I, typename T>
struct check_types<Action, I, T> {
static_assert(detail::is_same<typename convert<T>::type, typename convert<typename std::tuple_element<I, deduced<Action>>::type>::type>::value);
static constexpr bool value = true;
};

template <auto Action, typename... Ts>
constexpr bool type_check() {
static_assert(sizeof...(Ts) == std::tuple_size<deduced<Action>>::value);
if constexpr (sizeof...(Ts) != 0)
return check_types<Action, 0, Ts...>::value;
return true;
}

}

template <eosio::name::raw Name, auto Action>
struct action_wrapper {
template <typename Code>
constexpr action_wrapper(Code&& code, std::vector<eosio::permission_level>&& perms)
: code_name(std::forward<Code>(code)), permissions(std::move(perms)) {}

template <typename Code>
constexpr action_wrapper(Code&& code, const std::vector<eosio::permission_level>& perms)
: code_name(std::forward<Code>(code)), permissions(perms) {}

template <typename Code>
constexpr action_wrapper(Code&& code, eosio::permission_level&& perm)
: code_name(std::forward<Code>(code)), permissions({1, std::move(perm)}) {}

template <typename Code>
constexpr action_wrapper(Code&& code, const eosio::permission_level& perm)
: code_name(std::forward<Code>(code)), permissions({1, perm}) {}

template <typename Code>
constexpr action_wrapper(Code&& code)
: code_name(std::forward<Code>(code)) {}

static constexpr eosio::name action_name = eosio::name(Name);
eosio::name code_name;
std::vector<eosio::permission_level> permissions;

static constexpr auto get_mem_ptr() {
return Action;
}

template <typename... Args>
action to_action(Args&&... args)const {
static_assert(detail::type_check<Action, Args...>());
return action(permissions, code_name, action_name, detail::deduced<Action>{std::forward<Args>(args)...});
}
template <typename... Args>
void send(Args&&... args)const {
to_action(std::forward<Args>(args)...).send();
}

template <typename... Args>
void send_context_free(Args&&... args)const {
to_action(std::forward<Args>(args)...).send_context_free();
}

};

template <eosio::name::raw Name, auto... Actions>
struct variant_action_wrapper {
template <typename Code>
constexpr variant_action_wrapper(Code&& code, std::vector<eosio::permission_level>&& perms)
: code_name(std::forward<Code>(code)), permissions(std::move(perms)) {}

template <typename Code>
constexpr variant_action_wrapper(Code&& code, const std::vector<eosio::permission_level>& perms)
: code_name(std::forward<Code>(code)), permissions(perms) {}

template <typename Code>
constexpr variant_action_wrapper(Code&& code, eosio::permission_level&& perm)
: code_name(std::forward<Code>(code)), permissions({1, std::move(perm)}) {}

template <typename Code>
constexpr variant_action_wrapper(Code&& code, const eosio::permission_level& perm)
: code_name(std::forward<Code>(code)), permissions({1, perm}) {}

static constexpr eosio::name action_name = eosio::name(Name);
eosio::name code_name;
std::vector<eosio::permission_level> permissions;

template <size_t Variant>
static constexpr auto get_mem_ptr() {
return detail::get_nth<Variant, Actions...>::value;
}

template <size_t Variant, typename... Args>
action to_action(Args&&... args)const {
static_assert(detail::type_check<detail::get_nth<Variant, Actions...>::value, Args...>());
unsigned_int var = Variant;
return action(permissions, code_name, action_name, std::tuple_cat(std::make_tuple(var), detail::deduced<detail::get_nth<Variant, Actions...>::value>{std::forward<Args>(args)...}));
}


template <size_t Variant, typename... Args>
void send(Args&&... args)const {
to_action<Variant>(std::forward<Args>(args)...).send();
}

template <size_t Variant, typename... Args>
void send_context_free(Args&&... args) const {
to_action<Variant>(std::forward<Args>(args)...).send_context_free();
}

};

template<typename... Args>
void dispatch_inline( name code, name act,
std::vector<permission_level> perms,
std::tuple<Args...> args ) {
action( perms, code, act, std::move(args) ).send();
}

template<typename, name::raw>
struct inline_dispatcher;


template<typename T, name::raw Name, typename... Args>
struct inline_dispatcher<void(T::*)(Args...), Name> {
static void call(name code, const permission_level& perm, std::tuple<Args...> args) {
dispatch_inline(code, name(Name), std::vector<permission_level>(1, perm), std::move(args));
}
static void call(name code, std::vector<permission_level> perms, std::tuple<Args...> args) {
dispatch_inline(code, name(Name), std::move(perms), std::move(args));
}
};

} // namespace eosio

#define INLINE_ACTION_SENDER3( CONTRACT_CLASS, FUNCTION_NAME, ACTION_NAME )\
::eosio::inline_dispatcher<decltype(&CONTRACT_CLASS::FUNCTION_NAME), ACTION_NAME>::call

#define INLINE_ACTION_SENDER2( CONTRACT_CLASS, NAME )\
INLINE_ACTION_SENDER3( CONTRACT_CLASS, NAME, ::eosio::name(#NAME) )

#define INLINE_ACTION_SENDER(...) BOOST_PP_OVERLOAD(INLINE_ACTION_SENDER,__VA_ARGS__)(__VA_ARGS__)

#define SEND_INLINE_ACTION( CONTRACT, NAME, ... )\
INLINE_ACTION_SENDER(std::decay_t<decltype(CONTRACT)>, NAME)( (CONTRACT).get_self(),\
BOOST_PP_TUPLE_ENUM(BOOST_PP_VARIADIC_SIZE(__VA_ARGS__), BOOST_PP_VARIADIC_TO_TUPLE(__VA_ARGS__)) );

Updated on 2022-12-05 at 15:38:08 +0000