-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathFileReader.php
More file actions
142 lines (124 loc) · 3.2 KB
/
FileReader.php
File metadata and controls
142 lines (124 loc) · 3.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<?php
/**
* Created by PhpStorm.
* User: jderay
* Date: 9/4/14
* Time: 3:36 PM
*/
namespace Giftcards\FixedWidth;
use Giftcards\FixedWidth\Spec\FieldSpec;
use Giftcards\FixedWidth\Spec\FileSpec;
use Giftcards\FixedWidth\Spec\Recognizer\FailedRecognizer;
use Giftcards\FixedWidth\Spec\Recognizer\RecordSpecRecognizerInterface;
use Giftcards\FixedWidth\Spec\ValueFormatter\ValueFormatterInterface;
use Traversable;
class FileReader implements \IteratorAggregate, \ArrayAccess, \Countable
{
protected $file;
protected $spec;
protected $formatter;
protected $recognizer;
public function __construct(
FileInterface $file,
FileSpec $spec,
ValueFormatterInterface $formatter,
RecordSpecRecognizerInterface $recognizer = null
) {
$this->spec = $spec;
$this->file = $file;
$this->formatter = $formatter;
$this->recognizer = $recognizer ?: new FailedRecognizer();
}
/**
* @return FileInterface
*/
public function getFile()
{
return $this->file;
}
/**
* @param $lineIndex
* @param $fieldName
* @param null $recordSpecName
* @return mixed
*/
public function parseField($lineIndex, $fieldName, $recordSpecName = null)
{
return $this->getLineReader($lineIndex, $recordSpecName)->getField($fieldName);
}
/**
* @param $lineIndex
* @param null $recordSpecName
* @return array
*/
public function parseLine($lineIndex, $recordSpecName = null)
{
return $this->getLineReader($lineIndex, $recordSpecName)->getFields();
}
public function getLineReader($lineIndex, $recordSpecName = null)
{
$line = $this->file->getLine($lineIndex);
$recordSpec = $this->spec
->getRecordSpec($recordSpecName ?: $this->recognizer->recognize($line, $this->spec))
;
return new LineReader($line, $recordSpec, $this->formatter);
}
/**
* @param $lineIndex
* @return string
*/
public function getRecordSpecName($lineIndex)
{
return $this->recognizer->recognize($this->file->getLine($lineIndex), $this->spec);
}
/**
* @return LineToReaderIterator
*/
public function getIterator()
{
return new LineToReaderIterator(
$this->file,
$this->spec,
$this->recognizer,
$this->formatter
);
}
/**
* @param mixed $offset
* @return bool
*/
public function offsetExists($offset)
{
return isset($this->file[$offset]);
}
/**
* @param mixed $offset
* @return LineReader
*/
public function offsetGet($offset)
{
return $this->getLineReader($offset);
}
/**
* @param mixed $offset
* @param mixed $value
*/
public function offsetSet($offset, $value)
{
throw new \BadMethodCallException('a file reader is read only.');
}
/**
* @param mixed $offset
*/
public function offsetUnset($offset)
{
throw new \BadMethodCallException('a file reader is read only.');
}
/**
* @return int
*/
public function count()
{
return count($this->file);
}
}