use std::{
fmt::{Debug, Display},
hash::Hash,
};
use nautilus_core::correctness::{
CorrectnessResult, CorrectnessResultExt, FAILED, check_predicate_false, check_string_contains,
check_valid_string_ascii,
};
use ustr::Ustr;
use super::Venue;
#[repr(C)]
#[derive(Clone, Copy, Hash, PartialEq, Eq, PartialOrd, Ord)]
#[cfg_attr(
feature = "python",
pyo3::pyclass(module = "nautilus_trader.core.nautilus_pyo3.model", from_py_object)
)]
#[cfg_attr(
feature = "python",
pyo3_stub_gen::derive::gen_stub_pyclass(module = "nautilus_trader.model")
)]
pub struct AccountId(Ustr);
impl AccountId {
pub fn new_checked<T: AsRef<str>>(value: T) -> CorrectnessResult<Self> {
let value = value.as_ref();
check_valid_string_ascii(value, stringify!(value))?;
check_string_contains(value, "-", stringify!(value))?;
if let Some((issuer, account)) = value.split_once('-') {
check_predicate_false(
issuer.is_empty(),
"`value` issuer part (before '-') cannot be empty",
)?;
check_predicate_false(
account.is_empty(),
"`value` account part (after '-') cannot be empty",
)?;
}
Ok(Self(Ustr::from(value)))
}
pub fn new<T: AsRef<str>>(value: T) -> Self {
Self::new_checked(value).expect_display(FAILED)
}
#[cfg_attr(not(feature = "python"), allow(dead_code))]
pub(crate) fn set_inner(&mut self, value: &str) {
self.0 = Ustr::from(value);
}
#[must_use]
pub fn inner(&self) -> Ustr {
self.0
}
#[must_use]
pub fn as_str(&self) -> &str {
self.0.as_str()
}
#[must_use]
pub fn get_issuer(&self) -> Venue {
Venue::from_str_unchecked(self.0.split_once('-').expect("AccountId contains '-'").0)
}
#[must_use]
pub fn get_issuers_id(&self) -> &str {
self.0.split_once('-').expect("AccountId contains '-'").1
}
}
impl Debug for AccountId {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "\"{}\"", self.0)
}
}
impl Display for AccountId {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.0)
}
}
#[cfg(test)]
mod tests {
use nautilus_core::correctness::CorrectnessError;
use rstest::rstest;
use super::*;
use crate::identifiers::stubs::*;
#[rstest]
#[should_panic(expected = "invalid string for 'value', was empty")]
fn test_account_id_new_invalid_string() {
AccountId::new("");
}
#[rstest]
#[should_panic(expected = "did not contain '-'")]
fn test_account_id_new_missing_hyphen() {
AccountId::new("123456789");
}
#[rstest]
fn test_account_id_fmt() {
let s = "IB-U123456789";
let account_id = AccountId::new(s);
let formatted = format!("{account_id}");
assert_eq!(formatted, s);
}
#[rstest]
fn test_string_reprs(account_ib: AccountId) {
assert_eq!(account_ib.as_str(), "IB-1234567890");
}
#[rstest]
fn test_get_issuer(account_ib: AccountId) {
assert_eq!(account_ib.get_issuer(), Venue::new("IB"));
}
#[rstest]
fn test_get_issuers_id(account_ib: AccountId) {
assert_eq!(account_ib.get_issuers_id(), "1234567890");
}
#[rstest]
#[should_panic(expected = "issuer part (before '-') cannot be empty")]
fn test_new_with_empty_issuer_panics() {
let _ = AccountId::new("-123456");
}
#[rstest]
#[should_panic(expected = "account part (after '-') cannot be empty")]
fn test_new_with_empty_account_panics() {
let _ = AccountId::new("IB-");
}
#[rstest]
fn test_new_checked_with_empty_issuer_returns_error() {
assert!(AccountId::new_checked("-123456").is_err());
}
#[rstest]
fn test_new_checked_with_empty_account_returns_error() {
assert!(AccountId::new_checked("IB-").is_err());
}
#[rstest]
fn test_new_checked_with_empty_issuer_returns_typed_error_with_stable_display() {
let error = AccountId::new_checked("-123456").unwrap_err();
match error {
CorrectnessError::PredicateViolation { ref message } => {
assert_eq!(message, "`value` issuer part (before '-') cannot be empty");
}
other => panic!("Expected typed predicate violation, was: {other:?}"),
}
assert_eq!(
error.to_string(),
"`value` issuer part (before '-') cannot be empty"
);
}
#[rstest]
fn test_new_checked_with_empty_account_returns_typed_error_with_stable_display() {
let error = AccountId::new_checked("IB-").unwrap_err();
match error {
CorrectnessError::PredicateViolation { ref message } => {
assert_eq!(message, "`value` account part (after '-') cannot be empty");
}
other => panic!("Expected typed predicate violation, was: {other:?}"),
}
assert_eq!(
error.to_string(),
"`value` account part (after '-') cannot be empty"
);
}
}