blob: c7b82e40d0ecef8c048386559c8b44b84d2f76b5 [file]
// Copyright 2017-2020 The Verible Authors.
//
// 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.
#ifndef VERIBLE_VERILOG_ANALYSIS_CHECKERS_PORT_NAME_SUFFIX_RULE_H_
#define VERIBLE_VERILOG_ANALYSIS_CHECKERS_PORT_NAME_SUFFIX_RULE_H_
#include <set>
#include <string>
#include "common/analysis/lint_rule_status.h"
#include "common/analysis/syntax_tree_lint_rule.h"
#include "common/text/symbol.h"
#include "common/text/syntax_tree_context.h"
#include "verilog/analysis/descriptions.h"
namespace verilog {
namespace analysis {
// PortNameSuffixRule check if each port name follows the correct naming
// convention.
// The port names should end with _i for inputs, _o for outputs and _io
// for inouts.
class PortNameSuffixRule : public verible::SyntaxTreeLintRule {
public:
using rule_type = verible::SyntaxTreeLintRule;
static absl::string_view Name();
// Returns the description of the rule implemented formatted for either the
// helper flag or markdown depending on the parameter type.
static std::string GetDescription(DescriptionType);
void HandleSymbol(const verible::Symbol& symbol,
const verible::SyntaxTreeContext& context) override;
verible::LintRuleStatus Report() const override;
private:
// Link to style guide rule.
static const char kTopic[];
// Diagnostic messages for port name violations.
static const char kMessageIn[];
static const char kMessageOut[];
static const char kMessageInOut[];
// Helper functions
void Violation(absl::string_view direction, const verible::TokenInfo& token,
const verible::SyntaxTreeContext& context);
bool IsSuffixCorrect(absl::string_view suffix, absl::string_view direction);
// Violations
std::set<verible::LintViolation> violations_;
};
} // namespace analysis
} // namespace verilog
#endif // VERIBLE_VERILOG_ANALYSIS_CHECKERS_PORT_NAME_SUFFIX_RULE_H_