blob: 11189f0c9e301daaddd47a03d562f40a085f3f2c [file] [log] [blame]
Ray Milkey4f5de002014-12-17 19:26:11 -08001/*
2 * Copyright 2014 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.codec.impl;
17
18import org.onosproject.codec.CodecContext;
19import org.onosproject.codec.JsonCodec;
20import org.onosproject.net.flow.FlowEntry;
21import org.onosproject.net.flow.TrafficSelector;
22import org.onosproject.net.flow.TrafficTreatment;
23
24import com.fasterxml.jackson.databind.node.ObjectNode;
25
26import static com.google.common.base.Preconditions.checkNotNull;
27
28/**
29 * Flow entry JSON codec.
30 */
Ray Milkey540b2ce2015-02-04 17:50:20 -080031public final class FlowEntryCodec extends JsonCodec<FlowEntry> {
Ray Milkey4f5de002014-12-17 19:26:11 -080032
33 @Override
34 public ObjectNode encode(FlowEntry flowEntry, CodecContext context) {
35 checkNotNull(flowEntry, "Flow entry cannot be null");
36
37 final ObjectNode result = context.mapper().createObjectNode()
38 .put("id", Long.toString(flowEntry.id().value()))
39 .put("appId", flowEntry.appId())
40 .put("groupId", flowEntry.groupId().id())
41 .put("priority", flowEntry.priority())
42 .put("timeout", flowEntry.timeout())
43 .put("isPermanent", flowEntry.isPermanent())
44 .put("deviceId", flowEntry.deviceId().toString())
45 .put("state", flowEntry.state().toString())
46 .put("life", flowEntry.life())
47 .put("packets", flowEntry.packets())
48 .put("bytes", flowEntry.bytes())
49 .put("lastSeen", flowEntry.lastSeen());
50
51 if (flowEntry.treatment() != null) {
52 final JsonCodec<TrafficTreatment> treatmentCodec =
Ray Milkeyc95bb9d2015-01-06 10:28:24 -080053 context.codec(TrafficTreatment.class);
Ray Milkey4f5de002014-12-17 19:26:11 -080054 result.set("treatment", treatmentCodec.encode(flowEntry.treatment(), context));
55 }
56
57 if (flowEntry.selector() != null) {
58 final JsonCodec<TrafficSelector> selectorCodec =
Ray Milkeyc95bb9d2015-01-06 10:28:24 -080059 context.codec(TrafficSelector.class);
Ray Milkey4f5de002014-12-17 19:26:11 -080060 result.set("selector", selectorCodec.encode(flowEntry.selector(), context));
61 }
62
63 return result;
64 }
65
66}
67