blob: 3f581bedc14b1f7b56ab00aeb93d68a2f1bf5628 [file] [log] [blame]
Ray Milkey4f5de002014-12-17 19:26:11 -08001/*
Ray Milkey34c95902015-04-15 09:47:53 -07002 * Copyright 2014-2015 Open Networking Laboratory
Ray Milkey4f5de002014-12-17 19:26:11 -08003 *
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;
Ray Milkeybe539db2015-09-04 11:00:43 -070020import org.onosproject.core.CoreService;
Ray Milkey4f5de002014-12-17 19:26:11 -080021import org.onosproject.net.flow.FlowEntry;
22import org.onosproject.net.flow.TrafficSelector;
23import org.onosproject.net.flow.TrafficTreatment;
24
25import com.fasterxml.jackson.databind.node.ObjectNode;
26
27import static com.google.common.base.Preconditions.checkNotNull;
28
29/**
30 * Flow entry JSON codec.
31 */
Ray Milkey540b2ce2015-02-04 17:50:20 -080032public final class FlowEntryCodec extends JsonCodec<FlowEntry> {
Ray Milkey4f5de002014-12-17 19:26:11 -080033
34 @Override
35 public ObjectNode encode(FlowEntry flowEntry, CodecContext context) {
36 checkNotNull(flowEntry, "Flow entry cannot be null");
37
Ray Milkeybe539db2015-09-04 11:00:43 -070038 CoreService service = context.getService(CoreService.class);
39
Ray Milkey4f5de002014-12-17 19:26:11 -080040 final ObjectNode result = context.mapper().createObjectNode()
41 .put("id", Long.toString(flowEntry.id().value()))
Srikanth Vavilapallid120f5c2015-11-24 14:15:01 -080042 .put("tableId", flowEntry.tableId())
Ray Milkeybe539db2015-09-04 11:00:43 -070043 .put("appId", service.getAppId(flowEntry.appId()).name())
Ray Milkey4f5de002014-12-17 19:26:11 -080044 .put("groupId", flowEntry.groupId().id())
45 .put("priority", flowEntry.priority())
46 .put("timeout", flowEntry.timeout())
47 .put("isPermanent", flowEntry.isPermanent())
48 .put("deviceId", flowEntry.deviceId().toString())
49 .put("state", flowEntry.state().toString())
50 .put("life", flowEntry.life())
51 .put("packets", flowEntry.packets())
52 .put("bytes", flowEntry.bytes())
53 .put("lastSeen", flowEntry.lastSeen());
54
55 if (flowEntry.treatment() != null) {
56 final JsonCodec<TrafficTreatment> treatmentCodec =
Ray Milkeyc95bb9d2015-01-06 10:28:24 -080057 context.codec(TrafficTreatment.class);
Ray Milkey4f5de002014-12-17 19:26:11 -080058 result.set("treatment", treatmentCodec.encode(flowEntry.treatment(), context));
59 }
60
61 if (flowEntry.selector() != null) {
62 final JsonCodec<TrafficSelector> selectorCodec =
Ray Milkeyc95bb9d2015-01-06 10:28:24 -080063 context.codec(TrafficSelector.class);
Ray Milkey4f5de002014-12-17 19:26:11 -080064 result.set("selector", selectorCodec.encode(flowEntry.selector(), context));
65 }
66
67 return result;
68 }
69
70}
71