[ONOS-6170] Implement codec for MappingAction primitives

Change-Id: I8f92b05c814158285e97616bdaa8f24de7064833
diff --git a/apps/mappingmanagement/web/src/main/java/org/onosproject/mapping/web/codec/DecodeMappingActionCodecHelper.java b/apps/mappingmanagement/web/src/main/java/org/onosproject/mapping/web/codec/DecodeMappingActionCodecHelper.java
new file mode 100644
index 0000000..64c58fb
--- /dev/null
+++ b/apps/mappingmanagement/web/src/main/java/org/onosproject/mapping/web/codec/DecodeMappingActionCodecHelper.java
@@ -0,0 +1,97 @@
+/*
+ * Copyright 2017-present Open Networking Laboratory
+ *
+ * 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.mapping.web.codec;
+
+import com.fasterxml.jackson.databind.node.ObjectNode;
+import org.onosproject.mapping.actions.MappingAction;
+import org.onosproject.mapping.actions.MappingActions;
+
+import static org.onlab.util.Tools.nullIsIllegal;
+
+/**
+ * Decode portion of the mapping action codec.
+ */
+public final class DecodeMappingActionCodecHelper {
+    private final ObjectNode json;
+
+    /**
+     * Creates a decode mapping action codec object.
+     *
+     * @param json    JSON object to decode
+     */
+    public DecodeMappingActionCodecHelper(ObjectNode json) {
+        this.json = json;
+    }
+
+    /**
+     * Decodes a no mapping action.
+     *
+     * @return mapping action object decoded from the JSON
+     */
+    private MappingAction decodeNoAction() {
+        return MappingActions.noAction();
+    }
+
+    /**
+     * Decodes a forward mapping action.
+     *
+     * @return mapping action object decoded from the JSON
+     */
+    private MappingAction decodeForwardAction() {
+        return MappingActions.forward();
+    }
+
+    /**
+     * Decodes a native forward mapping action.
+     *
+     * @return mapping action object decoded from the JSON
+     */
+    private MappingAction decodeNativeForwardAction() {
+        return MappingActions.nativeForward();
+    }
+
+    /**
+     * Decodes a drop mapping action.
+     *
+     * @return mapping action object decoded from the JSON
+     */
+    private MappingAction decodeDropAction() {
+        return MappingActions.drop();
+    }
+
+    /**
+     * Decodes the JSON into a mapping action object.
+     *
+     * @return MappingAction object
+     * @throws IllegalArgumentException if the JSON is invalid
+     */
+    public MappingAction decode() {
+       String type =  nullIsIllegal(json.get(MappingActionCodec.TYPE),
+               MappingActionCodec.TYPE + MappingActionCodec.ERROR_MESSAGE).asText();
+
+       if (type.equals(MappingAction.Type.DROP.name())) {
+           return decodeDropAction();
+       } else if (type.equals(MappingAction.Type.FORWARD.name())) {
+           return decodeForwardAction();
+       } else if (type.equals(MappingAction.Type.NATIVE_FORWARD.name())) {
+           return decodeNativeForwardAction();
+       } else if (type.equals(MappingAction.Type.NO_ACTION.name())) {
+           return decodeNoAction();
+       }
+       throw new IllegalArgumentException("MappingAction type "
+                + type + " is not supported");
+    }
+}
diff --git a/apps/mappingmanagement/web/src/main/java/org/onosproject/mapping/web/codec/EncodeMappingActionCodecHelper.java b/apps/mappingmanagement/web/src/main/java/org/onosproject/mapping/web/codec/EncodeMappingActionCodecHelper.java
new file mode 100644
index 0000000..370de80
--- /dev/null
+++ b/apps/mappingmanagement/web/src/main/java/org/onosproject/mapping/web/codec/EncodeMappingActionCodecHelper.java
@@ -0,0 +1,117 @@
+/*
+ * Copyright 2017-present Open Networking Laboratory
+ *
+ * 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.mapping.web.codec;
+
+import com.fasterxml.jackson.databind.node.ObjectNode;
+import org.onosproject.codec.CodecContext;
+import org.onosproject.mapping.actions.MappingAction;
+import org.onosproject.mapping.actions.NoMappingAction;
+import org.onosproject.mapping.actions.DropMappingAction;
+import org.onosproject.mapping.actions.ForwardMappingAction;
+import org.onosproject.mapping.actions.NativeForwardMappingAction;
+import org.slf4j.Logger;
+
+import static org.slf4j.LoggerFactory.getLogger;
+
+/**
+ * Encode portion of the mapping action codec.
+ */
+public final class EncodeMappingActionCodecHelper {
+    protected static final Logger log = getLogger(EncodeMappingActionCodecHelper.class);
+    private final MappingAction action;
+    private final CodecContext context;
+
+    /**
+     * Creates a mapping action object encoder.
+     *
+     * @param action  mapping action to encode
+     * @param context codec context for the encoding
+     */
+    public EncodeMappingActionCodecHelper(MappingAction action,
+                                          CodecContext context) {
+        this.action = action;
+        this.context = context;
+    }
+
+    /**
+     * Encodes a no mapping action.
+     *
+     * @param result json node that the mapping action attributes are added to
+     */
+    private void encodeNoMappingAction(ObjectNode result) {
+        NoMappingAction noMappingAction = (NoMappingAction) action;
+        result.put(MappingActionCodec.TYPE, noMappingAction.type().name());
+    }
+
+    /**
+     * Encodes a drop mapping action.
+     *
+     * @param result json node that the mapping action attributes are added to
+     */
+    private void encodeDropMappingAction(ObjectNode result) {
+        DropMappingAction dropMappingAction = (DropMappingAction) action;
+        result.put(MappingActionCodec.TYPE, dropMappingAction.type().name());
+    }
+
+    /**
+     * Encodes a forward mapping action.
+     *
+     * @param result json node that the mapping action attributes are added to
+     */
+    private void encodeForwardMappingAction(ObjectNode result) {
+        ForwardMappingAction forwardMappingAction = (ForwardMappingAction) action;
+        result.put(MappingActionCodec.TYPE, forwardMappingAction.type().name());
+    }
+
+    /**
+     * Encodes a native forward mapping action.
+     *
+     * @param result json node that the mapping action attributes are added to
+     */
+    private void encodeNativeForwardMappingAction(ObjectNode result) {
+        NativeForwardMappingAction nativeMappingAction = (NativeForwardMappingAction) action;
+        result.put(MappingActionCodec.TYPE, nativeMappingAction.type().name());
+    }
+
+    /**
+     * Encodes the given mapping instruction into JSON.
+     *
+     * @return JSON object node representing the mapping action
+     */
+    public ObjectNode encode() {
+       final ObjectNode result = context.mapper().createObjectNode()
+               .put(MappingActionCodec.TYPE, action.type().toString());
+
+       switch (action.type()) {
+           case DROP:
+               encodeDropMappingAction(result);
+               break;
+           case FORWARD:
+               encodeForwardMappingAction(result);
+               break;
+           case NATIVE_FORWARD:
+               encodeNativeForwardMappingAction(result);
+               break;
+           case NO_ACTION:
+               encodeNoMappingAction(result);
+               break;
+           default:
+               log.info("Cannot convert mapping action type of {}", action.type());
+               break;
+       }
+       return result;
+    }
+}
diff --git a/apps/mappingmanagement/web/src/main/java/org/onosproject/mapping/web/codec/MappingActionCodec.java b/apps/mappingmanagement/web/src/main/java/org/onosproject/mapping/web/codec/MappingActionCodec.java
new file mode 100644
index 0000000..169d819
--- /dev/null
+++ b/apps/mappingmanagement/web/src/main/java/org/onosproject/mapping/web/codec/MappingActionCodec.java
@@ -0,0 +1,50 @@
+/*
+ * Copyright 2017-present Open Networking Laboratory
+ *
+ * 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.mapping.web.codec;
+
+import com.fasterxml.jackson.databind.node.ObjectNode;
+import org.onosproject.codec.CodecContext;
+import org.onosproject.codec.JsonCodec;
+import org.onosproject.mapping.actions.MappingAction;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+/**
+ * Mapping action codec.
+ */
+public final class MappingActionCodec extends JsonCodec<MappingAction> {
+
+    protected static final Logger log =
+                            LoggerFactory.getLogger(MappingActionCodec.class);
+
+    protected static final String TYPE = "type";
+    protected static final String ERROR_MESSAGE =
+                                    " not specified in MappingAction";
+
+    @Override
+    public ObjectNode encode(MappingAction action, CodecContext context) {
+        EncodeMappingActionCodecHelper encoder =
+                            new EncodeMappingActionCodecHelper(action, context);
+        return encoder.encode();
+    }
+
+    @Override
+    public MappingAction decode(ObjectNode json, CodecContext context) {
+        DecodeMappingActionCodecHelper decoder =
+                new DecodeMappingActionCodecHelper(json);
+        return decoder.decode();
+    }
+}