#[macro_export]
macro_rules! inject_app_info {
() => {
thread_local! {
pub static APP_INFO: RefCell<AppInfo> = RefCell::new(AppInfo::default());
}
use astrox_macros::app_info::AppInfo;
use astrox_macros::ego_types::{AppId, Version};
pub fn app_info_get(version: Version) -> AppInfo {
APP_INFO.with(|info| {
info.borrow().clone()
})
}
pub fn app_info_update(app_id: AppId, version: Version) {
APP_INFO.with(|info| {
info.borrow_mut().app_id = app_id;
info.borrow_mut().current_version = version;
});
}
pub fn app_info_pre_upgrade() -> AppInfo {
APP_INFO.with(|s| s.take().into())
}
pub fn app_info_post_upgrade(stable_state: AppInfo) {
APP_INFO.with(|s| s.replace(stable_state));
}
};
}
#[macro_export]
macro_rules! inject_canister_log {
() => {
thread_local! {
pub static LOG: RefCell<Log> = RefCell::new(Log::new());
}
use astrox_macros::log::Log;
pub fn log_add(log: &str) {
ic_cdk::println!("{}", log.to_string());
LOG.with(|s| s.borrow_mut().log_add(log.to_string()));
}
pub fn log_list(amount: usize) -> Vec<String> {
LOG.with(|s| s.borrow().log_list(amount))
}
pub fn log_clear(remain: usize) {
LOG.with(|s| s.borrow_mut().log_clear(remain));
}
};
}
#[macro_export]
macro_rules! inject_canister_registry {
() => {
thread_local! {
pub static REGISTRY: RefCell<Registry> = RefCell::new(Registry::default());
}
use astrox_macros::registry::Registry;
use std::collections::BTreeMap;
pub fn canister_add(name: String, canister_id: Principal) {
REGISTRY.with(|s| s.borrow_mut().canister_add(name.clone(), canister_id));
on_canister_added(&name, canister_id);
}
pub fn canister_remove(name: String, canister_id: Principal) {
REGISTRY.with(|s| s.borrow_mut().canister_remove(name, canister_id));
}
pub fn canister_remove_all(name: String) {
REGISTRY.with(|s| s.borrow_mut().canister_remove_all(name));
}
pub fn canister_list() -> BTreeMap<String, Vec<Principal>> {
REGISTRY.with(|s| s.borrow().canister_list_all())
}
pub fn canister_get_one(name: &str) -> Option<Principal> {
REGISTRY.with(|s| s.borrow().canister_get_one(name))
}
pub fn registry_pre_upgrade() -> Registry {
REGISTRY.with(|s| s.take().into())
}
pub fn registry_post_upgrade(stable_state: Registry) {
REGISTRY.with(|s| s.replace(stable_state));
}
};
}
#[macro_export]
macro_rules! inject_canister_users {
() => {
thread_local! {
pub static USER: RefCell<User> = RefCell::new(User::default());
}
use astrox_macros::user::User;
use ic_cdk::caller;
use ic_cdk::export::Principal;
use std::cell::RefCell;
pub fn is_owner(user_id: Principal) -> bool {
USER.with(|b| b.borrow().is_owner(user_id))
}
pub fn owners_set(users: BTreeMap<Principal, String>) {
USER.with(|s| s.borrow_mut().owners_set(users));
}
pub fn owners() -> Option<BTreeMap<Principal, String>> {
USER.with(|s| s.borrow().owners())
}
pub fn owner_add(user_id: Principal) {
USER.with(|s| s.borrow_mut().owner_add(user_id.to_text(), user_id));
}
pub fn owner_add_with_name(name: String, user_id: Principal) {
USER.with(|s| s.borrow_mut().owner_add(name, user_id));
}
pub fn owner_remove(user_id: Principal) {
USER.with(|s| s.borrow_mut().owner_remove(user_id));
}
pub fn users_set(users: BTreeMap<Principal, String>) {
USER.with(|s| s.borrow_mut().users_set(users));
}
pub fn users() -> Option<BTreeMap<Principal, String>> {
USER.with(|s| s.borrow().users())
}
pub fn user_add(user_id: Principal) {
USER.with(|s| s.borrow_mut().user_add(user_id.to_text(), user_id));
}
pub fn user_add_with_name(name: String, user_id: Principal) {
USER.with(|s| s.borrow_mut().user_add(name, user_id));
}
pub fn user_remove(user_id: Principal) {
USER.with(|s| s.borrow_mut().user_remove(user_id));
}
pub fn is_user(user_id: Principal) -> bool {
USER.with(|b| b.borrow().is_user(user_id))
}
pub fn ops_set(users: BTreeMap<Principal, String>) {
USER.with(|s| s.borrow_mut().ops_set(users));
}
pub fn ops() -> Option<BTreeMap<Principal, String>> {
USER.with(|s| s.borrow().ops())
}
pub fn op_add(user_id: Principal) {
USER.with(|s| s.borrow_mut().op_add(user_id.to_text(), user_id));
}
pub fn op_add_with_name(name: String, user_id: Principal) {
USER.with(|s| s.borrow_mut().op_add(name, user_id));
}
pub fn op_remove(user_id: Principal) {
USER.with(|s| s.borrow_mut().op_remove(user_id));
}
pub fn is_op(user_id: Principal) -> bool {
USER.with(|b| b.borrow().is_op(user_id))
}
pub fn users_pre_upgrade() -> User {
USER.with(|s| s.take().into())
}
pub fn users_post_upgrade(stable_state: User) {
USER.with(|s| s.replace(stable_state));
}
};
}
#[macro_export]
macro_rules! inject_canister_all {
() => {
use astrox_macros::{inject_app_info, inject_canister_log, inject_canister_registry, inject_canister_users};
inject_app_info!();
inject_canister_log!();
inject_canister_registry!();
inject_canister_users!();
}
}