blob: 5a8eb73373826f213095b4da2dbc3e2437172d2a [file] [log] [blame]
Jian Lidab72562016-04-12 14:10:32 -07001/*
2 * Copyright 2016-present 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 */
16package org.onosproject.driver.extensions.codec;
17
18import com.fasterxml.jackson.databind.node.ObjectNode;
19import org.onosproject.codec.CodecContext;
20import org.onosproject.codec.JsonCodec;
21import org.onosproject.driver.extensions.NiciraResubmitTable;
22import org.onosproject.net.PortNumber;
23
24import static com.google.common.base.Preconditions.checkNotNull;
25import static org.onlab.util.Tools.nullIsIllegal;
26
27/**
28 * JSON Codec for NiciraResubmitTable class.
29 */
30public final class NiciraResubmitTableCodec extends JsonCodec<NiciraResubmitTable> {
31
32 private static final String RESUBMIT_PORT = "inPort";
33 private static final String RESUBMIT_TABLE = "table";
34
35 private static final String MISSING_MEMBER_MESSAGE = " member is required in NiciraResubmitTable";
36
37 @Override
38 public ObjectNode encode(NiciraResubmitTable niciraResubmitTable, CodecContext context) {
39 checkNotNull(niciraResubmitTable, "Nicira Resubmit Table cannot be null");
40 ObjectNode root = context.mapper().createObjectNode()
41 .put(RESUBMIT_PORT, niciraResubmitTable.inPort().toLong())
42 .put(RESUBMIT_TABLE, niciraResubmitTable.table());
43 return root;
44 }
45
46 @Override
47 public NiciraResubmitTable decode(ObjectNode json, CodecContext context) {
48 if (json == null || !json.isObject()) {
49 return null;
50 }
51
52 // parse in port number
53 long portNumberLong = nullIsIllegal(json.get(RESUBMIT_PORT),
54 RESUBMIT_PORT + MISSING_MEMBER_MESSAGE).asLong();
55 PortNumber portNumber = PortNumber.portNumber(portNumberLong);
56
57 // parse table id
58 short tableId = (short) nullIsIllegal(json.get(RESUBMIT_TABLE),
59 RESUBMIT_TABLE + MISSING_MEMBER_MESSAGE).asInt();
60
61 NiciraResubmitTable niciraResubmitTable = new NiciraResubmitTable(portNumber, tableId);
62
63 return niciraResubmitTable;
64 }
65}