[ONOS-7931] Add table id mapping for basic pipeline
Change-Id: I56a5c12b320a3a353892e59b115d2a852b8af0a5
diff --git a/pipelines/basic/src/main/java/org/onosproject/pipelines/basic/BasicInterpreterImpl.java b/pipelines/basic/src/main/java/org/onosproject/pipelines/basic/BasicInterpreterImpl.java
index eb49819..fe3c22f 100644
--- a/pipelines/basic/src/main/java/org/onosproject/pipelines/basic/BasicInterpreterImpl.java
+++ b/pipelines/basic/src/main/java/org/onosproject/pipelines/basic/BasicInterpreterImpl.java
@@ -80,6 +80,10 @@
private static final int PORT_BITWIDTH = 9;
+ private static final ImmutableBiMap<Integer, PiTableId> TABLE_MAP =
+ new ImmutableBiMap.Builder<Integer, PiTableId>()
+ .put(0, BasicConstants.INGRESS_TABLE0_CONTROL_TABLE0)
+ .build();
private static final ImmutableBiMap<Criterion.Type, PiMatchFieldId> CRITERION_MAP =
new ImmutableBiMap.Builder<Criterion.Type, PiMatchFieldId>()
.put(Criterion.Type.IN_PORT, HDR_STANDARD_METADATA_INGRESS_PORT)
@@ -238,11 +242,11 @@
@Override
public Optional<PiTableId> mapFlowRuleTableId(int flowRuleTableId) {
- return Optional.empty();
+ return Optional.ofNullable(TABLE_MAP.get(flowRuleTableId));
}
@Override
public Optional<Integer> mapPiTableId(PiTableId piTableId) {
- return Optional.empty();
+ return Optional.ofNullable(TABLE_MAP.inverse().get(piTableId));
}
}