blob: 02b9c6d22a88e763264ad9c5e3684270ddb32949 [file] [log] [blame]
// 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_CREATE_OBJECT_NAME_MATCH_RULE_H_
#define VERIBLE_VERILOG_ANALYSIS_CHECKERS_CREATE_OBJECT_NAME_MATCH_RULE_H_
#include <set>
#include <string>
#include "common/analysis/lint_rule_status.h"
#include "common/analysis/matcher/core_matchers.h"
#include "common/analysis/matcher/matcher.h"
#include "common/analysis/matcher/matcher_builders.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 {
// CreateObjectNameMatchRule checks that the name of a create()'d object
// matches the name of the variable to which it is assigned.
//
// Good:
// foo_h = mytype::type_id::create("foo_h");
// Bad:
// foo_h = mytype::type_id::create("zoo_h");
//
class CreateObjectNameMatchRule : public verible::SyntaxTreeLintRule {
public:
// This policy determines how this lint rule is registered in
// verilog/analysis/lint_rule_registry.h.
using rule_type = verible::SyntaxTreeLintRule;
static const LintRuleDescriptor& GetDescriptor();
void HandleSymbol(const verible::Symbol& symbol,
const verible::SyntaxTreeContext& context) final;
verible::LintRuleStatus Report() const final;
private:
// Record of found violations.
std::set<verible::LintViolation> violations_;
};
} // namespace analysis
} // namespace verilog
#endif // VERIBLE_VERILOG_ANALYSIS_CHECKERS_CREATE_OBJECT_NAME_MATCH_RULE_H_