Skip to content

Commit 60fcefa

Browse files
committed
Lexer file structure changed and unnecessary exceptions removed
1 parent ec5f519 commit 60fcefa

13 files changed

+32
-108
lines changed

src/Parser/Lexer/Scanner/LengthException.php src/Parser/Lexer/LengthException.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

3-
namespace Remorhaz\JSONPointer\Parser\Lexer\Scanner;
3+
namespace Remorhaz\JSONPointer\Parser\Lexer;
44

55
/**
6-
* SPL LengthException of lexical analyzer's text scanner.
6+
* SPL LengthException of lexical analyzer.
77
*
88
* @see \LengthException
99
* @package JSONPointer

src/Parser/Lexer/Lexer.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public function readToken()
8282
$token = $this
8383
->getScanner()
8484
->readToken();
85-
} catch (Scanner\UnknownSyntaxException $e) {
85+
} catch (UnknownSyntaxException $e) {
8686
throw new UnknownSyntaxException(
8787
"Unknown syntax error near position #{$this->getNextPosition()}",
8888
$this->getNextPosition(),

src/Parser/Lexer/LogicException.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Remorhaz\JSONPointer\Parser\Lexer;
44

55
/**
6-
* SPL LogicException of lexical analyzer's token buffer.
6+
* SPL LogicException of lexical analyzer.
77
*
88
* @see \LogicException
99
* @package JSONPointer

src/Parser/Lexer/RegExpException.php

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace Remorhaz\JSONPointer\Parser\Lexer;
4+
5+
/**
6+
* Is thrown by lexical analyzer on PREG errors after matching
7+
* regular expressions.
8+
*
9+
* @package JSONPointer
10+
*/
11+
class RegExpException extends RuntimeException
12+
{
13+
}

src/Parser/Lexer/Scanner.php

