Completed
Push — master ( 159d23...41721b )
by satoru
02:39 queued 01:24
created

LargeCsvExport::parseCsv()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 14
Code Lines 7

Duplication

Lines 4
Ratio 28.57 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 4
loc 14
rs 9.4285
c 1
b 0
f 0
cc 3
eloc 7
nc 3
nop 1
1
<?php
2
namespace CsvCombine\LargeExport;
3
use Cake\Network\Exception\MethodNotAllowedException;
4
use Cake\Utility\Security;
5
use Cake\Filesystem\File;
6
7
/**
8
 * LargeCsvExport  code license:
9
 *
10
 * @copyright Copyright (C) 2011 hagiwara.
11
 * @since CakePHP(tm) v 1.3
12
 * @license http://www.opensource.org/licenses/mit-license.php The MIT License
13
 */
14
class LargeCsvExport {
15
16
    private $tmpCsvFp;
17
    private $defaultSettings = [
18
        'delimiter' => ',',
19
        'export_encoding' => 'SJIS-win',
20
        'array_encoding' => 'UTF-8',
21
        'write_span' => 1,
22
    ];
23
    private $settings;
24
    private $tmpRowText = '';
25
    private $rowCount = 0;
26
27
    /**
28
     * __construct
29
     *
30
     */
31
    public function __construct($settings = [])
32
    {
33
        // 設定値
34
        $this->settings = array_merge(
35
            $this->defaultSettings,
36
            $settings
37
        );
38
        $this->tmpCsvFp = new File($this->getTmpFileName());
39
    }
40
41
    /**
42
     * getTmpFileName
43
     * 一時ファイルの取得
44
     */
45
    private function getTmpFileName()
46
    {
47
        $tmpFileName = TMP . 'csv_file_' . Security::hash(time() . rand());
48
        // ファイルが存在した場合は何もしない
49
        if (file_exists($tmpFileName)) {
50
            return $this->getTmpFileName();
51
        }
52
        return $tmpFileName;
53
    }
54
55
    /**
56
     * addRow
57
     * 都度都度ファイルに追記をしていく
58
     */
59
    public function addRow($lists)
60
    {
61
        if (!is_array($lists)) {
62
            throw new MethodNotAllowedException('$list must be array.');
63
        }
64
        $this->rowCount++;
65
        $csvRow = $this->parseCsv($lists);
66
        $this->tmpRowText .= $csvRow;
67
        if ($this->rowCount % $this->settings['write_span'] == 0) {
68
            $this->writeRow();
69
        }
70
    }
71
72
    /**
73
     * writeRow
74
     * 行の書き込み
75
     */
76
    private function writeRow()
77
    {
78
        $this->tmpCsvFp->write($this->tmpRowText, 'a');
79
        // 一時的なテキストの初期化
80
        $this->tmpRowText = '';
81
    }
82
83
    /**
84
     * read
85
     * csvテキストデータの読み込み(及び一時ファイルの削除)
86
     */
87
    public function read()
88
    {
89
        // 書き込みの残りがあれば書き込む
90
        $this->writeRow();
91
92
        $csvText = $this->tmpCsvFp->read();
93
        // ファイル削除
94
        $this->tmpCsvFp->delete();
95
        $this->tmpCsvFp->close();
96
        return $csvText;
97
    }
98
99
    /**
100
     * getPath
101
     * ファイルパスの取得。readメソッドでメモリで落ちる場合はパスを取得してrequest->fileでDLする
102
     */
103
    public function getPath()
104
    {
105
        // 書き込みの残りがあれば書き込む
106
        $this->writeRow();
107
        return $this->tmpCsvFp->pwd();
108
    }
109
110
    /*
111
     * _parseCsv
112
     * csv(など)の形式に変更
113
     *
114
     * @param array $lists 変換する値
115
     * @param string 1行分のCSVテキストデータ
116
     */
117
    private function parseCsv($lists)
118
    {
119
        // 文字コードの変換
120
        mb_convert_variables($this->settings['export_encoding'], $this->settings['array_encoding'], $lists);
121
        foreach ($lists as $listKey => $list) {
122
            //区切り文字・改行・ダブルクオートの時
123 View Code Duplication
            if (preg_match('/[' . $this->settings['delimiter'] . '\\n"]/', $list)) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
124
                $list = str_replace('"', '""', $list);
125
                $lists[$listKey] = '"' . $list . '"';
126
            }
127
        }
128
        // カンマ区切り
129
        return implode($this->settings['delimiter'], $lists) . "\r\n";
130
    }
131
132
}
133