use sway_ast::Literal;
use sway_types::{
constants::{
ALLOW_DEAD_CODE_NAME, ALLOW_DEPRECATED_NAME, CFG_PROGRAM_TYPE_ARG_NAME, CFG_TARGET_ARG_NAME,
},
Ident, Span, Spanned,
};
use std::{collections::HashMap, hash::Hash, sync::Arc};
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct AttributeArg {
pub name: Ident,
pub value: Option<Literal>,
pub span: Span,
}
impl Spanned for AttributeArg {
fn span(&self) -> Span {
self.span.clone()
}
}
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct Attribute {
pub name: Ident,
pub args: Vec<AttributeArg>,
pub span: Span,
}
#[derive(Clone, Debug, Eq, PartialEq, Hash)]
pub enum AttributeKind {
Doc,
DocComment,
Storage,
Inline,
Test,
Payable,
Allow,
Cfg,
Deprecated,
}
impl AttributeKind {
pub fn expected_args_len_min_max(self) -> (usize, Option<usize>) {
match self {
AttributeKind::Doc => (0, None),
AttributeKind::DocComment => (0, None),
AttributeKind::Storage => (0, None),
AttributeKind::Inline => (0, None),
AttributeKind::Test => (0, None),
AttributeKind::Payable => (0, None),
AttributeKind::Allow => (1, Some(1)),
AttributeKind::Cfg => (1, Some(1)),
AttributeKind::Deprecated => (0, None),
}
}
pub fn expected_args_values(self, _arg_index: usize) -> Option<Vec<String>> {
match self {
AttributeKind::Doc => None,
AttributeKind::DocComment => None,
AttributeKind::Storage => None,
AttributeKind::Inline => None,
AttributeKind::Test => None,
AttributeKind::Payable => None,
AttributeKind::Allow => Some(vec![
ALLOW_DEAD_CODE_NAME.to_string(),
ALLOW_DEPRECATED_NAME.to_string(),
]),
AttributeKind::Cfg => Some(vec![
CFG_TARGET_ARG_NAME.to_string(),
CFG_PROGRAM_TYPE_ARG_NAME.to_string(),
]),
AttributeKind::Deprecated => None,
}
}
}
#[derive(Default, Clone, Debug, Eq, PartialEq)]
pub struct AttributesMap(Arc<HashMap<AttributeKind, Vec<Attribute>>>);
impl AttributesMap {
pub fn new(attrs_map: Arc<HashMap<AttributeKind, Vec<Attribute>>>) -> AttributesMap {
AttributesMap(attrs_map)
}
pub fn first(&self) -> Option<(&AttributeKind, &Attribute)> {
let mut first: Option<(&AttributeKind, &Attribute)> = None;
for (kind, attrs) in self.iter() {
for attr in attrs {
if let Some((_, first_attr)) = first {
if attr.span.start() < first_attr.span.start() {
first = Some((kind, attr));
}
} else {
first = Some((kind, attr));
}
}
}
first
}
pub fn inner(&self) -> &HashMap<AttributeKind, Vec<Attribute>> {
&self.0
}
}
impl std::ops::Deref for AttributesMap {
type Target = Arc<HashMap<AttributeKind, Vec<Attribute>>>;
fn deref(&self) -> &Self::Target {
&self.0
}
}
pub struct AllowDeprecatedEnterToken {
diff: i32,
}
#[derive(Default)]
pub struct AllowDeprecatedState {
allowed: u32,
}
impl AllowDeprecatedState {
pub(crate) fn enter(&mut self, attributes: AttributesMap) -> AllowDeprecatedEnterToken {
if let Some(all_allows) = attributes.get(&AttributeKind::Allow) {
for allow in all_allows {
for arg in allow.args.iter() {
if arg.name.as_str() == ALLOW_DEPRECATED_NAME {
self.allowed += 1;
return AllowDeprecatedEnterToken { diff: -1 };
}
}
}
}
AllowDeprecatedEnterToken { diff: 0 }
}
pub(crate) fn exit(&mut self, token: AllowDeprecatedEnterToken) {
self.allowed = self.allowed.saturating_add_signed(token.diff);
}
pub(crate) fn is_allowed(&self) -> bool {
self.allowed > 0
}
}