+12-21
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,11 @@ public static function factory()
5959
* Returns source text.
6060
*
6161
* @return string
62-
* @throws Scanner\RuntimeException
6362
*/
6463
public function getText()
6564
{
6665
if (null === $this->text) {
67-
throw new Scanner\RuntimeException("Text is not set");
66+
throw new RuntimeException("Text is not set");
6867
}
6968
return $this->text;
7069
}
@@ -75,13 +74,12 @@ public function getText()
7574
*
7675
* @param string $text
7776
* @return $this
78-
* @throws Scanner\RegExpException
7977
*/
8078
public function setText($text)
8179
{
8280
PregHelper::assertValidUTF8(
8381
$text,
84-
Scanner\RegExpException::class,
82+
RegExpException::class,
8583
"Regular expression error on checking source text"
8684
);
8785
$this->text = (string) $text;
@@ -106,7 +104,6 @@ public function isEnd()
106104
* Reads next token from text.
107105
*
108106
* @return Token
109-
* @throws Scanner/UnknownSyntaxException
110107
*/
111108
public function readToken()
112109
{
@@ -125,7 +122,7 @@ public function readToken()
125122
$token = $this->matchNextToken($errorTypeList);
126123
}
127124
if (null === $token) {
128-
throw new Scanner\UnknownSyntaxException("Unknown syntax error in source text");
125+
throw new UnknownSyntaxException("Unknown syntax error in source text");
129126
}
130127
return $token;
131128
}
@@ -164,20 +161,18 @@ protected function matchNextToken(array $typeList)
164161
*
165162
* @param int $byteCount
166163
* @return $this
167-
* @throws Scanner\LogicException
168-
* @throws Scanner\DomainException
169164
*/
170165
protected function advanceCursor($byteCount)
171166
{
172167
if (0 >= $byteCount) {
173-
throw new Scanner\DomainException("Byte count to advance cursor must be positive");
168+
throw new DomainException("Byte count to advance cursor must be positive");
174169
}
175170
if ($this->isEnd()) {
176-
throw new Scanner\LogicException("Cursor is at the end of text and cannot be advanced");
171+
throw new LogicException("Cursor is at the end of text and cannot be advanced");
177172
}
178173
$maxByteCount = strlen($this->getText()) - $this->cursor;
179174
if ($byteCount > $maxByteCount) {
180-
throw new Scanner\LogicException("Cursor cannot be advanced beyond the end of text");
175+
throw new LogicException("Cursor cannot be advanced beyond the end of text");
181176
}
182177
$this->cursor += $byteCount;
183178
$this->textAtCursor = null;
@@ -190,7 +185,7 @@ protected function getTextLength($text)
190185
$length = preg_match_all('#.#us', $text);
191186
PregHelper::assertMatchResult(
192187
$length,
193-
Scanner\RegExpException::class,
188+
RegExpException::class,
194189
"Regular expression error on getting token length"
195190
);
196191
return $length;
@@ -202,7 +197,6 @@ protected function getTextLength($text)
202197
*
203198
* @param int $type
204199
* @return string
205-
* @throws Scanner\DomainException
206200
*/
207201
protected function getTokenPattern($type)
208202
{
@@ -213,7 +207,7 @@ protected function getTokenPattern($type)
213207
Token::TYPE_ERROR_INVALID_ESCAPE => '~',
214208
];
215209
if (!isset($patternMap[$type])) {
216-
throw new Scanner\DomainException("Unknown token type: {$type}");
210+
throw new DomainException("Unknown token type: {$type}");
217211
}
218212
$pattern = $patternMap[$type];
219213
return "#{$pattern}#uA";
@@ -224,15 +218,14 @@ protected function getTokenPattern($type)
224218
* Returns part of source string that starts at current cursor position.
225219
*
226220
* @return string
227-
* @throws Scanner\LengthException
228221
* @todo Limit substring size with maximal token length (without breaking UTF-8).
229222
*/
230223
protected function getTextAtCursor()
231224
{
232225
if (null === $this->textAtCursor) {
233226
$textAtCursor = substr($this->getText(), $this->cursor);
234227
if (strlen($textAtCursor) == 0) {
235-
throw new Scanner\LengthException("No more text to match tokens");
228+
throw new LengthException("No more text to match tokens");
236229
}
237230
$this->textAtCursor = $textAtCursor;
238231
}
@@ -245,21 +238,19 @@ protected function getTextAtCursor()
245238
*
246239
* @param int $type
247240
* @return string|null Token text or NULL.
248-
* @throws Scanner\LengthException
249-
* @throws Scanner\RegExpException
250241
*/
251242
protected function matchTokenTextAtCursor($type)
252243
{
253244
$result = preg_match($this->getTokenPattern($type), $this->getTextAtCursor(), $matches);
254245
PregHelper::assertMatchResult(
255246
$result,
256-
Scanner\RegExpException::class,
247+
RegExpException::class,
257248
"Failed to match token text due to regular expression error"
258249
);
259250
if (1 === $result) {
260251
$text = $matches[0];
261252
if (strlen($text) == 0) {
262-
throw new Scanner\LengthException("Matched token text is empty");
253+
throw new LengthException("Matched token text is empty");
263254
}
264255
} else {
265256
$text = null;
@@ -275,7 +266,7 @@ protected function unescape($escapedText)
275266
'~1' => '/',
276267
];
277268
if (!isset($unescapeMap[$escapedText])) {
278-
throw new Scanner\DomainException("Unknown escape sequence: {$escapedText}");
269+
throw new DomainException("Unknown escape sequence: {$escapedText}");
279270
}
280271
return $unescapeMap[$escapedText];
281272
}

src/Parser/Lexer/Scanner/DomainException.php

-13
This file was deleted.

src/Parser/Lexer/Scanner/Exception.php

-12
This file was deleted.

src/Parser/Lexer/Scanner/LogicException.php

-13
This file was deleted.

src/Parser/Lexer/Scanner/RegExpException.php

-15
This file was deleted.

src/Parser/Lexer/Scanner/RuntimeException.php

-13
This file was deleted.

src/Parser/Lexer/Scanner/UnknownSyntaxException.php

-14
This file was deleted.

tests/Parser/Lexer/Scanner/ReadTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public function providerInvalidText()
112112

113113

114114
/**
115-
* @expectedException \Remorhaz\JSONPointer\Parser\Lexer\Scanner\Exception
115+
* @expectedException \Remorhaz\JSONPointer\Parser\Lexer\Exception
116116
*/
117117
public function testReadingEmptyTextEndThrowsException()
118118
{

tests/Parser/Lexer/Scanner/TextTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class TextTest extends \PHPUnit_Framework_TestCase
1111

1212

1313
/**
14-
* @expectedException \Remorhaz\JSONPointer\Parser\Lexer\Scanner\Exception
14+
* @expectedException \Remorhaz\JSONPointer\Parser\Lexer\Exception
1515
*/
1616
public function testUninitializedTextAccessThrowsException()
1717
{
@@ -72,7 +72,7 @@ public function testIsNotEndAfterSettingNonEmptyText()
7272
/**
7373
* @param string $text
7474
* @dataProvider providerBrokenUnicodeText
75-
* @expectedException \Remorhaz\JSONPointer\Parser\Lexer\Scanner\RegExpException
75+
* @expectedException \Remorhaz\JSONPointer\Parser\Lexer\RegExpException
7676
* @expectedExceptionCode PREG_BAD_UTF8_ERROR
7777
* @expectedExceptionMessage PREG_BAD_UTF8_ERROR
7878
*/

0 commit comments

Comments
 (0)