1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
use crate::config::ConfigOption;
use crate::linter::{Rule, RuleResult};
use sv_parser::{unwrap_node, NodeEvent, PortDirection, RefNode, SyntaxTree};
#[derive(Default)]
pub struct InputWithVar;
impl Rule for InputWithVar {
fn check(
&mut self,
_syntax_tree: &SyntaxTree,
event: &NodeEvent,
_option: &ConfigOption,
) -> RuleResult {
let node = match event {
NodeEvent::Enter(x) => x,
NodeEvent::Leave(_) => {
return RuleResult::Pass;
}
};
match node {
RefNode::AnsiPortDeclaration(x) => {
let dir = unwrap_node!(*x, PortDirection);
let is_input = match dir {
Some(RefNode::PortDirection(PortDirection::Input(_))) => true,
_ => false,
};
let var = unwrap_node!(*x, VarDataTypeVar);
if is_input && var.is_none() {
RuleResult::Fail
} else {
RuleResult::Pass
}
}
_ => RuleResult::Pass,
}
}
fn name(&self) -> String {
String::from("input_with_var")
}
fn hint(&self, _option: &ConfigOption) -> String {
String::from("Specify `var` datakind on `input` ports.")
}
fn reason(&self) -> String {
String::from("Default datakind of input port is a tri-state net.")
}
}