![JAR search and dependency download from the Maven repository](/logo.png)
org.encog.util.SimpleParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of encog-core Show documentation
Show all versions of encog-core Show documentation
Encog Machine Learning Framework.
The newest version!
/*
* Encog(tm) Core v3.4 - Java Version
* http://www.heatonresearch.com/encog/
* https://github.com/encog/encog-java-core
* Copyright 2008-2017 Heaton Research, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* For more information on Heaton Research copyrights, licenses
* and trademarks visit:
* http://www.heatonresearch.com/copyright
*/
package org.encog.util;
public class SimpleParser {
private String line;
private int currentPosition;
private int marked;
public SimpleParser(String line)
{
this.line = line;
}
public int remaining()
{
return Math.max(this.line.length() - this.currentPosition, 0);
}
public boolean parseThroughComma()
{
eatWhiteSpace();
if (!eol())
{
if (peek() == ',')
{
advance();
return true;
}
}
return false;
}
public boolean isIdentifier()
{
if (eol())
return false;
return Character.isLetterOrDigit(peek()) || peek() == '_';
}
public char peek()
{
if (eol())
return (char)0;
else if (currentPosition >= this.line.length())
return (char)0;
else
return this.line.charAt(this.currentPosition);
}
public void advance()
{
if (currentPosition < this.line.length())
{
currentPosition++;
}
}
public boolean isWhiteSpace()
{
return " \t\n\r".indexOf(peek()) != -1;
}
public boolean eol()
{
return (this.currentPosition >= this.line.length());
}
public void eatWhiteSpace()
{
while (!eol() && isWhiteSpace())
advance();
}
public char readChar()
{
if (eol())
return (char)0;
char ch = peek();
advance();
return ch;
}
public String readToWhiteSpace()
{
StringBuilder result = new StringBuilder();
while (!isWhiteSpace() && !eol())
{
result.append(readChar());
}
return result.toString();
}
public boolean lookAhead(String str, boolean ignoreCase)
{
if (remaining() < str.length())
return false;
for (int i = 0; i < str.length(); i++)
{
char c1 = str.charAt(i);
char c2 = this.line.charAt(this.currentPosition+i);
if (ignoreCase)
{
c1 = Character.toLowerCase(c1);
c2 = Character.toLowerCase(c2);
}
if (c1 != c2)
return false;
}
return true;
}
public void advance(int p)
{
this.currentPosition=Math.min(line.length(),this.currentPosition+p);
}
public void mark()
{
this.marked = this.currentPosition;
}
public void reset()
{
this.currentPosition = this.marked;
}
public String readQuotedString() {
if( peek()!='\"')
return "";
StringBuilder result = new StringBuilder();
advance();
while( peek()!='\"' && !this.eol() ) {
result.append(readChar());
}
advance();
return result.toString();
}
public String readToChars(String chs) {
StringBuilder result = new StringBuilder();
while ( chs.indexOf(this.peek())==-1 && !eol())
{
result.append(readChar());
}
return result.toString();
}
public String getLine() {
return this.line;
}
public boolean lookAhead(String c) {
return lookAhead(c,false);
}
public String toString() {
StringBuilder result = new StringBuilder();
result.append("[Parser: ");
result.append(this.line.substring(this.currentPosition));
result.append("]");
return result.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy