Filename   A
last analyzed

Complexity

Total Complexity 6

Size/Duplication

Total Lines 36
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 7
c 1
b 0
f 0
dl 0
loc 36
ccs 8
cts 8
cp 1
rs 10
wmc 6

3 Methods

Rating   Name   Duplication   Size   Complexity  
A matches() 0 3 2
A getIterator() 0 8 2
A calculateSize() 0 3 2
1
<?php
2
3
namespace Cerbero\JsonParser\Sources;
4
5
use Traversable;
6
7
use function is_string;
8
9
/**
10
 * The filename source.
11
 *
12
 * @property-read string $source
13
 */
14
class Filename extends Source
15
{
16
    /**
17
     * Retrieve the JSON fragments
18
     *
19
     * @return Traversable<int, string>
20
     */
21 19
    public function getIterator(): Traversable
22
    {
23 19
        $handle = fopen($this->source, 'rb');
24
25
        try {
26 19
            yield from new JsonResource($handle, $this->config);
27
        } finally {
28 19
            $handle && fclose($handle);
29
        }
30
    }
31
32
    /**
33
     * Determine whether the JSON source can be handled
34
     *
35
     * @return bool
36
     */
37 348
    public function matches(): bool
38
    {
39 348
        return is_string($this->source) && is_file($this->source);
40
    }
41
42
    /**
43
     * Retrieve the calculated size of the JSON source
44
     *
45
     * @return int|null
46
     */
47 2
    protected function calculateSize(): ?int
48
    {
49 2
        return filesize($this->source) ?: null;
50
    }
51
}
52