Merge "Fixed publishDataChangeEvent in 2phase commit"
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / test / java / org / opendaylight / controller / sal / restconf / impl / websockets / client / WebSocketClient.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.sal.restconf.impl.websockets.client;
9
10 import io.netty.bootstrap.Bootstrap;
11 import io.netty.buffer.Unpooled;
12 import io.netty.channel.Channel;
13 import io.netty.channel.ChannelInitializer;
14 import io.netty.channel.ChannelPipeline;
15 import io.netty.channel.EventLoopGroup;
16 import io.netty.channel.nio.NioEventLoopGroup;
17 import io.netty.channel.socket.SocketChannel;
18 import io.netty.channel.socket.nio.NioSocketChannel;
19 import io.netty.handler.codec.http.HttpClientCodec;
20 import io.netty.handler.codec.http.HttpObjectAggregator;
21 import io.netty.handler.codec.http.websocketx.CloseWebSocketFrame;
22 import io.netty.handler.codec.http.websocketx.PingWebSocketFrame;
23 import io.netty.handler.codec.http.websocketx.TextWebSocketFrame;
24 import io.netty.handler.codec.http.websocketx.WebSocketClientHandshakerFactory;
25 import io.netty.handler.codec.http.websocketx.WebSocketVersion;
26
27 import java.io.BufferedReader;
28 import java.io.InputStreamReader;
29 import java.net.URI;
30
31 import org.slf4j.Logger;
32 import org.slf4j.LoggerFactory;
33
34 public class WebSocketClient  {
35
36     private final URI uri;
37     private Bootstrap bootstrap = new Bootstrap();;
38     private final WebSocketClientHandler clientHandler;
39     private static final Logger logger = LoggerFactory.getLogger(WebSocketClient.class);
40     private Channel clientChannel;
41     private final EventLoopGroup group = new NioEventLoopGroup();
42
43     public WebSocketClient(URI uri,IClientMessageCallback clientMessageCallback) {
44         this.uri = uri;
45         clientHandler = new WebSocketClientHandler(
46                 WebSocketClientHandshakerFactory.newHandshaker(
47                         uri, WebSocketVersion.V13, null, false,null),clientMessageCallback); // last null could be replaced with DefaultHttpHeaders
48         initialize();
49     }
50     private void initialize(){
51
52         String protocol = uri.getScheme();
53         if (!"http".equals(protocol)) {
54             throw new IllegalArgumentException("Unsupported protocol: " + protocol);
55         }
56
57         bootstrap.group(group)
58                 .channel(NioSocketChannel.class)
59                 .handler(new ChannelInitializer<SocketChannel>() {
60                     @Override
61                     public void initChannel(SocketChannel ch) throws Exception {
62                         ChannelPipeline pipeline = ch.pipeline();
63                         pipeline.addLast("http-codec", new HttpClientCodec());
64                         pipeline.addLast("aggregator", new HttpObjectAggregator(8192));
65                         pipeline.addLast("ws-handler", clientHandler);
66                     }
67                 });
68     }
69     public void connect() throws InterruptedException{
70         System.out.println("WebSocket Client connecting");
71         clientChannel  = bootstrap.connect(uri.getHost(), uri.getPort()).sync().channel();
72         clientHandler.handshakeFuture().sync();
73     }
74
75     public void writeAndFlush(String message){
76         clientChannel.writeAndFlush(new TextWebSocketFrame(message));
77     }
78     public void writeAndFlush(Object message){
79         clientChannel.writeAndFlush(message);
80     }
81
82     public void ping(){
83         clientChannel.writeAndFlush(new PingWebSocketFrame(Unpooled.copiedBuffer(new byte[]{1, 2, 3, 4, 5, 6})));
84     }
85
86     public void close(String reasonText) throws InterruptedException {
87         CloseWebSocketFrame closeWebSocketFrame = new CloseWebSocketFrame(1000,reasonText);
88         clientChannel.writeAndFlush(closeWebSocketFrame);
89
90         // WebSocketClientHandler will close the connection when the server
91         // responds to the CloseWebSocketFrame.
92         clientChannel.closeFuture().sync();
93         group.shutdownGracefully();
94     }
95
96     public static void main(String[] args) throws Exception {
97         URI uri;
98         if (args.length > 0) {
99             uri = new URI(args[0]);
100         } else {
101             uri = new URI("http://192.168.1.101:8181/opendaylight-inventory:nodes");
102         }
103         IClientMessageCallback messageCallback = new ClientMessageCallback();
104         WebSocketClient webSocketClient = new WebSocketClient(uri, messageCallback);
105         webSocketClient.connect();
106
107         while (true) {
108             BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
109             String input = br.readLine();
110             if (input.equals("q")) {
111                 System.out.print("Would you like to close stream? (Y = yes, empty = yes)\n");
112                 input = br.readLine();
113                 if (input.equals("yes") || input.isEmpty()) {
114                     webSocketClient.close("opendaylight-inventory:nodes");
115                     break;
116                 }
117             }
118         }
119     }
120
121     private static class ClientMessageCallback implements IClientMessageCallback {
122         @Override
123         public void onMessageReceived(Object message) {
124             if (message instanceof TextWebSocketFrame) {
125                 logger.info("received message {}"+ ((TextWebSocketFrame)message).text());
126             }
127         }
128     }
129
130 }