1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
use crate::candid::utils::{ArgumentDecoder, ArgumentEncoder};
use crate::{candid, CallResponse, Context, Principal};
fn get_context() -> &'static impl Context {
#[cfg(not(target_family = "wasm"))]
return crate::inject::get_context();
#[cfg(target_family = "wasm")]
return crate::wasm::IcContext::context();
}
#[inline(always)]
pub fn trap(message: &str) -> ! {
get_context().trap(message)
}
#[inline(always)]
pub fn print<S: std::convert::AsRef<str>>(s: S) {
get_context().print(s)
}
#[inline(always)]
pub fn id() -> Principal {
get_context().id()
}
#[inline(always)]
pub fn time() -> u64 {
get_context().time()
}
#[inline(always)]
pub fn balance() -> u64 {
get_context().balance()
}
#[inline(always)]
pub fn caller() -> Principal {
get_context().caller()
}
#[inline(always)]
pub fn msg_cycles_available() -> u64 {
get_context().msg_cycles_available()
}
#[inline(always)]
pub fn msg_cycles_accept(amount: u64) -> u64 {
get_context().msg_cycles_accept(amount)
}
#[inline(always)]
pub fn msg_cycles_refunded() -> u64 {
get_context().msg_cycles_refunded()
}
#[inline(always)]
pub fn store<T: 'static + Default>(data: T) {
get_context().store(data)
}
#[inline(always)]
pub fn get<T: 'static + Default>() -> &'static T {
get_context().get_mut()
}
#[inline(always)]
pub fn get_mut<T: 'static + Default>() -> &'static mut T {
get_context().get_mut()
}
#[inline(always)]
pub fn delete<T: 'static + Default>() -> bool {
get_context().delete::<T>()
}
#[inline(always)]
pub fn stable_store<T>(data: T) -> Result<(), candid::Error>
where
T: ArgumentEncoder,
{
get_context().stable_store(data)
}
#[inline(always)]
pub fn stable_restore<T>() -> Result<T, String>
where
T: for<'de> ArgumentDecoder<'de>,
{
get_context().stable_restore()
}
#[inline(always)]
pub fn call_raw<S: Into<String>>(
id: Principal,
method: S,
args_raw: Vec<u8>,
cycles: u64,
) -> CallResponse<Vec<u8>> {
get_context().call_raw(id, method, args_raw, cycles)
}
#[inline(always)]
pub fn call<T: ArgumentEncoder, R: for<'a> ArgumentDecoder<'a>, S: Into<String>>(
id: Principal,
method: S,
args: T,
) -> CallResponse<R> {
get_context().call_with_payment(id, method, args, 0)
}
#[inline(always)]
pub fn call_with_payment<T: ArgumentEncoder, R: for<'a> ArgumentDecoder<'a>, S: Into<String>>(
id: Principal,
method: S,
args: T,
cycles: u64,
) -> CallResponse<R> {
get_context().call_with_payment(id, method, args, cycles)
}
#[inline(always)]
pub fn set_certified_data(data: &[u8]) {
get_context().set_certified_data(data)
}
#[inline(always)]
pub fn data_certificate() -> Option<Vec<u8>> {
get_context().data_certificate()
}