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
52
53
54
55
56
57
58
59
60
61
use crate::config::ConfigOption;
use crate::linter::{SyntaxRule, SyntaxRuleResult};
use sv_parser::{NodeEvent, RefNode, SyntaxTree};

#[derive(Default)]
pub struct DefaultNettypeNone {
    directed_nettype: Option<String>,
}

impl SyntaxRule for DefaultNettypeNone {
    fn check(
        &mut self,
        syntax_tree: &SyntaxTree,
        event: &NodeEvent,
        _option: &ConfigOption,
    ) -> SyntaxRuleResult {
        let node = match event {
            NodeEvent::Enter(x) => x,
            NodeEvent::Leave(_) => {
                return SyntaxRuleResult::Pass;
            }
        };

        if let RefNode::DefaultNettypeCompilerDirective(x) = node {
            let (_symbol, _keyword, default_nettype_value) = &x.nodes;
            let default_nettype_value: String = syntax_tree.get_str_trim(default_nettype_value).unwrap().to_string();
            self.directed_nettype = Some(default_nettype_value);
        }

        match node {
            RefNode::ModuleDeclaration(_) |
            RefNode::UdpDeclaration(_) |
            RefNode::InterfaceDeclaration(_) |
            RefNode::InterfaceClassDeclaration(_) |
            RefNode::ProgramDeclaration(_) |
            RefNode::PackageDeclaration(_) |
            RefNode::PackageItem(_) |
            RefNode::BindDirective(_) |
            RefNode::ConfigDeclaration(_) => {
                if self.directed_nettype == Some(String::from("none")) {
                    SyntaxRuleResult::Pass
                } else {
                    SyntaxRuleResult::Fail
                }
            }
            _ => SyntaxRuleResult::Pass,
        }
    }

    fn name(&self) -> String {
        String::from("default_nettype_none")
    }

    fn hint(&self, _option: &ConfigOption) -> String {
        String::from("Place `` `default_nettype none`` at the top of source code.")
    }

    fn reason(&self) -> String {
        String::from("Compiler directive `` `default_nettype none`` detects unintentional implicit wires.")
    }
}