Repair Doxygen build infrastructure
[vpp.git] / plugins / snat-plugin / snat / jvpp / io / fd / vpp / jvpp / snat / test / CallbackApiTest.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.snat.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.snat.JVppSnatImpl;
24 import io.fd.vpp.jvpp.snat.callback.SnatInterfaceAddDelFeatureCallback;
25 import io.fd.vpp.jvpp.snat.dto.SnatInterfaceAddDelFeature;
26 import io.fd.vpp.jvpp.snat.dto.SnatInterfaceAddDelFeatureReply;
27
28 public class CallbackApiTest {
29
30     static class TestCallback implements SnatInterfaceAddDelFeatureCallback {
31
32         @Override
33         public void onSnatInterfaceAddDelFeatureReply(final SnatInterfaceAddDelFeatureReply msg) {
34             System.out.printf("Received SnatInterfaceAddDelFeatureReply: context=%d%n",
35                 msg.context);
36         }
37
38         @Override
39         public void onError(VppCallbackException ex) {
40             System.out.printf("Received onError exception: call=%s, context=%d, retval=%d%n", ex.getMethodName(),
41                 ex.getCtxId(), ex.getErrorCode());
42         }
43     }
44
45     public static void main(String[] args) throws Exception {
46         testCallbackApi();
47     }
48
49     private static void testCallbackApi() throws Exception {
50         System.out.println("Testing Java callback API for snat plugin");
51         try (final JVppRegistry registry = new JVppRegistryImpl("SnatCallbackApiTest");
52              final JVpp jvpp = new JVppSnatImpl()) {
53             registry.register(jvpp, new TestCallback());
54
55             System.out.println("Sending SnatInterfaceAddDelFeature request...");
56             SnatInterfaceAddDelFeature request = new SnatInterfaceAddDelFeature();
57             request.isAdd = 1;
58             request.isInside = 1;
59             request.swIfIndex = 1;
60             final int result = jvpp.send(request);
61             System.out.printf("SnatInterfaceAddDelFeature send result = %d%n", result);
62
63             Thread.sleep(1000);
64
65             System.out.println("Disconnecting...");
66         }
67     }
68 }