722cbb182523a7390dd38f681fb0abe143160740
[hc2vpp.git] /
1 /*
2  * Copyright (c) 2015 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 import static com.google.common.base.Preconditions.checkNotNull;
20
21 import io.fd.honeycomb.lisp.translate.read.dump.executor.params.SubtableDumpParams;
22 import io.fd.honeycomb.translate.util.read.cache.EntityDumpExecutor;
23 import io.fd.honeycomb.translate.util.read.cache.exceptions.execution.DumpExecutionFailedException;
24 import io.fd.honeycomb.translate.util.read.cache.exceptions.execution.i.DumpCallFailedException;
25 import io.fd.honeycomb.translate.util.read.cache.exceptions.execution.i.DumpTimeoutException;
26 import io.fd.honeycomb.translate.vpp.util.JvppReplyConsumer;
27 import java.util.concurrent.TimeoutException;
28 import javax.annotation.Nonnull;
29 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.lisp.rev160520.eid.table.grouping.eid.table.vni.table.BridgeDomainSubtable;
30 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.lisp.rev160520.eid.table.grouping.eid.table.vni.table.VrfSubtable;
31 import io.fd.vpp.jvpp.VppBaseCallException;
32 import io.fd.vpp.jvpp.core.dto.LispEidTableMapDetailsReplyDump;
33 import io.fd.vpp.jvpp.core.dto.LispEidTableMapDump;
34 import io.fd.vpp.jvpp.core.future.FutureJVppCore;
35
36 /**
37  * Dump executor for {@link VrfSubtable}/{@link BridgeDomainSubtable}
38  */
39 public final class SubtableDumpExecutor extends AbstractJvppDumpExecutor
40         implements EntityDumpExecutor<LispEidTableMapDetailsReplyDump, SubtableDumpParams>, JvppReplyConsumer {
41
42     private SubtableDumpParams params;
43     private LispEidTableMapDump request;
44
45     public SubtableDumpExecutor(@Nonnull final FutureJVppCore vppApi) {
46         super(vppApi);
47     }
48
49     @Override
50     public LispEidTableMapDetailsReplyDump executeDump(final SubtableDumpParams params)
51             throws DumpExecutionFailedException {
52         this.params = checkNotNull(params, "Cannot bind null params");
53
54         LispEidTableMapDump request = new LispEidTableMapDump();
55         request.isL2 = params.isL2();
56
57         try {
58             return getReply(vppApi.lispEidTableMapDump(request).toCompletableFuture());
59         } catch (TimeoutException e) {
60             throw DumpTimeoutException
61                     .wrapTimeoutException("Dumping subtable with params " + params + " timed out", e);
62         } catch (VppBaseCallException e) {
63             throw DumpCallFailedException
64                     .wrapFailedCallException("Dumping subtable with params " + params + " timed out", e);
65         }
66     }
67
68 }