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

com.fireflysource.net.websocket.common.model.OpCode Maven / Gradle / Ivy

There is a newer version: 5.0.2
Show newest version
package com.fireflysource.net.websocket.common.model;

public final class OpCode {
    /**
     * OpCode for a Continuation Frame
     *
     * @see RFC 6455, Section 11.8 (WebSocket Opcode Registry
     */
    public static final byte CONTINUATION = (byte) 0x00;

    /**
     * OpCode for a Text Frame
     *
     * @see RFC 6455, Section 11.8 (WebSocket Opcode Registry
     */
    public static final byte TEXT = (byte) 0x01;

    /**
     * OpCode for a Binary Frame
     *
     * @see RFC 6455, Section 11.8 (WebSocket Opcode Registry
     */
    public static final byte BINARY = (byte) 0x02;

    /**
     * OpCode for a Close Frame
     *
     * @see RFC 6455, Section 11.8 (WebSocket Opcode Registry
     */
    public static final byte CLOSE = (byte) 0x08;

    /**
     * OpCode for a Ping Frame
     *
     * @see RFC 6455, Section 11.8 (WebSocket Opcode Registry
     */
    public static final byte PING = (byte) 0x09;

    /**
     * OpCode for a Pong Frame
     *
     * @see RFC 6455, Section 11.8 (WebSocket Opcode Registry
     */
    public static final byte PONG = (byte) 0x0A;

    /**
     * An undefined OpCode
     */
    public static final byte UNDEFINED = (byte) -1;

    public static boolean isControlFrame(byte opcode) {
        return (opcode >= CLOSE);
    }

    public static boolean isDataFrame(byte opcode) {
        return (opcode == TEXT) || (opcode == BINARY) || (opcode == CONTINUATION);
    }

    /**
     * Test for known opcodes (per the RFC spec)
     *
     * @param opcode the opcode to test
     * @return true if known. false if unknown, undefined, or reserved
     */
    public static boolean isKnown(byte opcode) {
        return (opcode == CONTINUATION) || (opcode == TEXT) || (opcode == BINARY) || (opcode == CLOSE) || (opcode == PING) || (opcode == PONG);
    }

    public static String name(byte opcode) {
        switch (opcode) {
            case -1:
                return "NO-OP";
            case CONTINUATION:
                return "CONTINUATION";
            case TEXT:
                return "TEXT";
            case BINARY:
                return "BINARY";
            case CLOSE:
                return "CLOSE";
            case PING:
                return "PING";
            case PONG:
                return "PONG";
            default:
                return "NON-SPEC[" + opcode + "]";
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy