1 | <?php |
||
14 | class Reader extends AbstractReader |
||
15 | { |
||
16 | /** @var resource Pointer to the file to be written */ |
||
17 | protected $filePointer; |
||
18 | |||
19 | /** @var SheetIterator To iterator over the CSV unique "sheet" */ |
||
20 | protected $sheetIterator; |
||
21 | |||
22 | /** @var string Original value for the "auto_detect_line_endings" INI value */ |
||
23 | protected $originalAutoDetectLineEndings; |
||
24 | |||
25 | /** |
||
26 | * Returns the reader's current options |
||
27 | * |
||
28 | * @return ReaderOptions |
||
29 | */ |
||
30 | 81 | protected function getOptions() |
|
31 | { |
||
32 | 81 | if (!isset($this->options)) { |
|
33 | 81 | $this->options = new ReaderOptions(); |
|
34 | 81 | } |
|
35 | 81 | return $this->options; |
|
36 | } |
||
37 | |||
38 | /** |
||
39 | * Sets the field delimiter for the CSV. |
||
40 | * Needs to be called before opening the reader. |
||
41 | * |
||
42 | * @param string $fieldDelimiter Character that delimits fields |
||
43 | * @return Reader |
||
44 | */ |
||
45 | 63 | public function setFieldDelimiter($fieldDelimiter) |
|
50 | |||
51 | /** |
||
52 | * Sets the field enclosure for the CSV. |
||
53 | * Needs to be called before opening the reader. |
||
54 | * |
||
55 | * @param string $fieldEnclosure Character that enclose fields |
||
56 | * @return Reader |
||
57 | */ |
||
58 | 63 | public function setFieldEnclosure($fieldEnclosure) |
|
63 | |||
64 | /** |
||
65 | * Sets the encoding of the CSV file to be read. |
||
66 | * Needs to be called before opening the reader. |
||
67 | * |
||
68 | * @param string $encoding Encoding of the CSV file to be read |
||
69 | * @return Reader |
||
70 | */ |
||
71 | 75 | public function setEncoding($encoding) |
|
76 | |||
77 | /** |
||
78 | * Sets the EOL for the CSV. |
||
79 | * Needs to be called before opening the reader. |
||
80 | * |
||
81 | * @param string $endOfLineCharacter used to properly get lines from the CSV file. |
||
82 | * @return Reader |
||
83 | */ |
||
84 | 63 | public function setEndOfLineCharacter($endOfLineCharacter) |
|
89 | |||
90 | /** |
||
91 | * Set maximum bytes to read per line |
||
92 | * @param $maxReadBytesPerLine |
||
93 | * @return Reader |
||
94 | */ |
||
95 | 63 | public function setMaxReadBytesPerLine($maxReadBytesPerLine) |
|
100 | |||
101 | /** |
||
102 | * Returns whether stream wrappers are supported |
||
103 | * |
||
104 | * @return bool |
||
105 | */ |
||
106 | 6 | protected function doesSupportStreamWrapper() |
|
110 | |||
111 | /** |
||
112 | * Opens the file at the given path to make it ready to be read. |
||
113 | * If setEncoding() was not called, it assumes that the file is encoded in UTF-8. |
||
114 | * |
||
115 | * @param string $filePath Path of the CSV file to be read |
||
116 | * @return void |
||
117 | * @throws \Box\Spout\Common\Exception\IOException |
||
118 | */ |
||
119 | 84 | protected function openReader($filePath) |
|
135 | |||
136 | /** |
||
137 | * Returns an iterator to iterate over sheets. |
||
138 | * |
||
139 | * @return SheetIterator To iterate over sheets |
||
140 | */ |
||
141 | 81 | protected function getConcreteSheetIterator() |
|
145 | |||
146 | |||
147 | /** |
||
148 | * Closes the reader. To be used after reading the file. |
||
149 | * |
||
150 | * @return void |
||
151 | */ |
||
152 | 81 | protected function closeReader() |
|
160 | } |
||
161 |