blob: d34092a73b0a9c6f02f0761badd2a4e9212f666f [file] [log] [blame]
Thomas Vachuskaca60f2b2014-11-06 01:34:28 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Thomas Vachuskaca60f2b2014-11-06 01:34:28 -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 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.codec.impl;
Thomas Vachuskaca60f2b2014-11-06 01:34:28 -080017
18import com.fasterxml.jackson.databind.node.ObjectNode;
HIGUCHI Yuta5bb99a42015-03-19 16:52:15 -070019
20import org.onlab.packet.ChassisId;
Brian O'Connorabafb502014-12-02 22:26:20 -080021import org.onosproject.codec.CodecContext;
HIGUCHI Yuta5bb99a42015-03-19 16:52:15 -070022import org.onosproject.net.Annotations;
23import org.onosproject.net.DefaultDevice;
Brian O'Connorabafb502014-12-02 22:26:20 -080024import org.onosproject.net.Device;
HIGUCHI Yuta5bb99a42015-03-19 16:52:15 -070025import org.onosproject.net.Device.Type;
26import org.onosproject.net.DeviceId;
Brian O'Connorabafb502014-12-02 22:26:20 -080027import org.onosproject.net.device.DeviceService;
kalagesa42019542017-03-14 18:00:47 +053028import org.onosproject.net.driver.DriverService;
HIGUCHI Yuta5bb99a42015-03-19 16:52:15 -070029import org.onosproject.net.provider.ProviderId;
Thomas Vachuskaca60f2b2014-11-06 01:34:28 -080030
31import static com.google.common.base.Preconditions.checkNotNull;
HIGUCHI Yuta5bb99a42015-03-19 16:52:15 -070032import static org.onosproject.net.DeviceId.deviceId;
Thomas Vachuskaca60f2b2014-11-06 01:34:28 -080033
34/**
35 * Device JSON codec.
36 */
Ray Milkey540b2ce2015-02-04 17:50:20 -080037public final class DeviceCodec extends AnnotatedCodec<Device> {
Thomas Vachuskaca60f2b2014-11-06 01:34:28 -080038
HIGUCHI Yuta5bb99a42015-03-19 16:52:15 -070039 // JSON fieldNames
40 private static final String ID = "id";
41 private static final String TYPE = "type";
kalagesa42019542017-03-14 18:00:47 +053042 private static final String AVAILABLE = "available";
43 private static final String ROLE = "role";
HIGUCHI Yuta5bb99a42015-03-19 16:52:15 -070044 private static final String MFR = "mfr";
45 private static final String HW = "hw";
46 private static final String SW = "sw";
47 private static final String SERIAL = "serial";
48 private static final String CHASSIS_ID = "chassisId";
kalagesa42019542017-03-14 18:00:47 +053049 private static final String DRIVER = "driver";
Ray Milkey054e23d2018-03-22 13:37:11 -070050 private static final String LAST_UPDATE = "lastUpdate";
51 private static final String HUMAN_READABLE_LAST_UPDATE = "humanReadableLastUpdate";
HIGUCHI Yuta5bb99a42015-03-19 16:52:15 -070052
Thomas Vachuskaca60f2b2014-11-06 01:34:28 -080053 @Override
54 public ObjectNode encode(Device device, CodecContext context) {
55 checkNotNull(device, "Device cannot be null");
Ray Milkey3078fc02015-05-06 16:14:14 -070056 DeviceService service = context.getService(DeviceService.class);
kalagesa42019542017-03-14 18:00:47 +053057 DriverService driveService = context.getService(DriverService.class);
Thomas Vachuskaca60f2b2014-11-06 01:34:28 -080058 ObjectNode result = context.mapper().createObjectNode()
HIGUCHI Yuta5bb99a42015-03-19 16:52:15 -070059 .put(ID, device.id().toString())
60 .put(TYPE, device.type().name())
kalagesa42019542017-03-14 18:00:47 +053061 .put(AVAILABLE, service.isAvailable(device.id()))
62 .put(ROLE, service.getRole(device.id()).toString())
HIGUCHI Yuta5bb99a42015-03-19 16:52:15 -070063 .put(MFR, device.manufacturer())
64 .put(HW, device.hwVersion())
65 .put(SW, device.swVersion())
66 .put(SERIAL, device.serialNumber())
kalagesa42019542017-03-14 18:00:47 +053067 .put(DRIVER, driveService.getDriver(device.id()).name())
Ray Milkey054e23d2018-03-22 13:37:11 -070068 .put(CHASSIS_ID, device.chassisId().toString())
69 .put(LAST_UPDATE, Long.toString(service.getLastUpdatedInstant(device.id())))
70 .put(HUMAN_READABLE_LAST_UPDATE, service.localStatus(device.id()));
Thomas Vachuskaca60f2b2014-11-06 01:34:28 -080071 return annotate(result, device, context);
72 }
73
HIGUCHI Yuta5bb99a42015-03-19 16:52:15 -070074
75 /**
76 * {@inheritDoc}
77 *
78 * Note: ProviderId is not part of JSON representation.
79 * Returned object will have random ProviderId set.
80 */
81 @Override
82 public Device decode(ObjectNode json, CodecContext context) {
83 if (json == null || !json.isObject()) {
84 return null;
85 }
86
87 DeviceId id = deviceId(json.get(ID).asText());
88 // TODO: add providerId to JSON if we need to recover them.
89 ProviderId pid = new ProviderId(id.uri().getScheme(), "DeviceCodec");
90
91 Type type = Type.valueOf(json.get(TYPE).asText());
92 String mfr = json.get(MFR).asText();
93 String hw = json.get(HW).asText();
94 String sw = json.get(SW).asText();
95 String serial = json.get(SERIAL).asText();
96 ChassisId chassisId = new ChassisId(json.get(CHASSIS_ID).asText());
97 Annotations annotations = extractAnnotations(json, context);
98
99 return new DefaultDevice(pid, id, type, mfr, hw, sw, serial,
100 chassisId, annotations);
101 }
Thomas Vachuskaca60f2b2014-11-06 01:34:28 -0800102}