Achieving seamless integration between C++ and EVM contracts revolves around the uniformity in the encoding and decoding of arguments. By standardizing these processes, we ensure that calls between different contract types are handled efficiently without the need for separate mechanisms for each.
Copy struct evmc_message {
enum evmc_call_kind kind; // The kind of the call.
uint32_t flags;
int32_t depth;
int64_t gas;
evmc_address recipient;
evmc_address sender;
const uint8_t* input_data;
size_t input_size;
evmc_uint256be value;
evmc_bytes32 create2_salt;
evmc_address code_address;
};
Determining contract types and executing calls
Copy template < typename R , typename C , typename ... Args >
R callContractFunctionImpl (
BaseContract * caller , const Address & targetAddr ,
const uint256_t & value ,
R (C :: * func)( const Args & ...) , const Args & ... args
) {
// 1000 Gas Limit for every C++ contract call!
auto& recipientAcc = * this -> accounts_[targetAddr];
if ( ! recipientAcc . isContract ()) {
throw DynamicException (std :: string (__func__) + ": Contract does not exist - Type: "
+ Utils :: getRealTypeName < C >() + " at address: " + targetAddr . hex () . get ()
);
}
if (value) {
this -> sendTokens (caller , targetAddr , value);
}
NestedCallSafeGuard guard (caller , caller -> caller_ , caller -> value_);
switch ( recipientAcc . contractType) {
case ContractType :: EVM : {
this -> deduceGas ( 10000 );
evmc_message msg;
msg . kind = EVMC_CALL;
msg . flags = 0 ;
msg . depth = 1 ;
msg . gas = this -> leftoverGas_;
msg . recipient = targetAddr . toEvmcAddress ();
msg . sender = caller -> getContractAddress () . toEvmcAddress ();
auto functionName = ContractReflectionInterface :: getFunctionName (func);
if ( functionName . empty ()) {
throw DynamicException ( "ContractHost::callContractFunction: EVM contract function name is empty (contract not registered?)" );
}
auto functor = ABI :: FunctorEncoder :: encode <Args...>(functionName);
Bytes fullData;
Utils :: appendBytes (fullData , UintConv :: uint32ToBytes ( functor . value));
if constexpr ( sizeof... (Args) > 0 ) {
Utils :: appendBytes (fullData , ABI :: Encoder :: encodeData <Args...>(args...));
}
msg . input_data = fullData . data ();
msg . input_size = fullData . size ();
msg . value = EVMCConv :: uint256ToEvmcUint256 (value);
msg . create2_salt = {};
msg . code_address = targetAddr . toEvmcAddress ();
evmc :: Result result ( evmc_execute ( this -> vm_ , & this -> get_interface () , this -> to_context () ,
evmc_revision :: EVMC_LATEST_STABLE_REVISION , & msg , recipientAcc . code . data () , recipientAcc . code . size ()));
this -> leftoverGas_ = result . gas_left;
if ( result . status_code) {
auto hexResult = Hex :: fromBytes (bytes :: View ( result . output_data , result . output_data + result . output_size));
throw DynamicException ( "ContractHost::callContractFunction: EVMC call failed - Type: "
+ Utils :: getRealTypeName < C >() + " at address: " + targetAddr . hex () . get () + " - Result: " + hexResult . get ()
);
}
if constexpr (std :: same_as < R , void> ) {
return ;
} else {
return std :: get < 0 >(ABI :: Decoder :: decodeData < R >(bytes :: View ( result . output_data , result . output_data + result . output_size)));
}
} break ;
case ContractType :: CPP : {
this -> deduceGas ( 1000 );
C * contract = this -> getContract < C > (targetAddr);
this -> setContractVars (contract , caller -> getContractAddress () , value);
try {
return contract -> callContractFunction ( this , func , args...);
} catch ( const std :: exception & e) {
throw DynamicException ( e . what () + std :: string ( " - Type: " )
+ Utils :: getRealTypeName < C >() + " at address: " + targetAddr . hex () . get ()
);
}
}
default : {
throw DynamicException ( "PANIC! ContractHost::callContractFunction: Unknown contract type" );
}
}
}