View Javadoc

1   //
2   //  ========================================================================
3   //  Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd.
4   //  ------------------------------------------------------------------------
5   //  All rights reserved. This program and the accompanying materials
6   //  are made available under the terms of the Eclipse Public License v1.0
7   //  and Apache License v2.0 which accompanies this distribution.
8   //
9   //      The Eclipse Public License is available at
10  //      http://www.eclipse.org/legal/epl-v10.html
11  //
12  //      The Apache License v2.0 is available at
13  //      http://www.opensource.org/licenses/apache2.0.php
14  //
15  //  You may elect to redistribute this code under either of these licenses.
16  //  ========================================================================
17  //
18  
19  package org.eclipse.jetty.websocket.jsr356.annotations;
20  
21  import java.io.InputStream;
22  import java.nio.ByteBuffer;
23  
24  import javax.websocket.OnMessage;
25  
26  import org.eclipse.jetty.websocket.common.events.annotated.InvalidSignatureException;
27  import org.eclipse.jetty.websocket.jsr356.annotations.Param.Role;
28  import org.eclipse.jetty.websocket.jsr356.decoders.ByteArrayDecoder;
29  import org.eclipse.jetty.websocket.jsr356.decoders.ByteBufferDecoder;
30  import org.eclipse.jetty.websocket.jsr356.decoders.InputStreamDecoder;
31  
32  /**
33   * Param handling for static Binary @{@link OnMessage} parameters.
34   */
35  public class JsrParamIdBinary extends JsrParamIdOnMessage implements IJsrParamId
36  {
37      public static final IJsrParamId INSTANCE = new JsrParamIdBinary();
38  
39      @Override
40      public boolean process(Param param, JsrCallable callable) throws InvalidSignatureException
41      {
42          if (super.process(param,callable))
43          {
44              // Found common roles
45              return true;
46          }
47  
48          if (param.type.isAssignableFrom(ByteBuffer.class))
49          {
50              param.bind(Role.MESSAGE_BINARY);
51              callable.setDecoderClass(ByteBufferDecoder.class);
52              return true;
53          }
54  
55          if (param.type.isAssignableFrom(byte[].class))
56          {
57              param.bind(Role.MESSAGE_BINARY);
58              callable.setDecoderClass(ByteArrayDecoder.class);
59              return true;
60          }
61  
62          // Streaming
63          if (param.type.isAssignableFrom(InputStream.class))
64          {
65              assertPartialMessageSupportDisabled(param,callable);
66              param.bind(Role.MESSAGE_BINARY_STREAM);
67              callable.setDecoderClass(InputStreamDecoder.class);
68              return true;
69          }
70  
71          return false;
72      }
73  }