e97f4e3ac9a47b94b80d03b104f1b479f4719c24
[vpp.git] / vpp-api / java / jvpp-core / io / fd / vpp / jvpp / core / 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 io.fd.vpp.jvpp.core.test;
18
19 import io.fd.vpp.jvpp.JVpp;
20 import io.fd.vpp.jvpp.JVppRegistry;
21 import io.fd.vpp.jvpp.JVppRegistryImpl;
22 import io.fd.vpp.jvpp.VppCallbackException;
23 import io.fd.vpp.jvpp.callback.ControlPingCallback;
24 import io.fd.vpp.jvpp.core.JVppCoreImpl;
25 import io.fd.vpp.jvpp.dto.ControlPing;
26 import io.fd.vpp.jvpp.dto.ControlPingReply;
27
28 public class ControlPingTest {
29
30     private static void testControlPing() throws Exception {
31         System.out.println("Testing ControlPing using Java callback API");
32         try (JVppRegistry registry = new JVppRegistryImpl("ControlPingTest");
33              JVpp jvpp = new JVppCoreImpl()) {
34
35             registry.register(jvpp, new ControlPingCallback() {
36                 @Override
37                 public void onControlPingReply(final ControlPingReply reply) {
38                     System.out.printf("Received ControlPingReply: %s%n", reply);
39                 }
40
41                 @Override
42                 public void onError(VppCallbackException ex) {
43                     System.out.printf("Received onError exception: call=%s, reply=%d, context=%d ", ex.getMethodName(),
44                         ex.getErrorCode(), ex.getCtxId());
45                 }
46
47             });
48             System.out.println("Successfully connected to VPP");
49             Thread.sleep(1000);
50
51             System.out.println("Sending control ping using JVppRegistry");
52             registry.controlPing(jvpp.getClass());
53
54             Thread.sleep(2000);
55
56             System.out.println("Sending control ping using JVpp plugin");
57             jvpp.send(new ControlPing());
58
59             Thread.sleep(2000);
60             System.out.println("Disconnecting...");
61         }
62         Thread.sleep(1000);
63     }
64
65     public static void main(String[] args) throws Exception {
66         testControlPing();
67     }
68 }