Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removes $stopOnFailure params from Violations class #476

Merged
merged 1 commit into from
Apr 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 19 additions & 6 deletions src/CLI/Runner.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,23 @@
use Arkitect\Analyzer\Parser;
use Arkitect\ClassSetRules;
use Arkitect\CLI\Progress\Progress;
use Arkitect\Exceptions\FailOnFirstViolationException;
use Arkitect\Rules\ParsingErrors;
use Arkitect\Rules\Violations;
use Symfony\Component\Finder\SplFileInfo;

class Runner
{
/** @var Violations */
private $violations;
private Violations $violations;

/** @var ParsingErrors */
private $parsingErrors;
private ParsingErrors $parsingErrors;

private bool $stopOnFailure;

public function __construct(bool $stopOnFailure = false)
{
$this->violations = new Violations($stopOnFailure);
$this->stopOnFailure = $stopOnFailure;
$this->violations = new Violations();
$this->parsingErrors = new ParsingErrors();
}

Expand Down Expand Up @@ -57,6 +59,8 @@ public function check(
): void {
/** @var SplFileInfo $file */
foreach ($classSetRule->getClassSet() as $file) {
$fileViolations = new Violations();

if (!$onlyErrors) {
$progress->startParsingFile($file->getRelativePathname());
}
Expand All @@ -71,9 +75,18 @@ public function check(
/** @var ClassDescription $classDescription */
foreach ($fileParser->getClassDescriptions() as $classDescription) {
foreach ($classSetRule->getRules() as $rule) {
$rule->check($classDescription, $violations);
$rule->check($classDescription, $fileViolations);

if ($this->stopOnFailure && $fileViolations->count() > 0) {
$violations->merge($fileViolations);

throw new FailOnFirstViolationException();
}
}
}

$violations->merge($fileViolations);

if (!$onlyErrors) {
$progress->endParsingFile($file->getRelativePathname());
}
Expand Down
9 changes: 3 additions & 6 deletions src/Rules/Violation.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,11 @@

class Violation implements \JsonSerializable
{
/** @var string */
private $fqcn;
private string $fqcn;

/** @var int|null */
private $line;
private ?int $line;

/** @var string */
private $error;
private string $error;

public function __construct(string $fqcn, string $error, ?int $line = null)
{
Expand Down
21 changes: 8 additions & 13 deletions src/Rules/Violations.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
namespace Arkitect\Rules;

use Arkitect\CLI\Printer\PrinterFactory;
use Arkitect\Exceptions\FailOnFirstViolationException;
use Arkitect\Exceptions\IndexNotFoundException;

/**
Expand All @@ -16,24 +15,18 @@ class Violations implements \IteratorAggregate, \Countable, \JsonSerializable
/**
* @var Violation[]
*/
private $violations;
private array $violations;

/**
* @var bool
*/
private $stopOnFailure;

public function __construct(bool $stopOnFailure = false)
public function __construct()
{
$this->violations = [];
$this->stopOnFailure = $stopOnFailure;
}

public static function fromJson(string $json): self
{
$json = json_decode($json, true);

$instance = new self($json['stopOnFailure']);
$instance = new self();

$instance->violations = array_map(function (array $json): Violation {
return Violation::fromJson($json);
Expand All @@ -45,9 +38,11 @@ public static function fromJson(string $json): self
public function add(Violation $violation): void
{
$this->violations[] = $violation;
if ($this->stopOnFailure) {
throw new FailOnFirstViolationException();
}
}

public function merge(self $other): void
{
$this->violations = array_merge($this->violations, $other->toArray());
}

public function get(int $index): Violation
Expand Down