Deprecate websocket-client
[yangtools.git] / websocket / websocket-client / src / main / java / org / opendaylight / yangtools / websocket / client / WebSocketIClient.java
index 9091b211d116444797df3a3f1a97fbd614d7052a..e113fb63784d0152dedda7c992e22cfe98c320b5 100644 (file)
@@ -7,11 +7,13 @@
  */
 package org.opendaylight.yangtools.websocket.client;
 
+import com.google.common.base.Preconditions;
 import io.netty.bootstrap.Bootstrap;
 import io.netty.buffer.Unpooled;
 import io.netty.channel.Channel;
 import io.netty.channel.ChannelInitializer;
 import io.netty.channel.ChannelPipeline;
+import io.netty.channel.EventLoop;
 import io.netty.channel.EventLoopGroup;
 import io.netty.channel.nio.NioEventLoopGroup;
 import io.netty.channel.socket.SocketChannel;
@@ -25,66 +27,111 @@ import io.netty.handler.codec.http.websocketx.WebSocketClientHandshakerFactory;
 import io.netty.handler.codec.http.websocketx.WebSocketVersion;
 import java.net.URI;
 import org.opendaylight.yangtools.websocket.client.callback.ClientMessageCallback;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
 
-public class WebSocketIClient  {
-
-    private final URI uri;
-    private Bootstrap bootstrap = new Bootstrap();;
+/**
+ * Implementation of web socket client that supports WS and HTTP protocols.
+ *
+ * @deprecated This code is deprecated without replacement.
+ */
+@Deprecated
+public class WebSocketIClient {
+    private final EventLoopGroup group = new NioEventLoopGroup();
+    private final Bootstrap bootstrap = new Bootstrap();
     private final WebSocketClientHandler clientHandler;
-    private static final Logger logger = LoggerFactory.getLogger(WebSocketIClient.class);
+    private final URI uri;
     private Channel clientChannel;
-    private final EventLoopGroup group = new NioEventLoopGroup();
-
 
-    public WebSocketIClient(URI uri,ClientMessageCallback clientMessageCallback) {
-        this.uri = uri;
+    /**
+     * Creates new web socket client
+     *
+     * @param uri
+     *            URI
+     * @param clientMessageCallback
+     *            ClientMessageCallback
+     */
+    public WebSocketIClient(final URI uri, final ClientMessageCallback clientMessageCallback) {
+        this.uri = Preconditions.checkNotNull(uri);
         clientHandler = new WebSocketClientHandler(
-                WebSocketClientHandshakerFactory.newHandshaker(
-                        uri, WebSocketVersion.V13, null, false,null),clientMessageCallback); // last null could be replaced with DefaultHttpHeaders
+                WebSocketClientHandshakerFactory.newHandshaker(uri, WebSocketVersion.V13, null, false, null),
+                clientMessageCallback); // last null could be replaced with DefaultHttpHeaders
         initialize();
     }
-    private void initialize(){
+
+    /**
+     * Initializes {@link Channel} one when it was registered to its
+     * {@link EventLoop}.
+     */
+    private void initialize() {
 
         String protocol = uri.getScheme();
         if (!"ws".equals(protocol) && !"http".equals(protocol)) {
-            throw new IllegalArgumentException("Unsupported protocol: " + protocol);
+            throw new IllegalArgumentException("Unsupported protocol: "
+                    + protocol);
         }
 
-        bootstrap.group(group)
-                .channel(NioSocketChannel.class)
+        bootstrap.group(group).channel(NioSocketChannel.class)
                 .handler(new ChannelInitializer<SocketChannel>() {
                     @Override
-                    public void initChannel(SocketChannel ch) throws Exception {
+                    public void initChannel(final SocketChannel ch) {
                         ChannelPipeline pipeline = ch.pipeline();
                         pipeline.addLast("http-codec", new HttpClientCodec());
-                        pipeline.addLast("aggregator", new HttpObjectAggregator(8192));
+                        pipeline.addLast("aggregator",
+                                new HttpObjectAggregator(8192));
                         pipeline.addLast("ws-handler", clientHandler);
                     }
                 });
     }
-    public void connect() throws InterruptedException{
-        clientChannel  = bootstrap.connect(uri.getHost(), uri.getPort()).sync().channel();
+
+    /**
+     * Makes the connection attempt and notifies when the handshake process
+     * succeeds or fail.
+     */
+    public void connect() throws InterruptedException {
+        clientChannel = bootstrap.connect(uri.getHost(), uri.getPort()).sync()
+                .channel();
         clientHandler.handshakeFuture().sync();
     }
 
-    public void writeAndFlush(String message){
+    /**
+     * Writes a String message through the
+     * {@link ChannelPipeline} and request to actual {@link Channel#flush()} to flush
+     * all pending data to the actual transport.
+     *
+     * @param message
+     *            a message to write
+     */
+    public void writeAndFlush(final String message) {
         clientChannel.writeAndFlush(new TextWebSocketFrame(message));
     }
-    public void writeAndFlush(Object message){
+
+    /**
+     * Writes a Object message through the
+     * {@link ChannelPipeline} and request to actual {@link Channel#flush()} to flush
+     * all pending data to the actual transport.
+     *
+     * @param message
+     *            a message to write
+     */
+    public void writeAndFlush(final Object message) {
         clientChannel.writeAndFlush(message);
     }
 
-    public void ping(){
-        clientChannel.writeAndFlush(new PingWebSocketFrame(Unpooled.copiedBuffer(new byte[]{1, 2, 3, 4, 5, 6})));
+    /**
+     * Writes {@link PingWebSocketFrame}
+     * through the {@link ChannelPipeline} and request to actual
+     * {@link Channel#flush()} to flush all pending data to the actual transport.
+     */
+    public void ping() {
+        clientChannel.writeAndFlush(new PingWebSocketFrame(Unpooled
+                .copiedBuffer(new byte[] { 1, 2, 3, 4, 5, 6 })));
     }
 
+    /**
+     * Closes the connection when the server responds to the
+     * {@link CloseWebSocketFrame}.
+     */
     public void close() throws InterruptedException {
         clientChannel.writeAndFlush(new CloseWebSocketFrame());
-
-        // WebSocketClientHandler will close the connection when the server
-        // responds to the CloseWebSocketFrame.
         clientChannel.closeFuture().sync();
         group.shutdownGracefully();
     }