Completed
Pull Request — master (#48)
by Frederik
02:18
created

LineIterator   A

Complexity

Total Complexity 7

Size/Duplication

Total Lines 39
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 7
lcom 0
cbo 1
dl 0
loc 39
ccs 18
cts 18
cp 1
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
B newIterator() 0 24 6
1
<?php
2
declare(strict_types=1);
3
4
namespace Genkgo\Mail\Stream;
5
6
use Genkgo\Mail\StreamInterface;
7
8
final class LineIterator extends \IteratorIterator
9
{
10
    /**
11
     * @param StreamInterface $stream
12
     */
13 28
    public function __construct(StreamInterface $stream)
14
    {
15 28
        parent::__construct($this->newIterator($stream));
16 28
    }
17
18
    /**
19
     * @param StreamInterface $stream
20
     * @return \Generator
21
     */
22 28
    private function newIterator(StreamInterface $stream): \Generator
23
    {
24 28
        $stream->rewind();
25
26 28
        $bytes = '';
27 28
        while (!$stream->eof()) {
28 28
            $bytes .= $stream->read(1000);
29
30 28
            $index = 0;
31 28
            while (isset($bytes[$index])) {
32 28
                if ($bytes[$index] === "\r" && isset($bytes[$index + 1]) && $bytes[$index + 1] === "\n") {
33 9
                    $line = \substr($bytes, 0, $index);
34 9
                    $bytes = \substr($bytes, $index + 2);
35 9
                    $index = -1;
36
37 9
                    yield $line;
38
                }
39
40 28
                $index++;
41
            }
42
        }
43
44 27
        yield $bytes;
45 20
    }
46
}
47