Drop using BNG attachment IDs in favor or dynamically allocated line IDs

The current implementation of BngProgrammable for fabric.p4 uses
attachment IDs as line IDs, thus forcing apps such as bngc to be aware
of such implementation detail and to manage the allocation of such IDs.
Unfortunately, allocation of IDs is dependent on the device (P4 program)
implementation (e.g., line counter size), and so it should not be left
to apps.

This patch removes the need for attachment IDs at all and instead relies
on a driver-level service to dynamically allocate line IDs based on the
attachment attributes (currently s-tag, c-tag, mac address).

The current implementation of the allocation logic is a trivial one,
i.e. non-distributed and non-optimized.

Change-Id: Ie960936ee750cf565b8de41370085ecf9d49e931
diff --git a/pipelines/fabric/impl/src/test/java/org/onosproject/pipelines/fabric/impl/behaviour/bng/SimpleBngLineIdAllocatorTest.java b/pipelines/fabric/impl/src/test/java/org/onosproject/pipelines/fabric/impl/behaviour/bng/SimpleBngLineIdAllocatorTest.java
new file mode 100644
index 0000000..3a9c064
--- /dev/null
+++ b/pipelines/fabric/impl/src/test/java/org/onosproject/pipelines/fabric/impl/behaviour/bng/SimpleBngLineIdAllocatorTest.java
@@ -0,0 +1,87 @@
+/*
+ * Copyright 2019-present Open Networking Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.%
+ */
+
+package org.onosproject.pipelines.fabric.impl.behaviour.bng;
+
+import com.google.common.testing.EqualsTester;
+import org.junit.Test;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotEquals;
+import static org.junit.Assert.fail;
+
+/**
+ * Tests for SimpleBngLineIdAllocator.
+ */
+public class SimpleBngLineIdAllocatorTest {
+
+    private static final int SIZE = 10;
+
+    @Test
+    public void allocateAndReleaseTest() throws FabricBngLineIdAllocator.IdExhaustedException {
+        var allocator = new SimpleBngLineIdAllocator(SIZE);
+
+        var id1 = allocator.allocate(new MockAttachment(1));
+        var sameAsId1 = allocator.allocate(new MockAttachment(1));
+
+        var id2 = allocator.allocate(new MockAttachment(2));
+
+        assertEquals(allocator.allocatedCount(), 2);
+        assertEquals(allocator.freeCount(), SIZE - allocator.allocatedCount());
+
+        assertEquals(id1, sameAsId1);
+        assertNotEquals(id1, id2);
+
+        allocator.release(new MockAttachment(1));
+        assertEquals(allocator.allocatedCount(), 1);
+        assertEquals(allocator.freeCount(), SIZE - allocator.allocatedCount());
+
+        allocator.release(id2);
+        assertEquals(allocator.allocatedCount(), 0);
+        assertEquals(allocator.freeCount(), SIZE);
+    }
+
+    @Test
+    public void exhaustionTest() throws FabricBngLineIdAllocator.IdExhaustedException {
+        var allocator = new SimpleBngLineIdAllocator(SIZE);
+        var equalTester = new EqualsTester();
+        for (int i = 0; i < SIZE; i++) {
+            // Add ID to equality group to later make sure that all IDs are
+            // different.
+            equalTester.addEqualityGroup(
+                    allocator.allocate(new MockAttachment(i)));
+        }
+
+        assertEquals(allocator.allocatedCount(), SIZE);
+        assertEquals(allocator.freeCount(), 0);
+        equalTester.testEquals();
+
+        try {
+            allocator.allocate(new MockAttachment(SIZE + 1));
+            fail("IdExhaustedException not thrown");
+        } catch (FabricBngLineIdAllocator.IdExhaustedException e) {
+            // Expected.
+        }
+
+        for (int i = 0; i < SIZE; i++) {
+            allocator.release(new MockAttachment(i));
+        }
+
+        assertEquals(allocator.allocatedCount(), 0);
+        assertEquals(allocator.freeCount(), SIZE);
+    }
+
+}
\ No newline at end of file