mirror of
https://gitea.invidious.io/iv-org/shard-ameba.git
synced 2024-08-15 00:53:29 +00:00
Lint in parallel (#118)
* Lint in parallel * Synced output for dot/flycheck formatters * Re-raise exceptions raised in fibers * Add readme instructions
This commit is contained in:
parent
8d00d54012
commit
07e72b7bf9
6 changed files with 101 additions and 20 deletions
36
README.md
36
README.md
|
@ -15,6 +15,22 @@
|
|||
</p>
|
||||
</p>
|
||||
|
||||
- [About](#about)
|
||||
- [Usage](#usage)
|
||||
* [Run in parallel](#run-in-parallel)
|
||||
- [Installation](#installation)
|
||||
* [As a project dependency:](#as-a-project-dependency)
|
||||
* [OS X](#os-x)
|
||||
* [Docker](#docker)
|
||||
* [From sources](#from-sources)
|
||||
- [Configuration](#configuration)
|
||||
* [Only/Except](#onlyexcept)
|
||||
* [Explanation](#explanation)
|
||||
* [Inline disabling](#inline-disabling)
|
||||
- [Editor integration](#editor-integration)
|
||||
- [Credits & inspirations](#credits--inspirations)
|
||||
- [Contributors](#contributors)
|
||||
|
||||
## About
|
||||
|
||||
Ameba is a static code analysis tool for the Crystal language.
|
||||
|
@ -49,6 +65,26 @@ Finished in 542.64 milliseconds
|
|||
|
||||
```
|
||||
|
||||
### Run in parallel
|
||||
|
||||
Starting from 0.31.0 Crystal [supports parallelism](https://crystal-lang.org/2019/09/06/parallelism-in-crystal.html).
|
||||
It allows to run linting in parallel too.
|
||||
In order to take advantage of this feature you need to build ameba with preview_mt support:
|
||||
|
||||
```
|
||||
$ crystal build src/cli.cr -Dpreview_mt -o bin/ameba
|
||||
$ make install
|
||||
```
|
||||
|
||||
Some quick benchmark results measured while running Ameba on Crystal repo:
|
||||
|
||||
```
|
||||
$ CRYSTAL_WORKERS=1 ameba #=> 29.11 seconds
|
||||
$ CRYSTAL_WORKERS=2 ameba #=> 19.49 seconds
|
||||
$ CRYSTAL_WORKERS=4 ameba #=> 13.48 seconds
|
||||
$ CRYSTAL_WORKERS=8 ameba #=> 10.14 seconds
|
||||
```
|
||||
|
||||
## Installation
|
||||
|
||||
### As a project dependency:
|
||||
|
|
|
@ -53,6 +53,19 @@ module Ameba
|
|||
Runner.new(all_rules, [source], formatter, default_severity).run.success?.should be_true
|
||||
end
|
||||
|
||||
context "exception in rule" do
|
||||
it "raises an exception raised in fiber while running a rule" do
|
||||
rule = RaiseRule.new
|
||||
rule.should_raise = true
|
||||
rules = [rule] of Rule::Base
|
||||
source = Source.new "", "source.cr"
|
||||
|
||||
expect_raises(Exception, "something went wrong") do
|
||||
Runner.new(rules, [source], formatter, default_severity).run
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
context "invalid syntax" do
|
||||
it "reports a syntax error" do
|
||||
rules = [Rule::Lint::Syntax.new] of Rule::Base
|
||||
|
|
|
@ -81,6 +81,15 @@ module Ameba
|
|||
end
|
||||
end
|
||||
|
||||
# A rule that always raises an error
|
||||
struct RaiseRule < Rule::Base
|
||||
property should_raise = false
|
||||
|
||||
def test(source)
|
||||
should_raise && raise "something went wrong"
|
||||
end
|
||||
end
|
||||
|
||||
class DummyFormatter < Formatter::BaseFormatter
|
||||
property started_sources : Array(Source)?
|
||||
property finished_sources : Array(Source)?
|
||||
|
|
|
@ -7,6 +7,7 @@ module Ameba::Formatter
|
|||
include Util
|
||||
|
||||
@started_at : Time?
|
||||
@mutex = Thread::Mutex.new
|
||||
|
||||
# Reports a message when inspection is started.
|
||||
def started(sources)
|
||||
|
@ -18,12 +19,12 @@ module Ameba::Formatter
|
|||
# Reports a result of the inspection of a corresponding source.
|
||||
def source_finished(source : Source)
|
||||
sym = source.valid? ? ".".colorize(:green) : "F".colorize(:red)
|
||||
output << sym
|
||||
output.flush
|
||||
@mutex.synchronize { output << sym }
|
||||
end
|
||||
|
||||
# Reports a message when inspection is finished.
|
||||
def finished(sources)
|
||||
output.flush
|
||||
output << "\n\n"
|
||||
|
||||
show_affected_code = !config[:without_affected_code]?
|
||||
|
@ -38,7 +39,7 @@ module Ameba::Formatter
|
|||
output << "[#{issue.rule.severity.symbol}] #{issue.rule.name}: #{issue.message}\n".colorize(:red)
|
||||
|
||||
if show_affected_code && (code = affected_code(source, location))
|
||||
output << code
|
||||
output << code.colorize(:default)
|
||||
end
|
||||
|
||||
output << "\n"
|
||||
|
@ -51,15 +52,15 @@ module Ameba::Formatter
|
|||
|
||||
private def started_message(size)
|
||||
if size == 1
|
||||
"Inspecting 1 file.\n\n"
|
||||
"Inspecting 1 file.\n\n".colorize(:default)
|
||||
else
|
||||
"Inspecting #{size} files.\n\n"
|
||||
"Inspecting #{size} files.\n\n".colorize(:default)
|
||||
end
|
||||
end
|
||||
|
||||
private def finished_in_message(started, finished)
|
||||
if started && finished
|
||||
"Finished in #{to_human(finished - started)} \n\n"
|
||||
"Finished in #{to_human(finished - started)} \n\n".colorize(:default)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -1,9 +1,12 @@
|
|||
module Ameba::Formatter
|
||||
class FlycheckFormatter < BaseFormatter
|
||||
@mutex = Mutex.new
|
||||
|
||||
def source_finished(source : Source)
|
||||
source.issues.each do |e|
|
||||
next if e.disabled?
|
||||
if loc = e.location
|
||||
@mutex.synchronize do
|
||||
output.printf "%s:%d:%d: %s: [%s] %s\n",
|
||||
source.path, loc.line_number, loc.column_number, e.rule.severity.symbol,
|
||||
e.rule.name, e.message.gsub("\n", " ")
|
||||
|
@ -11,4 +14,5 @@ module Ameba::Formatter
|
|||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -68,7 +68,29 @@ module Ameba
|
|||
#
|
||||
def run
|
||||
@formatter.started @sources
|
||||
@sources.each do |source|
|
||||
channels = @sources.map { Channel(Exception?).new }
|
||||
@sources.each_with_index do |source, idx|
|
||||
channel = channels[idx]
|
||||
spawn do
|
||||
run_source(source)
|
||||
rescue e
|
||||
channel.send(e)
|
||||
else
|
||||
channel.send(nil)
|
||||
end
|
||||
end
|
||||
|
||||
channels.each do |c|
|
||||
e = c.receive
|
||||
raise e unless e.nil?
|
||||
end
|
||||
|
||||
self
|
||||
ensure
|
||||
@formatter.finished @sources
|
||||
end
|
||||
|
||||
private def run_source(source)
|
||||
@formatter.source_started source
|
||||
|
||||
if @syntax_rule.catch(source).valid?
|
||||
|
@ -81,10 +103,6 @@ module Ameba
|
|||
|
||||
@formatter.source_finished source
|
||||
end
|
||||
self
|
||||
ensure
|
||||
@formatter.finished @sources
|
||||
end
|
||||
|
||||
# Explains an issue at a specified *location*.
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue