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

com.netflix.msl.io.MslTokenizer Maven / Gradle / Ivy

There is a newer version: 1.2226.0
Show newest version
/**
 * Copyright (c) 2015-2018 Netflix, Inc.  All rights reserved.
 * 
 * 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.
 */
package com.netflix.msl.io;

/**
 * 

A {@code MslTokenizer} takes in a binary source and parses out * {@link MslObject} and {@link MslArray} instances.

* * @author Wesley Miaw */ public abstract class MslTokenizer { /** *

Closes the tokenizer, cleaning up any resources and preventing future * use.

* * @throws MslEncoderException if there is an error closing the tokenizer. */ public void close() throws MslEncoderException { closed = true; } /** *

Aborts future reading off the tokenizer.

*/ public void abort() { aborted = true; } /** *

Returns true if more objects can be read from the data source. This * method determines that by actually trying to read the next object.

* * @param timeout read timeout in milliseconds or -1 for no timeout. * @return true if more objects are available from the data source, false * if the tokenizer has been aborted or closed. * @throws MslEncoderException if the next object cannot be read or the * source data at the current position is invalid. */ public boolean more(final int timeout) throws MslEncoderException { if (aborted || closed) return false; if (next != null) return true; next = nextObject(timeout); return (next != null); } /** *

Return the next object (should be an instance of {@link MslObject} or * {@link MslArray}) from the source data.

* *

If the source data's current position cannot be parsed as an object, * an exception is thrown and the source data position's new position is * undefined. Subsequent calls to this function should not re-throw the * exception and instead should look for the next object. The algorithm * used to search for the next object, and how the position should be set * to do so, is up to the implementer and may depend upon the encoding.

* * @param timeout read timeout in milliseconds or -1 for no timeout. * @return the next object or {@code null} if there are no more. * @throws MslEncoderException if the next object cannot be read or the * source data at the current position is invalid. */ protected abstract MslObject next(final int timeout) throws MslEncoderException; /** *

Return the next object.

* * @param timeout read timeout in milliseconds or -1 for no timeout. * @return the next object or {@code null} if there are no more or the * tokenizer has been aborted or closed. * @throws MslEncoderException if the next object cannot be read or the * source data at the current position is invalid. */ public MslObject nextObject(final int timeout) throws MslEncoderException { if (aborted || closed) return null; if (next != null) { final MslObject mo = next; next = null; return mo; } return next(timeout); } /** Closed. */ private boolean closed = false; /** Aborted. */ private boolean aborted = false; /** Cached next object. */ private MslObject next = null; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy