Skip to content

Commit

Permalink
native functions impl
Browse files Browse the repository at this point in the history
  • Loading branch information
dariorussi committed Jan 28, 2025
1 parent cff7ae5 commit 0787519
Show file tree
Hide file tree
Showing 3 changed files with 487 additions and 5 deletions.
116 changes: 115 additions & 1 deletion sui-execution/latest/sui-move-natives/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,13 @@ use self::{
transfer::{
TransferFreezeObjectCostParams, TransferInternalCostParams, TransferShareObjectCostParams,
},
tx_context::TxContextDeriveIdCostParams,
tx_context::{
TxContextDeriveIdCostParams, TxContextDigestCostParams, TxContextEpochCostParams,
TxContextEpochTimestampMsCostParams, TxContextFreshIdCostParams,
TxContextIdsCreatedCostParams, TxContextIncEpochCostParams,
TxContextIncEpochTimestampCostParams, TxContextIncIdsCretedCostParams,
TxContextReplaceCostParams, TxContextSenderCostParams, TxContextSponsorCostParams,
},
types::TypesIsOneTimeWitnessCostParams,
validator::ValidatorValidateMetadataBcsCostParams,
};
Expand Down Expand Up @@ -113,6 +119,18 @@ pub struct NativesCostTable {
// TxContext
pub tx_context_derive_id_cost_params: TxContextDeriveIdCostParams,

pub tx_context_sender_cost_params: TxContextSenderCostParams,
pub tx_context_epoch_cost_params: TxContextEpochCostParams,
pub tx_context_epoch_timestamp_ms_cost_params: TxContextEpochTimestampMsCostParams,
pub tx_context_digest_cost_params: TxContextDigestCostParams,
pub tx_context_sponsor_cost_params: TxContextSponsorCostParams,
pub tx_context_ids_created_cost_params: TxContextIdsCreatedCostParams,
pub tx_context_replace_cost_params: TxContextReplaceCostParams,
pub tx_context_inc_epoch_timestamp_cost_params: TxContextIncEpochTimestampCostParams,
pub tx_context_inc_epoch_cost_params: TxContextIncEpochCostParams,
pub tx_context_inc_ids_created_cost_params: TxContextIncIdsCretedCostParams,
pub tx_context_fresh_id_cost_params: TxContextFreshIdCostParams,

// Type
pub type_is_one_time_witness_cost_params: TypesIsOneTimeWitnessCostParams,

Expand Down Expand Up @@ -339,6 +357,73 @@ impl NativesCostTable {
.tx_context_derive_id_cost_base()
.into(),
},

tx_context_sender_cost_params: TxContextSenderCostParams {
tx_context_sender_cost_base: protocol_config
// .tx_context_sender_cost_base()
.tx_context_derive_id_cost_base()
.into(),
},
tx_context_epoch_cost_params: TxContextEpochCostParams {
tx_context_epoch_cost_base: protocol_config
// .tx_context_epoch_cost_base()
.tx_context_derive_id_cost_base()
.into(),
},
tx_context_epoch_timestamp_ms_cost_params: TxContextEpochTimestampMsCostParams {
tx_context_epoch_timestamp_ms_cost_base: protocol_config
// .tx_context_epoch_timestamp_ms_cost_base()
.tx_context_derive_id_cost_base()
.into(),
},
tx_context_digest_cost_params: TxContextDigestCostParams {
tx_context_digest_cost_base: protocol_config
// .tx_context_digest_cost_base()
.tx_context_derive_id_cost_base()
.into(),
},
tx_context_sponsor_cost_params: TxContextSponsorCostParams {
tx_context_sponsor_cost_base: protocol_config
// .tx_context_sponsor_cost_base()
.tx_context_derive_id_cost_base()
.into(),
},
tx_context_ids_created_cost_params: TxContextIdsCreatedCostParams {
tx_context_ids_created_cost_base: protocol_config
// .tx_context_ids_created_cost_base()
.tx_context_derive_id_cost_base()
.into(),
},
tx_context_replace_cost_params: TxContextReplaceCostParams {
tx_context_replace_cost_base: protocol_config
// .tx_context_replace_cost_base()
.tx_context_derive_id_cost_base()
.into(),
},
tx_context_inc_epoch_timestamp_cost_params: TxContextIncEpochTimestampCostParams {
tx_context_inc_epoch_timestamp_cost_base: protocol_config
// .tx_context_inc_epoch_timestamp_cost_base()
.tx_context_derive_id_cost_base()
.into(),
},
tx_context_inc_epoch_cost_params: TxContextIncEpochCostParams {
tx_context_inc_epoch_cost_base: protocol_config
// .tx_context_inc_epoch_cost_base()
.tx_context_derive_id_cost_base()
.into(),
},
tx_context_inc_ids_created_cost_params: TxContextIncIdsCretedCostParams {
tx_context_inc_ids_created_cost_base: protocol_config
// .tx_context_inc_ids_created_cost_base()
.tx_context_derive_id_cost_base()
.into(),
},
tx_context_fresh_id_cost_params: TxContextFreshIdCostParams {
tx_context_fresh_id_cost_base: protocol_config
// .tx_context_fresh_id_cost_base()
.tx_context_derive_id_cost_base()
.into(),
},
type_is_one_time_witness_cost_params: TypesIsOneTimeWitnessCostParams {
types_is_one_time_witness_cost_base: protocol_config
.types_is_one_time_witness_cost_base()
Expand Down Expand Up @@ -1012,6 +1097,35 @@ pub fn all_natives(silent: bool, protocol_config: &ProtocolConfig) -> NativeFunc
"derive_id",
make_native!(tx_context::derive_id),
),
(
"tx_context",
"epoch_timestamp_ms",
make_native!(tx_context::epoch_timestamp_ms),
),
("tx_context", "digest", make_native!(tx_context::digest)),
("tx_context", "sponsor", make_native!(tx_context::sponsor)),
(
"tx_context",
"ids_created",
make_native!(tx_context::ids_created),
),
("tx_context", "fresh_id", make_native!(tx_context::fresh_id)),
(
"tx_context",
"inc_ids_created",
make_native!(tx_context::inc_ids_created),
),
(
"tx_context",
"inc_epoch",
make_native!(tx_context::inc_epoch),
),
(
"tx_context",
"inc_epoch_timestamp",
make_native!(tx_context::inc_epoch_timestamp),
),
("tx_context", "replace", make_native!(tx_context::replace)),
(
"types",
"is_one_time_witness",
Expand Down
15 changes: 14 additions & 1 deletion sui-execution/latest/sui-move-natives/src/object_runtime/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ pub struct ObjectRuntime<'a> {
#[derive(Tid)]
pub struct TransactionContext {
pub(crate) tx_context: Rc<RefCell<TxContext>>,
pub(crate) digest: Option<GlobalValue>,
}

pub enum TransferResult {
Expand Down Expand Up @@ -747,7 +748,10 @@ pub fn get_all_uids(

impl TransactionContext {
pub fn new(tx_context: Rc<RefCell<TxContext>>) -> Self {
Self { tx_context }
Self {
tx_context,
digest: None,
}
}

pub fn sender(&self) -> SuiAddress {
Expand All @@ -766,6 +770,15 @@ impl TransactionContext {
self.tx_context.borrow().digest()
}

pub fn digest_ref(&mut self) -> PartialVMResult<Value> {
if self.digest.is_none() {
let digest = self.tx_context.borrow().digest().into_inner();
let digest = Value::vector_u8(digest);
self.digest = Some(GlobalValue::cached(digest)?);
}
self.digest.as_ref().unwrap().borrow_global()
}

pub fn sponsor(&self) -> Option<SuiAddress> {
self.tx_context.borrow().sponsor()
}
Expand Down
Loading

0 comments on commit 0787519

Please sign in to comment.