All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vertx.core.parsetools.RecordParser Maven / Gradle / Ivy

There is a newer version: 4.5.10
Show newest version
/*
 * Copyright (c) 2011-2013 The original author or authors
 * ------------------------------------------------------
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and Apache License v2.0 which accompanies this distribution.
 *
 *     The Eclipse Public License is available at
 *     http://www.eclipse.org/legal/epl-v10.html
 *
 *     The Apache License v2.0 is available at
 *     http://www.opensource.org/licenses/apache2.0.php
 *
 * You may elect to redistribute this code under either of these licenses.
 */

package io.vertx.core.parsetools;

import io.vertx.codegen.annotations.Fluent;
import io.vertx.codegen.annotations.GenIgnore;
import io.vertx.codegen.annotations.VertxGen;
import io.vertx.core.Handler;
import io.vertx.core.buffer.Buffer;
import io.vertx.core.parsetools.impl.RecordParserImpl;

import java.util.Objects;

/**
 * A helper class which allows you to easily parse protocols which are delimited by a sequence of bytes, or fixed
 * size records.
 * 

* Instances of this class take as input {@link io.vertx.core.buffer.Buffer} instances containing raw bytes, * and output records. *

* For example, if I had a simple ASCII text protocol delimited by '\n' and the input was the following: *

*

 * buffer1:HELLO\nHOW ARE Y
 * buffer2:OU?\nI AM
 * buffer3: DOING OK
 * buffer4:\n
 * 
* Then the output would be:

*

 * buffer1:HELLO
 * buffer2:HOW ARE YOU?
 * buffer3:I AM DOING OK
 * 
* Instances of this class can be changed between delimited mode and fixed size record mode on the fly as * individual records are read, this allows you to parse protocols where, for example, the first 5 records might * all be fixed size (of potentially different sizes), followed by some delimited records, followed by more fixed * size records. *

* Instances of this class can't currently be used for protocols where the text is encoded with something other than * a 1-1 byte-char mapping. *

* Please see the documentation for more information. * * @author Tim Fox * @author Lars Timm */ @VertxGen public interface RecordParser extends Handler { void setOutput(Handler output); /** * Create a new {@code RecordParser} instance, initially in delimited mode, and where the delimiter can be represented * by the String {@code} delim endcoded in latin-1 . Don't use this if your String contains other than latin-1 characters. *

* {@code output} Will receive whole records which have been parsed. * * @param delim the initial delimiter string * @param output handler that will receive the output */ static RecordParser newDelimited(String delim, Handler output) { return RecordParserImpl.newDelimited(delim, output); } /** * Create a new {@code RecordParser} instance, initially in delimited mode, and where the delimiter can be represented * by the {@code Buffer} delim. *

* {@code output} Will receive whole records which have been parsed. * * @param delim the initial delimiter buffer * @param output handler that will receive the output */ static RecordParser newDelimited(Buffer delim, Handler output) { return RecordParserImpl.newDelimited(delim, output); } /** * Create a new {@code RecordParser} instance, initially in fixed size mode, and where the record size is specified * by the {@code size} parameter. *

* {@code output} Will receive whole records which have been parsed. * * @param size the initial record size * @param output handler that will receive the output */ static RecordParser newFixed(int size, Handler output) { return RecordParserImpl.newFixed(size, output); } /** * Flip the parser into delimited mode, and where the delimiter can be represented * by the String {@code delim} encoded in latin-1 . Don't use this if your String contains other than latin-1 characters. *

* This method can be called multiple times with different values of delim while data is being parsed. * * @param delim the new delimeter */ void delimitedMode(String delim); /** * Flip the parser into delimited mode, and where the delimiter can be represented * by the delimiter {@code delim}. *

* This method can be called multiple times with different values of delim while data is being parsed. * * @param delim the new delimiter */ void delimitedMode(Buffer delim); /** * Flip the parser into fixed size mode, where the record size is specified by {@code size} in bytes. *

* This method can be called multiple times with different values of size while data is being parsed. * * @param size the new record size */ void fixedSizeMode(int size); /** * This method is called to provide the parser with data. * * @param buffer a chunk of data */ void handle(Buffer buffer); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy