/*
* Copyright (c) 2010, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* The Universal Permissive License (UPL), Version 1.0
*
* Subject to the condition set forth below, permission is hereby granted to any
* person obtaining a copy of this software, associated documentation and/or
* data (collectively the "Software"), free of charge and under any and all
* copyright rights in the Software, and any and all patent rights owned or
* freely licensable by each licensor hereunder covering either (i) the
* unmodified Software as contributed to or provided by such licensor, or (ii)
* the Larger Works (as defined below), to deal in both
*
* (a) the Software, and
*
* (b) any piece of software and/or hardware listed in the lrgrwrks.txt file if
* one is included with the Software each a "Larger Work" to which the Software
* is contributed by such licensors),
*
* without restriction, including without limitation the rights to copy, create
* derivative works of, display, perform, and distribute the Software and make,
* use, sell, offer for sale, import, export, have made, and have sold the
* Software and the Larger Work(s), and to sublicense the foregoing rights on
* either these or other terms.
*
* This license is subject to the following condition:
*
* The above copyright notice and either this complete permission notice or at a
* minimum a reference to the UPL must be included in all copies or substantial
* portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package com.oracle.js.parser;
Utility for scanning thru a char array.
/**
* Utility for scanning thru a char array.
*/
public class Scanner {
Characters to scan. /** Characters to scan. */
protected final char[] content;
Position in content. /** Position in content. */
protected int position;
Scan limit. /** Scan limit. */
protected final int limit;
Current line number. /** Current line number. */
protected int line;
Current character in stream /** Current character in stream */
protected char ch0;
1 character lookahead /** 1 character lookahead */
protected char ch1;
2 character lookahead /** 2 character lookahead */
protected char ch2;
3 character lookahead /** 3 character lookahead */
protected char ch3;
Constructor
Params: - content – content to scan
- line – start line number
- start – position index in content where to start
- length – length of input
/**
* Constructor
*
* @param content content to scan
* @param line start line number
* @param start position index in content where to start
* @param length length of input
*/
protected Scanner(final char[] content, final int line, final int start, final int length) {
this.content = content;
this.position = start;
this.limit = start + length;
this.line = line;
reset(position);
}
Copy constructor
Params: - scanner – scanner
- state – state, the state is a tuple {position, limit, line} only visible internally
/**
* Copy constructor
*
* @param scanner scanner
* @param state state, the state is a tuple {position, limit, line} only visible internally
*/
Scanner(final Scanner scanner, final State state) {
content = scanner.content;
position = state.position;
limit = state.limit;
line = state.line;
reset(position);
}
Information needed to restore previous state.
/**
* Information needed to restore previous state.
*/
static class State {
Position in content. /** Position in content. */
public final int position;
Scan limit. /** Scan limit. */
private int limit;
Current line number. /** Current line number. */
public final int line;
State(final int position, final int limit, final int line) {
this.position = position;
this.limit = limit;
this.line = line;
}
Change the limit for a new scanner.
Params: - limit – New limit.
/**
* Change the limit for a new scanner.
*
* @param limit New limit.
*/
void setLimit(final int limit) {
this.limit = limit;
}
int getLimit() {
return limit;
}
boolean isEmpty() {
return position == limit;
}
}
Save the state of the scan.
Returns: Captured state.
/**
* Save the state of the scan.
*
* @return Captured state.
*/
State saveState() {
return new State(position, limit, line);
}
Restore the state of the scan.
Params: - state – Captured state.
/**
* Restore the state of the scan.
*
* @param state Captured state.
*/
void restoreState(final State state) {
position = state.position;
line = state.line;
reset(position);
}
Returns true of scanner is at end of input
Returns: true if no more input
/**
* Returns true of scanner is at end of input
*
* @return true if no more input
*/
protected final boolean atEOF() {
return position == limit;
}
Get the ith character from the content.
Params: - i – Index of character.
Returns: ith character or '\0' if beyond limit.
/**
* Get the ith character from the content.
*
* @param i Index of character.
* @return ith character or '\0' if beyond limit.
*/
protected final char charAt(final int i) {
// Get a character from the content, '\0' if beyond the end of file.
return i < limit ? content[i] : '\0';
}
Reset to a character position.
Params: - i – Position in content.
/**
* Reset to a character position.
*
* @param i Position in content.
*/
protected final void reset(final int i) {
ch0 = charAt(i);
ch1 = charAt(i + 1);
ch2 = charAt(i + 2);
ch3 = charAt(i + 3);
position = i < limit ? i : limit;
}
Skip ahead a number of characters.
Params: - n – Number of characters to skip.
/**
* Skip ahead a number of characters.
*
* @param n Number of characters to skip.
*/
protected final void skip(final int n) {
if (n == 1 && !atEOF()) {
ch0 = ch1;
ch1 = ch2;
ch2 = ch3;
ch3 = charAt(position + 4);
position++;
} else if (n != 0) {
reset(position + n);
}
}
}