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

javax.websocket.Decoder Maven / Gradle / Ivy

/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright (c) 2012-2013 Oracle and/or its affiliates. All rights reserved.
 *
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common Development
 * and Distribution License("CDDL") (collectively, the "License").  You
 * may not use this file except in compliance with the License.  You can
 * obtain a copy of the License at
 * http://glassfish.java.net/public/CDDL+GPL_1_1.html
 * or packager/legal/LICENSE.txt.  See the License for the specific
 * language governing permissions and limitations under the License.
 *
 * When distributing the software, include this License Header Notice in each
 * file and include the License file at packager/legal/LICENSE.txt.
 *
 * GPL Classpath Exception:
 * Oracle designates this particular file as subject to the "Classpath"
 * exception as provided by Oracle in the GPL Version 2 section of the License
 * file that accompanied this code.
 *
 * Modifications:
 * If applicable, add the following below the License Header, with the fields
 * enclosed by brackets [] replaced by your own identifying information:
 * "Portions Copyright [year] [name of copyright owner]"
 *
 * Contributor(s):
 * If you wish your version of this file to be governed by only the CDDL or
 * only the GPL Version 2, indicate your decision by adding "[Contributor]
 * elects to include this software in this distribution under the [CDDL or GPL
 * Version 2] license."  If you don't indicate a single choice of license, a
 * recipient has the option to distribute your version of this file under
 * either the CDDL, the GPL Version 2 or to extend the choice of license to
 * its licensees as provided above.  However, if you add GPL Version 2 code
 * and therefore, elected the GPL Version 2 license, then the option applies
 * only if the new code is made subject to such option by the copyright
 * holder.
 */
package javax.websocket;

import java.io.IOException;
import java.io.InputStream;
import java.io.Reader;
import java.nio.ByteBuffer;

/**
 * The Decoder interface holds member interfaces that define how a developer can provide
 * the web socket container a way web socket messages into developer defined custom objects.
 * The websocket implementation creates a new instance of the decoder per endpoint 
 * instance per connection.
 * The lifecycle of the Decoder instance is governed by the container calls to the
 * {@link Decoder#init(javax.websocket.EndpointConfig)} and {@link Decoder#destroy() }
 * methods.
 *
 * @author dannycoward
 */
public interface Decoder {
    
    /**
     * This method is called with the endpoint configuration object of the
     * endpoint this decoder is intended for when
     * it is about to be brought into service.
     * 
     * @param config the endpoint configuration object when being brought into 
     * service
     */
    void init(EndpointConfig config);
    
    /**
      * This method is called when the decoder is about to be removed
      * from service in order that any resources the encoder used may 
      * be closed gracefully.
      */
    void destroy();

    /**
     * This interface defines how a custom object (of type T) is decoded from a web socket message in
     * the form of a byte buffer.
     */
    interface Binary extends Decoder {

        /**
         * Decode the given bytes into an object of type T.
         *
         * @param bytes the bytes to be decoded.
         * @return the decoded object.
         */
        T decode(ByteBuffer bytes) throws DecodeException;

        /**
         * Answer whether the given bytes can be decoded into an object of type T.
         *
         * @param bytes the bytes to be decoded.
         * @return whether or not the bytes can be decoded by this decoder.
         */
        boolean willDecode(ByteBuffer bytes);
        
    }

    /**
     * This interface defines how a custom object is decoded from a web socket message in
     * the form of a binary stream.
     */
    interface BinaryStream extends Decoder {

        /**
         * Decode the given bytes read from the input stream into an object of type T.
         *
         * @param is the input stream carrying the bytes.
         * @return the decoded object.
         */
        T decode(InputStream is) throws DecodeException, IOException;
        

    }

    /**
     * This interface defines how a custom object is decoded from a web socket message in
     * the form of a string.
     */
    interface Text extends Decoder {
        /**
         * Decode the given String into an object of type T.
         *
         * @param s string to be decoded.
         * @return the decoded message as an object of type T
         */
        T decode(String s) throws DecodeException;

        /**
         * Answer whether the given String can be decoded into an object of type T.
         *
         * @param s the string being tested for decodability.
         * @return whether this decoder can decoded the supplied string.
         */
        boolean willDecode(String s);
        

    }

    /**
     * This interface defines how a custom object of type T is decoded from a web socket message in
     * the form of a character stream.
     */
    interface TextStream extends Decoder {
        /**
         * Reads the websocket message from the implementation provided
         * Reader and decodes it into an instance of the supplied object type.
         *
         * @param reader the reader from which to read the web socket message.
         * @return the instance of the object that is the decoded web socket message.
         */
        T decode(Reader reader) throws DecodeException, IOException;
        
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy