-
Notifications
You must be signed in to change notification settings - Fork 157
/
Copy pathAbstractTokenizer.php
126 lines (112 loc) · 2.26 KB
/
AbstractTokenizer.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
<?php
/**
* Copyright 2021 Adobe
* All Rights Reserved.
*/
declare(strict_types=1);
namespace Magento2\Helpers\Tokenizer;
/**
* Template constructions tokenizer
*/
abstract class AbstractTokenizer
{
/**
* @var int
*/
protected $_currentIndex;
/**
* @var string
*/
protected $_string;
/**
* Move current index to next char.
*
* If index out of bounds returns false
*
* @return boolean
*/
public function next()
{
if ($this->_currentIndex + 1 >= strlen($this->_string)) {
return false;
}
$this->_currentIndex++;
return true;
}
/**
* Move current index to previous char.
*
* If index out of bounds returns false
*
* @return boolean
*/
public function prev()
{
if ($this->_currentIndex - 1 < 0) {
return false;
}
$this->_currentIndex--;
return true;
}
/**
* Move current index backwards.
*
* If index out of bounds returns false
*
* @param int $distance number of characters to backtrack
* @return bool
*/
public function back($distance)
{
if ($this->_currentIndex - $distance < 0) {
return false;
}
$this->_currentIndex -= $distance;
return true;
}
/**
* Return current char
*
* @return string
*/
public function char()
{
return $this->_string[$this->_currentIndex];
}
/**
* Set string for tokenize
*
* @param string $value
* @return void
*/
public function setString($value)
{
//phpcs:ignore Magento2.Functions.DiscouragedFunction
$this->_string = rawurldecode($value);
$this->reset();
}
/**
* Move char index to begin of string
*
* @return void
*/
public function reset()
{
$this->_currentIndex = 0;
}
/**
* Return true if current char is white-space
*
* @return boolean
*/
public function isWhiteSpace()
{
return $this->_string === '' ?: trim($this->char()) !== $this->char();
}
/**
* Tokenize string
*
* @return array
*/
abstract public function tokenize();
}