66586b9c2abaa5ea7a4979e7599bc1c6180e64ab
[hc2vpp.git] /
1 /*
2  * Copyright (c) 2018 Bell Canada, Pantheon Technologies 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.hc2vpp.srv6.util.function;
18
19 import io.fd.hc2vpp.srv6.write.sid.request.LocalSidFunctionRequest;
20 import io.fd.honeycomb.translate.read.ReadContext;
21 import io.fd.honeycomb.translate.util.RWUtils;
22 import io.fd.vpp.jvpp.core.dto.SrLocalsidsDetails;
23 import javax.annotation.Nonnull;
24 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.srv6._static.rev180301.srv6._static.cfg.SidBuilder;
25
26 public class LocalSidFunctionReadBindingRegistry<T extends LocalSidFunctionRequest>
27         extends LocalSidFunctionBindingRegistry<T> {
28
29     public void bind(@Nonnull final SrLocalsidsDetails details, @Nonnull final ReadContext ctx,
30                      @Nonnull final SidBuilder builder) {
31         rBinders.parallelStream()
32                 .filter(localSidFunctionBinder -> localSidFunctionBinder.canHandle(details.behavior))
33                 .collect(RWUtils.singleItemCollector())
34                 .translateFromDump(details, ctx, builder);
35     }
36 }