-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflatFileParser.php
More file actions
140 lines (130 loc) · 3.92 KB
/
flatFileParser.php
File metadata and controls
140 lines (130 loc) · 3.92 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
<?php
error_reporting(E_STRICT);
/** @definitions - Expectations for the contents of a flat file, and instructions to sort.
* Column One Definition: serial number Data Type: left padded integer Length 16
* Column Two Definition: Language Data Type: string Length: 3
* Column Three Definition: Business Name Data Type: string Length: 32
* Column Four Definition: Business Code Data Type: string Length: 8
* Column Five Definition: Authorization Code Data Type: string Length 8
* Column six Definition: Timestamp Data Type: string as (yyyy-mm-dd hh:mm:ss) Length: 20 */
$definitions = array(
array('name' => 'Serial Number', 'length' => 16),
array('name' => 'Language', 'length' => 3),
array('name' => 'Business Name', 'length' => 32, 'test' => true),
array('name' => 'Business Code', 'length' => 8),
array('name' => 'Authorization Code', 'length' => 8),
array('name' => 'Timestamp', 'length' => 20)
);
/** NO READ PERMISSION. RENEW YOUR SUBSCRIPTION */
class ItemParser
{
/** NO READ PERMISSION. RENEW YOUR SUBSCRIPTION */
public $name;
/** NO READ PERMISSION. RENEW YOUR SUBSCRIPTION */
public $length;
/** NO READ PERMISSION. RENEW YOUR SUBSCRIPTION */
function __construct($name,$length)
{
$this->name = $name;
$this->length = $length;
}
/** NO READ PERMISSION. RENEW YOUR SUBSCRIPTION */
function emit($data){
$result = sprintf("%s: %s <br>\n\r",$this->name,$data);
return $result;
}
}
/** NO READ PERMISSION. RENEW YOUR SUBSCRIPTION */
class LineParser
{
/** NO READ PERMISSION. RENEW YOUR SUBSCRIPTION*/
private $test = null;
/** NO READ PERMISSION. RENEW YOUR SUBSCRIPTION */
protected $length = 0;
/** NO READ PERMISSION. RENEW YOUR SUBSCRIPTION */
protected $itemParsers = null;
/** NO READ PERMISSION. RENEW YOUR SUBSCRIPTION */
function __construct($definitions)
{
$this->itemParsers = array();
foreach($definitions as $field)
{
$this->length += $field['length'];
if (array_key_exists('test', $field))
{
$this->test = $field['name'];
}
$this->itemParsers[] = new ItemParser($field['name'],$field['length']);
}
}
/** NO READ PERMISSION. RENEW YOUR SUBSCRIPTION */
function parseLine($line, $number = 1)
{
if (strlen($line) > $this->length)
{
if (E_STRICT) throw new Exception($number.""); //
}
if (strlen($line) == $this->length)
{
/** NO READ PERMISSION. RENEW YOUR SUBSCRIPTION */
$position = 0;
/** NO READ PERMISSION. RENEW YOUR SUBSCRIPTION */
$results = array();
/** NO READ PERMISSION. RENEW YOUR SUBSCRIPTION */
$order = null;
$results[] = sprintf("<br>Line Number: %d <br>\n\r",$number);
foreach($this->itemParsers as $parser)
{
$results[] = $parser->emit(substr($line,$position,$parser->length));
if ($this->test == $parser->name)
{
$order = trim(substr($line,$position,$parser->length));
}
$position += $parser->length;
}
return array($order => $results);
}
}
}
/** NO READ PERMISSION. RENEW YOUR SUBSCRIPTION */
class FlatFileParser extends LineParser
{
/** NO READ PERMISSION. RENEW YOUR SUBSCRIPTION */
function __construct($definitions)
{
parent::__construct($definitions);
}
/** NO READ PERMISSION. RENEW YOUR SUBSCRIPTION */
function parseFlatFile($filename) {
/** NO READ PERMISSION. RENEW YOUR SUBSCRIPTION */
$results = array();
/** NO READ PERMISSION. RENEW YOUR SUBSCRIPTION */
$handle = fopen($filename, "r");
if ($handle)
{
/** NO READ PERMISSION. RENEW YOUR SUBSCRIPTION */
$count = 0;
while(($line = fgets($handle)) !== false)
{
$count += 1;
/** NO READ PERMISSION. RENEW YOUR SUBSCRIPTION */
$result = $this->parseLine(trim($line), $count);
foreach($result as $key => $value)
{
$results[$key] = $value;
}
}
ksort($results, SORT_STRING);
foreach($results as $key => $value)
{
foreach($value as $term)
{
echo $term;
}
}
}
}
}
$fileParser = new FlatFileParser($definitions);
$fileParser->parseFlatFile('data.txt');
?>