blob: 46b0b95d77215d868ca804308427ba8f1234210e [file] [log] [blame]
Srikanth Vavilapalli95810f52015-09-14 15:49:56 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Srikanth Vavilapalli95810f52015-09-14 15:49:56 -07003 *
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.codec.impl;
17
18import org.onosproject.codec.CodecContext;
19import org.onosproject.codec.JsonCodec;
20import org.onosproject.net.flow.TableStatisticsEntry;
21
22import com.fasterxml.jackson.databind.node.ObjectNode;
23
24import static com.google.common.base.Preconditions.checkNotNull;
25
26/**
27 * Table statistics entry JSON codec.
28 */
29public final class TableStatisticsEntryCodec extends JsonCodec<TableStatisticsEntry> {
30
31 @Override
32 public ObjectNode encode(TableStatisticsEntry entry, CodecContext context) {
33 checkNotNull(entry, "Table Statistics entry cannot be null");
34
35 final ObjectNode result = context.mapper().createObjectNode()
36 .put("tableId", entry.tableId())
37 .put("deviceId", entry.deviceId().toString())
38 .put("activeEntries", entry.activeFlowEntries())
39 .put("packetsLookedUp", entry.packetsLookedup())
40 .put("packetsMatched", entry.packetsMatched());
41
42 return result;
43 }
44
45}
46