blob: c9997574f2f3ad8fece7c43771b3c2dbe25cd3d9 [file] [log] [blame]
Ray Milkey2b217142014-12-15 09:24:24 -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.NetworkResource;
21import org.onosproject.net.intent.Intent;
22
23import com.fasterxml.jackson.databind.node.ArrayNode;
24import com.fasterxml.jackson.databind.node.ObjectNode;
25
26import static com.google.common.base.Preconditions.checkNotNull;
27
28/**
29 * Intent JSON codec.
30 */
31public class IntentCodec extends JsonCodec<Intent> {
32
33 @Override
34 public ObjectNode encode(Intent intent, CodecContext context) {
35 checkNotNull(intent, "Intent cannot be null");
36 final ObjectNode result = context.mapper().createObjectNode()
37 .put("type", intent.getClass().getSimpleName())
38 .put("id", intent.id().toString())
39 .put("appId", intent.appId().toString())
40 .put("details", intent.toString());
41
42 final ArrayNode jsonResources = result.putArray("resources");
43
44 if (intent.resources() != null) {
45 for (final NetworkResource resource : intent.resources()) {
46 jsonResources.add(resource.toString());
47 }
48 }
49 return result;
50 }
51}