shard-ameba/src/ameba/rule/base.cr

80 lines
1.8 KiB
Crystal
Raw Normal View History

2017-11-07 21:50:25 +00:00
module Ameba::Rule
2017-11-15 18:49:09 +00:00
# Represents a base of all rules. In other words, all rules
# inherits from this struct:
#
# ```
# struct MyRule < Ameba::Rule::Base
# def test(source)
# if invalid?(source)
# source.error self, location, "Something wrong."
# end
# end
#
# private def invalid?(source)
# # ...
# end
# end
# ```
#
# Enforces rules to implement an abstract `#test` method which
# is designed to test the source passed in. If source has issues
# that are tested by this rule, it should add an error.
#
2017-11-07 21:50:25 +00:00
abstract struct Base
2017-11-13 21:20:22 +00:00
include Config::Rule
2017-11-15 18:49:09 +00:00
# This method is designed to test the source passed in. If source has issues
# that are tested by this rule, it should add an error.
2017-10-30 20:00:01 +00:00
abstract def test(source : Source)
2017-11-15 18:49:09 +00:00
# Enabled property indicates whether this rule enabled or not.
# Only enabled rules will be included into the inspection.
2017-11-13 21:20:22 +00:00
prop enabled? = true
def test(source : Source, node : Crystal::ASTNode)
# can't be abstract
end
2017-11-15 18:49:09 +00:00
# A convenient addition to `#test` method that does the same
# but returns a passed in `source` as an addition.
#
# ```
# source = MyRule.new.catch(source)
# source.valid?
# ```
#
2017-10-30 20:00:01 +00:00
def catch(source : Source)
source.tap { |s| test s }
end
2017-11-15 18:49:09 +00:00
# Returns a name of this rule, which is basically a class name.
#
# ```
# struct MyRule < Ameba::Rule::Base
# def test(source)
# end
# end
#
# MyRule.new.name # => "MyRule"
# ```
#
2017-10-30 20:00:01 +00:00
def name
2017-11-07 21:50:25 +00:00
self.class.name.gsub("Ameba::Rule::", "")
2017-10-30 20:00:01 +00:00
end
2017-11-01 10:49:03 +00:00
2017-11-07 21:50:25 +00:00
protected def self.subclasses
2017-11-01 10:49:03 +00:00
{{ @type.subclasses }}
end
2017-10-30 20:00:01 +00:00
end
2017-11-07 21:50:25 +00:00
2017-11-15 18:49:09 +00:00
# Returns a list of all available rules.
#
# ```
# Ameba::Rule.rules # => [LineLength, ConstantNames, ....]
# ```
#
2017-11-07 21:50:25 +00:00
def self.rules
Base.subclasses
end
2017-10-30 20:00:01 +00:00
end