mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 15:47:58 +00:00
0e49ed72aa
* add serde_full feature flag add serde_full to sp_runtime add space to toml add serde_full to application-crypto add serde_full to arithmetic fix arithmetic add serde full to beefy add serde full to consensus add serde_full to core add serdefull to finality grandpa add serde_full to several primitives crates make rpc no_std compatible add scale info to runtime make serializer no_std compatible add serde full to storage add full serde to version add serde full to weights add all serde_full features add . to comment add missing impl-serde fix no-std build fix build add full_crypto to serde_full serde_full also implements crypto full_serde does not work with full_crytpo. needs std no no_std serde impl possible also for crypto std is necessary no serde full for application crypto fix arithmetic fix tomls fix some things impl fmt for Signature add serialize to Public add impl_maybe_marker_serde_full fix sp-application-crypto toml add serde feature flag fix clippy fix toml grandpa fix grandpa rename if_std to if_serde keystore is not no_std compatible make keystore vrf no_std compatible fix nopos-elections fix rpc fix serializer fix test-primitives fix version add comment add serde full only import for format string remove all(serde_full and full_crypot) as serde_full enforces full_crypto make comment better readable even better comment clean up rpc toml clean up toml clean up serializer toml clean up storage toml fix std build update .lock fix sp-version move sp_std import test extern crate alloc replace sp_std with core add missing core sp_core: serde feature do not enforce full crypto application-crypto: serde feature do not enforce full crypto rename serde_full to serde add dep:serde and alloc to default feature add full_crypto and remove unnecessary debu/fmt impls for serde update comment remove obolsete change in display AccountId32 remove extra changes minimize diff revert keystore changes remove std from keystore remove full-crypto feature fix serde import fix comment fix feature = serde * rename serde_full to serde * move #[doc(hidden)] back * remove feature = full crypto require frm MultiSigner * reorder serde and scale_info import * fix bs58 missing alloc import in serde feature * add `from_string` to serde feature and add unimplemented * remove serde feature from fixed_point display * Remove serde/alloc Co-authored-by: Davide Galassi <davxy@datawok.net> * Update primitives/consensus/babe/Cargo.toml Co-authored-by: Bastian Köcher <git@kchr.de> * Update primitives/arithmetic/src/fixed_point.rs Co-authored-by: Bastian Köcher <git@kchr.de> * revert `from_string`fixed impl back to std only * remove duplicate runtime string impl * use sp_std::alloc * remove no_std compatible rpc * remove no_std compatibility from serializer * rename mpl_maybe_marker_serde to std_or_serde * update .lock * add sp-std to executor * fix sp-std import * fix sp_std::format import * use crate import * add serde feature * Update primitives/core/src/lib.rs --------- Co-authored-by: Davide Galassi <davxy@datawok.net> Co-authored-by: Bastian Köcher <git@kchr.de>
156 lines
3.7 KiB
Rust
156 lines
3.7 KiB
Rust
// This file is part of Substrate.
|
|
|
|
// Copyright (C) Parity Technologies (UK) Ltd.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
use codec::{Decode, Encode};
|
|
use sp_core::RuntimeDebug;
|
|
use sp_std::vec::Vec;
|
|
|
|
/// A string that wraps a `&'static str` in the runtime and `String`/`Vec<u8>` on decode.
|
|
#[derive(Eq, RuntimeDebug, Clone)]
|
|
pub enum RuntimeString {
|
|
/// The borrowed mode that wraps a `&'static str`.
|
|
Borrowed(&'static str),
|
|
/// The owned mode that wraps a `String`.
|
|
#[cfg(feature = "std")]
|
|
Owned(String),
|
|
/// The owned mode that wraps a `Vec<u8>`.
|
|
#[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()
|
|
}
|
|
}
|
|
|
|
/// Convenience macro to use the format! interface to get a `RuntimeString::Owned`
|
|
#[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(sp_std::alloc::format!($($args)*).as_bytes().to_vec())
|
|
}
|
|
}};
|
|
}
|
|
|
|
impl From<&'static str> for RuntimeString {
|
|
fn from(data: &'static str) -> Self {
|
|
Self::Borrowed(data)
|
|
}
|
|
}
|
|
|
|
#[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)?))
|
|
}
|
|
}
|
|
|
|
/// Create a const [`RuntimeString`].
|
|
#[macro_export]
|
|
macro_rules! create_runtime_str {
|
|
( $y:expr ) => {{
|
|
$crate::RuntimeString::Borrowed($y)
|
|
}};
|
|
}
|