BUG 5028 - Test GBP and SFC against Li OFP
[groupbasedpolicy.git] / renderers / ofoverlay / src / main / java / org / opendaylight / groupbasedpolicy / renderer / ofoverlay / flow / FlowTable.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.groupbasedpolicy.renderer.ofoverlay.flow;
10
11 import org.opendaylight.groupbasedpolicy.renderer.ofoverlay.OfContext;
12 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowId;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.tables.table.Flow;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.tables.table.FlowBuilder;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev131026.flow.Match;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev131026.flow.MatchBuilder;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.endpoint.rev140421.endpoints.Endpoint;
18 import org.slf4j.Logger;
19 import org.slf4j.LoggerFactory;
20
21 /**
22  * Base class for managing flow tables
23  * @author readams
24  */
25 public abstract class FlowTable extends OfTable {
26     protected static final Logger LOG =
27             LoggerFactory.getLogger(FlowTable.class);
28
29     public FlowTable(OfContext ctx) {
30         super(ctx);
31     }
32
33     /**
34      * Get the table ID being manipulated
35      *
36      * @return the table id
37      */
38     public abstract short getTableId();
39
40     // ***************
41     // Utility methods
42     // ***************
43
44     /**
45      * Get a base flow builder with some common features already set
46      *
47      * @return {@link FlowBuilder}
48      */
49     protected FlowBuilder base() {
50         return new FlowBuilder()
51             .setTableId(getTableId())
52             .setBarrier(false)
53             .setHardTimeout(0)
54             .setIdleTimeout(0)
55             .setMatch(new MatchBuilder().build());
56     }
57
58     /**
59      * Write a drop flow for the given ethertype at the given priority.
60      * If the ethertype is null, then drop all traffic
61      *
62      * @param priority the priority
63      * @param etherType the ethertype
64      * @param tableId the table id
65      * @return a drop flow for the given ethertype at the given priority.
66      */
67     public Flow dropFlow(Integer priority, Long etherType, Short tableId) {
68         FlowId flowid;
69         FlowBuilder flowb = base()
70                 .setPriority(priority)
71                 .setInstructions(FlowUtils.dropInstructions());
72         if (etherType != null) {
73             MatchBuilder mb = new MatchBuilder()
74                     .setEthernetMatch(
75                             FlowUtils.ethernetMatch(null, null, etherType));
76             Match match = mb.build();
77             flowid = FlowIdUtils.newFlowId(tableId, "drop", match);
78             flowb.setMatch(match);
79         } else {
80             flowid = FlowIdUtils.newFlowId("dropAll");
81         }
82         flowb.setId(flowid);
83         return flowb.build();
84     }
85 }