-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathAnsiAsciiControlParser.php
159 lines (124 loc) · 2.91 KB
/
AnsiAsciiControlParser.php
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<?php
class Sequence {
protected $string;
protected $complete;
public function __construct($string, $complete = true) {
$this->string = $string;
$this->complete = $complete;
}
public function getString() {
return $this->string;
}
}
class TextSequence extends Sequence {
//Always complete
public function __construct($string, $complete = true) {
parent::__construct($string, true);
}
}
class EscapeSequence extends Sequence {
}
class ControlSequence extends Sequence {
}
class AnsiAsciiControlParser {
const TEXT = 0;
const ESCAPE = 1;
const CONTROL = 2;
private $sequenceList;
public function __construct() {
$this->sequenceList = array();
}
public function getSequenceList() {
return $this->sequenceList;
}
public function getTextString() {
$s = '';
foreach ($this->sequenceList as $sequence) {
if ($sequence instanceof TextSequence) {
$s .= $sequence->getString();
}
}
return $s;
}
public function getFullString() {
$s = '';
foreach ($this->sequenceList as $sequence) {
$s .= $sequence->getString();
}
return $s;
}
private static function getEscCode($c) {
return $c & 0x7F; //Escape sequences are treated as 7 bits (to be verified)
}
public function parse($s) {
$this->sequenceList = array();
$state = self::TEXT;
$buffer = '';
for ($i = 0; $i < strlen($s); $i++) {
$escc = $s[$i];
switch ($escc) {
case "\x1B":
switch ($state) {
case self::ESCAPE:
$this->sequenceList[] = new EscapeSequence($buffer, false);
break;
case self::CONTROL:
$this->sequenceList[] = new ControlSequence($buffer, false);
break;
case self::TEXT:
if (strlen($buffer) > 0) {
$this->sequenceList[] = new TextSequence($buffer);
}
break;
default:
throw new ErrorException("Unknown state {$state}");
}
$buffer = '';
if (strlen($s) > $i + 1 && $s[$i + 1] === "\x5B") {
$state = self::CONTROL;
$buffer .= $s[$i];
$i++;
} else {
$state = self::ESCAPE;
}
$buffer .= $s[$i];
break;
default:
$buffer .= $s[$i];
$cval = ord($s[$i]);
switch ($state) {
case self::ESCAPE:
if (0x30 <= $cval && $cval <= 0x7E) {
$this->sequenceList[] = new EscapeSequence($buffer, true);
$buffer = '';
$state = self::TEXT;
}
break;
case self::CONTROL:
if (0x40 <= $cval && $cval <= 0x7E) {
$this->sequenceList[] = new ControlSequence($buffer, true);
$buffer = '';
$state = self::TEXT;
}
break;
}
}
}
switch ($state) {
case self::TEXT:
if (strlen($buffer) > 0) {
$this->sequenceList[] = new TextSequence($buffer);
}
break;
case self::ESCAPE:
$this->sequenceList[] = new EscapeSequence($buffer, false);
break;
case self::CONTROL:
$this->sequenceList[] = new ControlSequence($buffer, false);
break;
default:
throw new ErrorException("Unknown state {$state}");
}
}
}
?>