use alloc::vec::Vec;
use codec::{Decode, Encode};
use sp_core::RuntimeDebug;
#[derive(Eq, RuntimeDebug, Clone)]
pub enum RuntimeString {
Borrowed(&'static str),
#[cfg(feature = "std")]
Owned(String),
#[cfg(not(feature = "std"))]
Owned(Vec<u8>),
}
impl scale_info::TypeInfo for RuntimeString {
type Identity = str;
fn type_info() -> scale_info::Type {
Self::Identity::type_info()
}
}
#[macro_export]
macro_rules! format_runtime_string {
($($args:tt)*) => {{
#[cfg(feature = "std")]
{
sp_runtime::RuntimeString::Owned(format!($($args)*))
}
#[cfg(not(feature = "std"))]
{
sp_runtime::RuntimeString::Owned($crate::format!($($args)*).as_bytes().to_vec())
}
}};
}
impl From<&'static str> for RuntimeString {
fn from(data: &'static str) -> Self {
Self::Borrowed(data)
}
}
impl<'a> TryFrom<&'a RuntimeString> for &'a str {
type Error = core::str::Utf8Error;
fn try_from(from: &'a RuntimeString) -> core::result::Result<&'a str, Self::Error> {
match from {
#[cfg(feature = "std")]
RuntimeString::Owned(string) => Ok(string.as_str()),
#[cfg(not(feature = "std"))]
RuntimeString::Owned(vec) => core::str::from_utf8(&vec),
RuntimeString::Borrowed(str) => Ok(str),
}
}
}
#[cfg(feature = "std")]
impl From<RuntimeString> for String {
fn from(string: RuntimeString) -> Self {
match string {
RuntimeString::Borrowed(data) => data.to_owned(),
RuntimeString::Owned(data) => data,
}
}
}
impl Default for RuntimeString {
fn default() -> Self {
Self::Borrowed(Default::default())
}
}
impl PartialEq for RuntimeString {
fn eq(&self, other: &Self) -> bool {
self.as_ref() == other.as_ref()
}
}
impl AsRef<[u8]> for RuntimeString {
fn as_ref(&self) -> &[u8] {
match self {
Self::Borrowed(val) => val.as_ref(),
Self::Owned(val) => val.as_ref(),
}
}
}
#[cfg(feature = "std")]
impl std::ops::Deref for RuntimeString {
type Target = str;
fn deref(&self) -> &str {
match self {
Self::Borrowed(val) => val,
Self::Owned(val) => val,
}
}
}
impl Encode for RuntimeString {
fn encode(&self) -> Vec<u8> {
match self {
Self::Borrowed(val) => val.encode(),
Self::Owned(val) => val.encode(),
}
}
}
impl Decode for RuntimeString {
fn decode<I: codec::Input>(value: &mut I) -> Result<Self, codec::Error> {
Decode::decode(value).map(Self::Owned)
}
}
#[cfg(feature = "std")]
impl std::fmt::Display for RuntimeString {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match self {
Self::Borrowed(val) => write!(f, "{}", val),
Self::Owned(val) => write!(f, "{}", val),
}
}
}
#[cfg(feature = "serde")]
impl serde::Serialize for RuntimeString {
fn serialize<S: serde::Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error> {
match self {
Self::Borrowed(val) => val.serialize(serializer),
Self::Owned(val) => val.serialize(serializer),
}
}
}
#[cfg(feature = "serde")]
impl<'de> serde::Deserialize<'de> for RuntimeString {
fn deserialize<D: serde::Deserializer<'de>>(de: D) -> Result<Self, D::Error> {
Ok(Self::Owned(serde::Deserialize::deserialize(de)?))
}
}
#[macro_export]
macro_rules! create_runtime_str {
( $y:expr ) => {{
$crate::RuntimeString::Borrowed($y)
}};
}