b74a7668b8704173580b5984d4c58f8a0933e4e0
[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.util.RWUtils;
21 import io.fd.honeycomb.translate.write.WriteContext;
22 import javax.annotation.Nonnull;
23 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.srv6._static.rev180301.srv6._static.cfg.Sid;
24
25 public class LocalSidFunctionWriteBindingRegistry<T extends LocalSidFunctionRequest>
26         extends LocalSidFunctionBindingRegistry<T> {
27
28     public LocalSidFunctionRequest bind(final Sid localSid, @Nonnull final WriteContext ctx) {
29         return binders.parallelStream()
30                 .filter(toLocalSidFunctionBinder -> toLocalSidFunctionBinder.canHandle(localSid))
31                 .map(binder -> binder.createWriteRequestAndBind(localSid, ctx))
32                 .collect(RWUtils.singleItemCollector());
33     }
34 }