blob: 29678450a32e842dec29e6282eb11e3e0ec08f93 (
plain)
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
|
<?php
/**
* @file
*
* The CSS Input Stream abstraction.
*/
namespace QueryPath\CSS;
/**
* Simple wrapper to turn a string into an input stream.
* This provides a standard interface on top of an array of
* characters.
*/
class InputStream {
protected $stream = NULL;
public $position = 0;
/**
* Build a new CSS input stream from a string.
*
* @param string
* String to turn into an input stream.
*/
function __construct($string) {
$this->stream = str_split($string);
}
/**
* Look ahead one character.
*
* @return char
* Returns the next character, but does not remove it from
* the stream.
*/
function peek() {
return $this->stream[0];
}
/**
* Get the next unconsumed character in the stream.
* This will remove that character from the front of the
* stream and return it.
*/
function consume() {
$ret = array_shift($this->stream);
if (!empty($ret)) {
$this->position++;
}
return $ret;
}
/**
* Check if the stream is empty.
* @return boolean
* Returns TRUE when the stream is empty, FALSE otherwise.
*/
function isEmpty() {
return count($this->stream) == 0;
}
}
|