VPP-378: update jvpp package names
[honeycomb.git] / lisp / lisp2vpp / src / main / java / io / fd / honeycomb / lisp / translate / read / dump / executor / VniTableDumpExecutor.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.honeycomb.lisp.translate.read.dump.executor;
18
19
20 import io.fd.honeycomb.translate.util.read.cache.EntityDumpExecutor;
21 import io.fd.honeycomb.translate.util.read.cache.exceptions.execution.DumpExecutionFailedException;
22 import io.fd.honeycomb.translate.util.read.cache.exceptions.execution.i.DumpCallFailedException;
23 import io.fd.honeycomb.translate.util.read.cache.exceptions.execution.i.DumpTimeoutException;
24 import io.fd.honeycomb.translate.vpp.util.JvppReplyConsumer;
25 import java.util.concurrent.TimeoutException;
26 import javax.annotation.Nonnull;
27 import io.fd.vpp.jvpp.VppBaseCallException;
28 import io.fd.vpp.jvpp.core.dto.LispEidTableMapDetailsReplyDump;
29 import io.fd.vpp.jvpp.core.dto.LispEidTableMapDump;
30 import io.fd.vpp.jvpp.core.future.FutureJVppCore;
31
32
33 public class VniTableDumpExecutor extends AbstractDumpExecutor
34         implements EntityDumpExecutor<LispEidTableMapDetailsReplyDump, Void>, JvppReplyConsumer {
35
36     public VniTableDumpExecutor(@Nonnull FutureJVppCore api) {
37         super(api);
38     }
39
40     @Override
41     public LispEidTableMapDetailsReplyDump executeDump(Void params) throws DumpExecutionFailedException {
42         try {
43             return getReply(vppApi.lispEidTableMapDump(new LispEidTableMapDump()).toCompletableFuture());
44         } catch (TimeoutException e) {
45             throw DumpTimeoutException.wrapTimeoutException("Eid table map dump ended in timeout", e);
46         } catch (VppBaseCallException e) {
47             throw DumpCallFailedException.wrapFailedCallException("Eid table map dump failed", e);
48         }
49     }
50 }