Mercurial > hg > monetdb-java
view src/main/java/nl/cwi/monetdb/mcl/parser/StartOfHeaderParser.java @ 62:b66003555560 embedded
Split parsers and cleaned the MCL layer.
author | Pedro Ferreira <pedro.ferreira@monetdbsolutions.com> |
---|---|
date | Fri, 25 Nov 2016 12:05:10 +0100 (2016-11-25) |
parents | a5a898f6886c |
children | 6325594f01af |
line wrap: on
line source
package nl.cwi.monetdb.mcl.parser; /** * Created by ferreira on 11/25/16. */ public abstract class StartOfHeaderParser { /* Query types (copied from sql_query.mx) */ /** A parse response (not handled) */ public final static int Q_PARSE = '0'; /** A tabular response (typical ResultSet) */ public final static int Q_TABLE = '1'; /** A response to an update statement, contains number of affected * rows and generated key-id */ public final static int Q_UPDATE = '2'; /** A response to a schema update */ public final static int Q_SCHEMA = '3'; /** A response to a transaction statement (start, rollback, abort, * commit) */ public final static int Q_TRANS = '4'; /** A tabular response in response to a PREPARE statement containing * information about the wildcard values that need to be supplied */ public final static int Q_PREPARE = '5'; /** A tabular continuation response (for a ResultSet) */ public final static int Q_BLOCK = '6'; /** An unknown and unsupported response */ public final static int Q_UNKNOWN = 0; protected int len; protected int pos; public StartOfHeaderParser() {} public abstract int parse(String in) throws MCLParseException; public abstract int getNextAsInt() throws MCLParseException; public abstract String getNextAsString() throws MCLParseException; public final boolean hasNext() { return pos < len; } }