blob: 44b121ac0fa704c10db065340987ab0c6f18601f [file] [log] [blame]
Jonathan Hart3c259162015-10-21 21:31:19 -07001/*
2 * Copyright 2015 Open Networking Laboratory
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
17package org.onosproject.openflow.controller;
18
19import com.google.common.annotations.Beta;
20import org.onosproject.net.driver.HandlerBehaviour;
21import org.onosproject.net.flow.instructions.ExtensionInstruction;
22import org.onosproject.net.flow.instructions.ExtensionType;
23import org.projectfloodlight.openflow.protocol.OFFactory;
24import org.projectfloodlight.openflow.protocol.action.OFAction;
25
26/**
27 * Interprets extension instructions and converts them to/from OpenFlow objects.
28 */
29@Beta
30public interface ExtensionInterpreter extends HandlerBehaviour {
31
32 /**
33 * Returns true if the given extension instruction is supported by this
34 * driver.
35 *
36 * @param extensionType extension instruction type
37 * @return true if the instruction is supported, otherwise false
38 */
39 boolean supported(ExtensionType extensionType);
40
41 /**
42 * Maps an extension instruction to an OpenFlow action.
43 *
44 * @param factory OpenFlow factory
45 * @param extensionInstruction extension instruction
46 * @return OpenFlow action
47 */
48 OFAction mapInstruction(OFFactory factory, ExtensionInstruction extensionInstruction);
49
50 /**
51 * Maps an OpenFlow action to an extension instruction.
52 *
53 * @param action OpenFlow action
54 * @return extension instruction
55 */
56 ExtensionInstruction mapAction(OFAction action);
57
58}