Passed
Push — master ( e60146...bf91e1 )
by Fabrice
02:03
created

CsvLoader::handleBom()   A

Complexity

Conditions 3
Paths 2

Size

Total Lines 7
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 3
eloc 3
nc 2
nop 0
dl 0
loc 7
rs 9.4285
c 0
b 0
f 0
1
<?php
2
3
/*
4
 * This file is part of YaEtl.
5
 *     (c) Fabrice de Stefanis / https://github.com/fab2s/YaEtl
6
 * This source file is licensed under the MIT license which you will
7
 * find in the LICENSE file or at https://opensource.org/licenses/MIT
8
 */
9
10
namespace fab2s\YaEtl\Loaders\File;
11
12
use fab2s\NodalFlow\NodalFlowException;
13
use fab2s\NodalFlow\YaEtlException;
14
use fab2s\YaEtl\Traits\CsvHandlerTrait;
15
16
/**
17
 * Class CsvLoader
18
 */
19
class CsvLoader extends FileLoaderAbstract
20
{
21
    use CsvHandlerTrait;
22
23
    /**
24
     * @var bool
25
     */
26
    protected $isFirstLine = true;
27
28
    /**
29
     * CsvLoader constructor.
30
     *
31
     * @param string      $destination
32
     * @param string|null $delimiter
33
     * @param string|null $enclosure
34
     * @param string|null $escape
35
     *
36
     * @throws NodalFlowException
37
     * @throws YaEtlException
38
     */
39
    public function __construct($destination, $delimiter = null, $enclosure = null, $escape = null)
40
    {
41
        parent::__construct($destination);
42
        $this->initCsvOptions($delimiter, $enclosure, $escape);
43
    }
44
45
    /**
46
     * Execute this Node
47
     *
48
     * @param array $param
49
     */
50
    public function exec($param)
51
    {
52
        $this->handleFirstLine($param)
53
            ->writeCsvLine($param);
54
    }
55
56
    /**
57
     * @param array $param
58
     *
59
     * @return $this
60
     */
61
    protected function handleFirstLine($param)
62
    {
63
        if ($this->isFirstLine) {
64
            $this->handleBom()
65
                ->handleSep()
66
                ->handleHeader($param);
67
            $this->isFirstLine = false;
68
        }
69
70
        return $this;
71
    }
72
73
    /**
74
     * @return $this
75
     */
76
    protected function handleBom()
77
    {
78
        if ($this->useBom && ($bom = $this->prependBom(''))) {
79
            fwrite($this->handle, $bom);
80
        }
81
82
        return $this;
83
    }
84
85
    /**
86
     * @return $this
87
     */
88
    protected function handleSep()
89
    {
90
        if ($this->useSep) {
91
            fwrite($this->handle, "sep=$this->delimiter" . PHP_EOL);
92
        }
93
94
        return $this;
95
    }
96
97
    /**
98
     * @param array $param
99
     *
100
     * @return $this
101
     */
102
    protected function handleHeader(array $param)
103
    {
104
        if ($this->useHeader) {
105
            if (!isset($this->header)) {
106
                $this->header = array_keys($param);
107
            }
108
109
            $this->writeCsvLine($this->header);
110
        }
111
112
        return $this;
113
    }
114
115
    /**
116
     * @param array $record
117
     *
118
     * @return bool|int
119
     */
120
    protected function writeCsvLine(array $record)
121
    {
122
        return fputcsv($this->handle, $record, $this->delimiter, $this->enclosure, $this->escape);
123
    }
124
}
125