VPP-330 Track pending map-requests with a fifo
[vpp.git] / vpp-api / java / jvpp / org / openvpp / jvpp / test / ControlPingTest.java
1 /*
2  * Copyright (c) 2016 Cisco and/or its affiliates.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.openvpp.jvpp.test;
18
19 import org.openvpp.jvpp.JVpp;
20 import org.openvpp.jvpp.JVppImpl;
21 import org.openvpp.jvpp.VppCallbackException;
22 import org.openvpp.jvpp.VppJNIConnection;
23 import org.openvpp.jvpp.callback.ControlPingCallback;
24 import org.openvpp.jvpp.dto.ControlPing;
25 import org.openvpp.jvpp.dto.ControlPingReply;
26
27 public class ControlPingTest {
28
29     private static void testControlPing() throws Exception {
30         System.out.println("Testing ControlPing using Java callback API");
31
32         JVpp jvpp = new JVppImpl( new VppJNIConnection("ControlPingTest"));
33         jvpp.connect( new ControlPingCallback() {
34             @Override
35             public void onControlPingReply(final ControlPingReply reply) {
36                 System.out.printf("Received ControlPingReply: context=%d, clientIndex=%d vpePid=%d\n",
37                         reply.context, reply.clientIndex, reply.vpePid);
38             }
39
40             @Override
41             public void onError(VppCallbackException ex) {
42                 System.out.printf("Received onError exception: call=%s, reply=%d, context=%d ", ex.getMethodName(), ex.getErrorCode(), ex.getCtxId());
43             }
44
45         });
46         System.out.println("Successfully connected to VPP");
47         Thread.sleep(1000);
48
49         jvpp.send(new ControlPing());
50
51         Thread.sleep(2000);
52
53         System.out.println("Disconnecting...");
54         jvpp.close();
55         Thread.sleep(1000);
56     }
57
58     public static void main(String[] args) throws Exception {
59         testControlPing();
60     }
61 }