Skip to content

Commit

Permalink
Return full gas report on go side
Browse files Browse the repository at this point in the history
  • Loading branch information
chipshort committed Aug 16, 2023
1 parent b267953 commit 771768a
Show file tree
Hide file tree
Showing 5 changed files with 253 additions and 264 deletions.
44 changes: 32 additions & 12 deletions internal/api/bindings.h
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,26 @@ typedef struct GoQuerier {
struct Querier_vtable vtable;
} GoQuerier;

typedef struct GasReport {
/**
* The original limit the instance was created with
*/
uint64_t limit;
/**
* The remaining gas that can be spend
*/
uint64_t remaining;
/**
* The amount of gas that was spend and metered externally in operations triggered by this instance
*/
uint64_t used_externally;
/**
* The amount of gas that was spend and metered internally (i.e. by executing Wasm and calling
* API methods which are not metered externally)
*/
uint64_t used_internally;
} GasReport;

struct cache_t *init_cache(struct ByteSliceView data_dir,
struct ByteSliceView available_capabilities,
uint32_t cache_size,
Expand Down Expand Up @@ -391,7 +411,7 @@ struct UnmanagedVector instantiate(struct cache_t *cache,
struct GoQuerier querier,
uint64_t gas_limit,
bool print_debug,
uint64_t *gas_used,
struct GasReport *gas_used,
struct UnmanagedVector *error_msg);

struct UnmanagedVector execute(struct cache_t *cache,
Expand All @@ -404,7 +424,7 @@ struct UnmanagedVector execute(struct cache_t *cache,
struct GoQuerier querier,
uint64_t gas_limit,
bool print_debug,
uint64_t *gas_used,
struct GasReport *gas_used,
struct UnmanagedVector *error_msg);

struct UnmanagedVector migrate(struct cache_t *cache,
Expand All @@ -416,7 +436,7 @@ struct UnmanagedVector migrate(struct cache_t *cache,
struct GoQuerier querier,
uint64_t gas_limit,
bool print_debug,
uint64_t *gas_used,
struct GasReport *gas_used,
struct UnmanagedVector *error_msg);

struct UnmanagedVector sudo(struct cache_t *cache,
Expand All @@ -428,7 +448,7 @@ struct UnmanagedVector sudo(struct cache_t *cache,
struct GoQuerier querier,
uint64_t gas_limit,
bool print_debug,
uint64_t *gas_used,
struct GasReport *gas_used,
struct UnmanagedVector *error_msg);

struct UnmanagedVector reply(struct cache_t *cache,
Expand All @@ -440,7 +460,7 @@ struct UnmanagedVector reply(struct cache_t *cache,
struct GoQuerier querier,
uint64_t gas_limit,
bool print_debug,
uint64_t *gas_used,
struct GasReport *gas_used,
struct UnmanagedVector *error_msg);

struct UnmanagedVector query(struct cache_t *cache,
Expand All @@ -452,7 +472,7 @@ struct UnmanagedVector query(struct cache_t *cache,
struct GoQuerier querier,
uint64_t gas_limit,
bool print_debug,
uint64_t *gas_used,
struct GasReport *gas_used,
struct UnmanagedVector *error_msg);

struct UnmanagedVector ibc_channel_open(struct cache_t *cache,
Expand All @@ -464,7 +484,7 @@ struct UnmanagedVector ibc_channel_open(struct cache_t *cache,
struct GoQuerier querier,
uint64_t gas_limit,
bool print_debug,
uint64_t *gas_used,
struct GasReport *gas_used,
struct UnmanagedVector *error_msg);

struct UnmanagedVector ibc_channel_connect(struct cache_t *cache,
Expand All @@ -476,7 +496,7 @@ struct UnmanagedVector ibc_channel_connect(struct cache_t *cache,
struct GoQuerier querier,
uint64_t gas_limit,
bool print_debug,
uint64_t *gas_used,
struct GasReport *gas_used,
struct UnmanagedVector *error_msg);

struct UnmanagedVector ibc_channel_close(struct cache_t *cache,
Expand All @@ -488,7 +508,7 @@ struct UnmanagedVector ibc_channel_close(struct cache_t *cache,
struct GoQuerier querier,
uint64_t gas_limit,
bool print_debug,
uint64_t *gas_used,
struct GasReport *gas_used,
struct UnmanagedVector *error_msg);

struct UnmanagedVector ibc_packet_receive(struct cache_t *cache,
Expand All @@ -500,7 +520,7 @@ struct UnmanagedVector ibc_packet_receive(struct cache_t *cache,
struct GoQuerier querier,
uint64_t gas_limit,
bool print_debug,
uint64_t *gas_used,
struct GasReport *gas_used,
struct UnmanagedVector *error_msg);

struct UnmanagedVector ibc_packet_ack(struct cache_t *cache,
Expand All @@ -512,7 +532,7 @@ struct UnmanagedVector ibc_packet_ack(struct cache_t *cache,
struct GoQuerier querier,
uint64_t gas_limit,
bool print_debug,
uint64_t *gas_used,
struct GasReport *gas_used,
struct UnmanagedVector *error_msg);

struct UnmanagedVector ibc_packet_timeout(struct cache_t *cache,
Expand All @@ -524,7 +544,7 @@ struct UnmanagedVector ibc_packet_timeout(struct cache_t *cache,
struct GoQuerier querier,
uint64_t gas_limit,
bool print_debug,
uint64_t *gas_used,
struct GasReport *gas_used,
struct UnmanagedVector *error_msg);

struct UnmanagedVector new_unmanaged_vector(bool nil, const uint8_t *ptr, uintptr_t length);
Expand Down
Loading

0 comments on commit 771768a

Please sign in to comment.