Skip to content

Commit b25ced5

Browse files
Andreas Frömericanhazstring
Andreas Frömer
authored andcommitted
Catch error if file content could not be parsed
1 parent 037ed84 commit b25ced5

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased] - TBA
44
### Fixed
5+
- Fixed `FileContentProvider` to throw an exception when the file does not exist
6+
- Added `try/catch` to `FileSymbolProvider` to continue working instead of crashing if a file could not be parsed
57
### Added
68
### Changed
79
### Removed

src/Exception/IOException.php

+5
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,9 @@ public static function unableToOpenHandle(string $path): self
1212
{
1313
return new self('Unable to open resource ' . $path);
1414
}
15+
16+
public static function fileDoesNotExist(string $path): self
17+
{
18+
return new self('File does not exist: ' . $path);
19+
}
1520
}

src/Parser/PHP/AbstractCollector.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
abstract class AbstractCollector extends NodeVisitorAbstract implements SymbolCollectorInterface
1212
{
13-
private ?Closure $includeCallback;
13+
private ?Closure $includeCallback = null;
1414

1515
public function setFileIncludeCallback(Closure $includeCallback): void
1616
{

src/Symbol/Provider/FileSymbolProvider.php

+10-5
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,16 @@ public function __construct(SymbolNameParserInterface $parser, FileContentProvid
3737
public function provide(): Generator
3838
{
3939
foreach ($this->fileIterator as $file) {
40-
$content = $this->fileContentProvider->getContent($file);
41-
$this->parser->setCurrentFile($file);
42-
43-
foreach ($this->parser->parseSymbolNames($content) as $symbolName) {
44-
yield $symbolName => new Symbol($symbolName);
40+
try {
41+
$content = $this->fileContentProvider->getContent($file);
42+
$this->parser->setCurrentFile($file);
43+
44+
foreach ($this->parser->parseSymbolNames($content) as $symbolName) {
45+
yield $symbolName => new Symbol($symbolName);
46+
}
47+
} catch (IOException $exception) {
48+
// TODO add logging
49+
continue;
4550
}
4651
}
4752

0 commit comments

Comments
 (0)