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

com.signalfx.shaded.jetty.websocket.api.WebSocketPolicy Maven / Gradle / Ivy

//
//  ========================================================================
//  Copyright (c) 1995-2022 Mort Bay Consulting Pty Ltd and others.
//  ------------------------------------------------------------------------
//  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 com.signalfx.shaded.jetty.websocket.api;

/**
 * Settings for WebSocket operations.
 */
public class WebSocketPolicy
{
    private static final int KB = 1024;

    public static WebSocketPolicy newClientPolicy()
    {
        return new WebSocketPolicy(WebSocketBehavior.CLIENT);
    }

    public static WebSocketPolicy newServerPolicy()
    {
        return new WebSocketPolicy(WebSocketBehavior.SERVER);
    }

    /**
     * The maximum size of a text message during parsing/generating.
     * 

* Text messages over this maximum will result in a close code 1009 {@link StatusCode#MESSAGE_TOO_LARGE} *

* Default: 65536 (64 K) */ private int maxTextMessageSize = 64 * KB; /** * The maximum size of a text message buffer. *

* Used ONLY for stream based message writing. *

* Default: 32768 (32 K) */ private int maxTextMessageBufferSize = 32 * KB; /** * The maximum size of a binary message during parsing/generating. *

* Binary messages over this maximum will result in a close code 1009 {@link StatusCode#MESSAGE_TOO_LARGE} *

* Default: 65536 (64 K) */ private int maxBinaryMessageSize = 64 * KB; /** * The maximum size of a binary message buffer *

* Used ONLY for for stream based message writing *

* Default: 32768 (32 K) */ private int maxBinaryMessageBufferSize = 32 * KB; /** * The timeout in ms (milliseconds) for async write operations. *

* Negative values indicate a disabled timeout. */ private long asyncWriteTimeout = 60000; /** * The time in ms (milliseconds) that a websocket may be idle before closing. *

* Default: 300000 (ms) */ private long idleTimeout = 300000; /** * The size of the input (read from network layer) buffer size. *

* Default: 4096 (4 K) */ private int inputBufferSize = 4 * KB; /** * Behavior of the websockets */ private final WebSocketBehavior behavior; public WebSocketPolicy(WebSocketBehavior behavior) { this.behavior = behavior; } private void assertLessThan(String name, long size, String otherName, long otherSize) { if (size > otherSize) { throw new IllegalArgumentException(String.format("%s [%d] must be less than %s [%d]", name, size, otherName, otherSize)); } } private void assertGreaterThan(String name, long size, long minSize) { if (size < minSize) { throw new IllegalArgumentException(String.format("%s [%d] must be a greater than or equal to " + minSize, name, size)); } } public void assertValidBinaryMessageSize(int requestedSize) { if (maxBinaryMessageSize > 0) { // validate it if (requestedSize > maxBinaryMessageSize) { throw new MessageTooLargeException("Binary message size [" + requestedSize + "] exceeds maximum size [" + maxBinaryMessageSize + "]"); } } } public void assertValidTextMessageSize(int requestedSize) { if (maxTextMessageSize > 0) { // validate it if (requestedSize > maxTextMessageSize) { throw new MessageTooLargeException("Text message size [" + requestedSize + "] exceeds maximum size [" + maxTextMessageSize + "]"); } } } /** * Make a copy of the policy, with current values. * * @return the cloned copy of the policy. */ public WebSocketPolicy clonePolicy() { WebSocketPolicy clone = new WebSocketPolicy(this.behavior); clone.idleTimeout = this.getIdleTimeout(); clone.maxTextMessageSize = this.getMaxTextMessageSize(); clone.maxTextMessageBufferSize = this.getMaxTextMessageBufferSize(); clone.maxBinaryMessageSize = this.getMaxBinaryMessageSize(); clone.maxBinaryMessageBufferSize = this.getMaxBinaryMessageBufferSize(); clone.inputBufferSize = this.getInputBufferSize(); clone.asyncWriteTimeout = this.getAsyncWriteTimeout(); return clone; } /** * Make a copy of the policy, with current values, but a different behavior. * * @param behavior the behavior to copy/clone * @return the cloned policy with a new behavior. * @deprecated use {@link #delegateAs(WebSocketBehavior)} instead */ @Deprecated public WebSocketPolicy clonePolicy(WebSocketBehavior behavior) { return delegateAs(behavior); } public WebSocketPolicy delegateAs(WebSocketBehavior behavior) { if (behavior == this.behavior) return this; return new WebSocketPolicy.Delegated(this, behavior); } /** * The timeout in ms (milliseconds) for async write operations. *

* Negative values indicate a disabled timeout. * * @return the timeout for async write operations. negative values indicate disabled timeout. */ @Deprecated public long getAsyncWriteTimeout() { return asyncWriteTimeout; } public WebSocketBehavior getBehavior() { return behavior; } /** * The time in ms (milliseconds) that a websocket connection may be idle before being closed automatically. * * @return the timeout in milliseconds for idle timeout. */ public long getIdleTimeout() { return idleTimeout; } /** * The size of the input (read from network layer) buffer size. *

* This is the raw read operation buffer size, before the parsing of the websocket frames. * * @return the raw network bytes read operation buffer size. */ public int getInputBufferSize() { return inputBufferSize; } /** * Get the maximum size of a binary message buffer (for streaming writing) * * @return the maximum size of a binary message buffer */ public int getMaxBinaryMessageBufferSize() { return maxBinaryMessageBufferSize; } /** * Get the maximum size of a binary message during parsing. *

* This is a memory conservation option, memory over this limit will not be * allocated by Jetty for handling binary messages. This applies to individual frames, * whole message handling, and partial message handling. *

*

* Binary messages over this maximum will result in a close code 1009 {@link StatusCode#MESSAGE_TOO_LARGE} *

* * @return the maximum size of a binary message */ public int getMaxBinaryMessageSize() { return maxBinaryMessageSize; } /** * Get the maximum size of a text message buffer (for streaming writing) * * @return the maximum size of a text message buffer */ public int getMaxTextMessageBufferSize() { return maxTextMessageBufferSize; } /** * Get the maximum size of a text message during parsing. *

* This is a memory conservation option, memory over this limit will not be * allocated by Jetty for handling text messages. This applies to individual frames, * whole message handling, and partial message handling. *

*

* Text messages over this maximum will result in a close code 1009 {@link StatusCode#MESSAGE_TOO_LARGE} *

* * @return the maximum size of a text message. */ public int getMaxTextMessageSize() { return maxTextMessageSize; } /** * The timeout in ms (milliseconds) for async write operations. *

* Negative values indicate a disabled timeout. * * @param ms the timeout in milliseconds */ public void setAsyncWriteTimeout(long ms) { assertLessThan("AsyncWriteTimeout", ms, "IdleTimeout", idleTimeout); this.asyncWriteTimeout = ms; } /** * The time in ms (milliseconds) that a websocket may be idle before closing. * * @param ms the timeout in milliseconds */ public void setIdleTimeout(long ms) { assertGreaterThan("IdleTimeout", ms, 0); this.idleTimeout = ms; } /** * The size of the input (read from network layer) buffer size. * * @param size the size in bytes */ public void setInputBufferSize(int size) { assertGreaterThan("InputBufferSize", size, 1); this.inputBufferSize = size; } /** * The maximum size of a binary message buffer. *

* Used ONLY for stream based binary message writing. * * @param size the maximum size of the binary message buffer */ public void setMaxBinaryMessageBufferSize(int size) { assertGreaterThan("MaxBinaryMessageBufferSize", size, 1); this.maxBinaryMessageBufferSize = size; } /** * The maximum size of a binary message during parsing. *

* This is a memory conservation option, memory over this limit will not be * allocated by Jetty for handling binary messages. This applies to individual frames, * whole message handling, and partial message handling. *

*

* Binary messages over this maximum will result in a close code 1009 {@link StatusCode#MESSAGE_TOO_LARGE} *

* * @param size the maximum allowed size of a binary message. */ public void setMaxBinaryMessageSize(int size) { assertGreaterThan("MaxBinaryMessageSize", size, -1); this.maxBinaryMessageSize = size; } /** * The maximum size of a text message buffer. *

* Used ONLY for stream based text message writing. * * @param size the maximum size of the text message buffer */ public void setMaxTextMessageBufferSize(int size) { assertGreaterThan("MaxTextMessageBufferSize", size, 1); this.maxTextMessageBufferSize = size; } /** * The maximum size of a text message during parsing. *

* This is a memory conservation option, memory over this limit will not be * allocated by Jetty for handling text messages. This applies to individual frames, * whole message handling, and partial message handling. *

*

* Text messages over this maximum will result in a close code 1009 {@link StatusCode#MESSAGE_TOO_LARGE} *

* * @param size the maximum allowed size of a text message. */ public void setMaxTextMessageSize(int size) { assertGreaterThan("MaxTextMessageSize", size, -1); this.maxTextMessageSize = size; } @Override public String toString() { StringBuilder builder = new StringBuilder(); builder.append(this.getClass().getSimpleName()); builder.append("@").append(Integer.toHexString(hashCode())); builder.append("[behavior=").append(getBehavior()); builder.append(",maxTextMessageSize=").append(getMaxTextMessageSize()); builder.append(",maxTextMessageBufferSize=").append(getMaxTextMessageBufferSize()); builder.append(",maxBinaryMessageSize=").append(getMaxBinaryMessageSize()); builder.append(",maxBinaryMessageBufferSize=").append(getMaxTextMessageBufferSize()); builder.append(",asyncWriteTimeout=").append(getAsyncWriteTimeout()); builder.append(",idleTimeout=").append(getIdleTimeout()); builder.append(",inputBufferSize=").append(getInputBufferSize()); builder.append("]"); return builder.toString(); } /** * Allows Behavior to be changed, but the settings to delegated. *

* This rears its ugly head when a JSR356 Server Container is used as a * JSR356 Client Container. * The JSR356 Server Container is Behavior SERVER, but its container * level Policy is shared with the JSR356 Client Container as well. * This allows a delegate to the policy with a different behavior. *

*/ private class Delegated extends WebSocketPolicy { private final WebSocketPolicy delegated; public Delegated(WebSocketPolicy policy, WebSocketBehavior behavior) { super(behavior); this.delegated = policy; } @Override public void assertValidBinaryMessageSize(int requestedSize) { delegated.assertValidBinaryMessageSize(requestedSize); } @Override public void assertValidTextMessageSize(int requestedSize) { delegated.assertValidTextMessageSize(requestedSize); } @Override public WebSocketPolicy clonePolicy() { return delegated.clonePolicy(); } @Override public WebSocketPolicy clonePolicy(WebSocketBehavior behavior) { return delegated.clonePolicy(behavior); } @Override public WebSocketPolicy delegateAs(WebSocketBehavior behavior) { return delegated.delegateAs(behavior); } @Override public long getAsyncWriteTimeout() { return delegated.getAsyncWriteTimeout(); } @Override public long getIdleTimeout() { return delegated.getIdleTimeout(); } @Override public int getInputBufferSize() { return delegated.getInputBufferSize(); } @Override public int getMaxBinaryMessageBufferSize() { return delegated.getMaxBinaryMessageBufferSize(); } @Override public int getMaxBinaryMessageSize() { return delegated.getMaxBinaryMessageSize(); } @Override public int getMaxTextMessageBufferSize() { return delegated.getMaxTextMessageBufferSize(); } @Override public int getMaxTextMessageSize() { return delegated.getMaxTextMessageSize(); } @Override public void setAsyncWriteTimeout(long ms) { delegated.setAsyncWriteTimeout(ms); } @Override public void setIdleTimeout(long ms) { delegated.setIdleTimeout(ms); } @Override public void setInputBufferSize(int size) { delegated.setInputBufferSize(size); } @Override public void setMaxBinaryMessageBufferSize(int size) { delegated.setMaxBinaryMessageBufferSize(size); } @Override public void setMaxBinaryMessageSize(int size) { delegated.setMaxBinaryMessageSize(size); } @Override public void setMaxTextMessageBufferSize(int size) { delegated.setMaxTextMessageBufferSize(size); } @Override public void setMaxTextMessageSize(int size) { delegated.setMaxTextMessageSize(size); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy