7085b047d892ab10bee157f3193407cf49426600
[honeycomb.git] / lisp / lisp2vpp / src / main / java / io / fd / honeycomb / lisp / translate / read / trait / LocatorSetReader.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.trait;
18
19 import io.fd.honeycomb.translate.util.read.cache.EntityDumpExecutor;
20 import io.fd.honeycomb.translate.vpp.util.JvppReplyConsumer;
21 import io.fd.vpp.jvpp.core.dto.LispLocatorSetDetailsReplyDump;
22 import io.fd.vpp.jvpp.core.dto.LispLocatorSetDump;
23 import io.fd.vpp.jvpp.core.future.FutureJVppCore;
24 import javax.annotation.Nonnull;
25 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.lisp.rev161214.locator.sets.grouping.locator.sets.LocatorSet;
26
27 /**
28  * Provides common logic for reading {@link LocatorSet}
29  */
30 public interface LocatorSetReader extends JvppReplyConsumer {
31
32     default EntityDumpExecutor<LispLocatorSetDetailsReplyDump, Void> createExecutor(
33             @Nonnull final FutureJVppCore vppApi) {
34         return (identifier, params) -> {
35             final LispLocatorSetDump request = new LispLocatorSetDump();
36             //only local
37             request.filter = 1;
38             return getReplyForRead(vppApi.lispLocatorSetDump(request).toCompletableFuture(), identifier);
39         };
40     }
41 }