%PDF- %PDF-
| Direktori : /home/tjamichg/cursos.tjamich.gob.mx/vendor/sonata-project/exporter/src/Writer/ |
| Current File : /home/tjamichg/cursos.tjamich.gob.mx/vendor/sonata-project/exporter/src/Writer/CsvWriter.php |
<?php
/*
* This file is part of the Sonata Project package.
*
* (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sonata\Exporter\Writer;
use Sonata\Exporter\Exception\InvalidDataFormatException;
/**
* @author Thomas Rabaix <thomas.rabaix@sonata-project.org>
*/
class CsvWriter implements TypedWriterInterface
{
/**
* @var string
*/
protected $filename;
/**
* @var string
*/
protected $delimiter;
/**
* @var string
*/
protected $enclosure;
/**
* @var string
*/
protected $escape;
/**
* @var resource
*/
protected $file;
/**
* @var bool
*/
protected $showHeaders;
/**
* @var int
*/
protected $position;
/**
* @var bool
*/
protected $withBom;
/**
* @var string
*/
private $terminate;
/**
* @param string $filename
* @param string $delimiter
* @param string $enclosure
* @param string $escape
* @param bool $showHeaders
* @param bool $withBom
* @param string $terminate
*/
public function __construct(
$filename,
$delimiter = ',',
$enclosure = '"',
$escape = '\\',
$showHeaders = true,
$withBom = false,
$terminate = "\n"
) {
$this->filename = $filename;
$this->delimiter = $delimiter;
$this->enclosure = $enclosure;
$this->escape = $escape;
$this->showHeaders = $showHeaders;
$this->terminate = $terminate;
$this->position = 0;
$this->withBom = $withBom;
if (is_file($filename)) {
throw new \RuntimeException(sprintf('The file %s already exist', $filename));
}
}
/**
* {@inheritdoc}
*/
final public function getDefaultMimeType()
{
return 'text/csv';
}
/**
* {@inheritdoc}
*/
final public function getFormat()
{
return 'csv';
}
/**
* {@inheritdoc}
*/
public function open()
{
$this->file = fopen($this->filename, 'w', false);
if ("\n" !== $this->terminate) {
stream_filter_register('filterTerminate', CsvWriterTerminate::class);
stream_filter_append($this->file, 'filterTerminate', STREAM_FILTER_WRITE, ['terminate' => $this->terminate]);
}
if (true === $this->withBom) {
fprintf($this->file, \chr(0xEF).\chr(0xBB).\chr(0xBF));
}
}
/**
* {@inheritdoc}
*/
public function close()
{
fclose($this->file);
}
/**
* {@inheritdoc}
*/
public function write(array $data)
{
if (0 == $this->position && $this->showHeaders) {
$this->addHeaders($data);
++$this->position;
}
$result = @fputcsv($this->file, $data, $this->delimiter, $this->enclosure, $this->escape);
if (!$result) {
throw new InvalidDataFormatException();
}
++$this->position;
}
/**
* @param array $data
*/
protected function addHeaders(array $data)
{
$headers = [];
foreach ($data as $header => $value) {
$headers[] = $header;
}
fputcsv($this->file, $headers, $this->delimiter, $this->enclosure, $this->escape);
}
}
class_exists(\Exporter\Writer\CsvWriter::class);