6061b8672bb25ee3689769d0c0bdd331ce883de9
[honeycomb.git] / v3po / v3po2vpp / src / main / java / io / fd / honeycomb / translate / v3po / vppclassifier / VppNodeReader.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.translate.v3po.vppclassifier;
18
19 import javax.annotation.Nonnull;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.vpp.classifier.rev150603.PacketHandlingAction;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.vpp.classifier.rev150603.VppNode;
22 import org.slf4j.Logger;
23
24 interface VppNodeReader {
25
26     /**
27      * Converts vpp node index to YANG representation of vpp node.
28      *
29      * @param nodeIndex index of vpp node treated as signed integer.
30      * @return vpp node representation
31      */
32     default VppNode readVppNode(final int nodeIndex, @Nonnull final Logger log) {
33         final PacketHandlingAction action = PacketHandlingAction.forValue(nodeIndex);
34         if (action == null) {
35             // TODO: implement node index to name conversion after https://jira.fd.io/browse/VPP-203 is fixed
36             log.debug("VPP node index {} cannot be mapped to PacketHandlingAction", nodeIndex);
37             return null;
38         }
39         return new VppNode(action);
40     }
41 }