blob: ff94ff2998c704be64c28da9199d578b821fc660 [file] [log] [blame]
Bri Prebilic Cole384e8dc2015-04-13 15:51:14 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Bri Prebilic Cole384e8dc2015-04-13 15:51:14 -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 */
16
17package org.onosproject.ui.impl;
18
Bri Prebilic Cole384e8dc2015-04-13 15:51:14 -070019import com.fasterxml.jackson.databind.node.ObjectNode;
20import com.google.common.collect.ImmutableSet;
21import org.joda.time.DateTime;
Bri Prebilic Cole384e8dc2015-04-13 15:51:14 -070022import org.onosproject.cluster.ClusterService;
23import org.onosproject.cluster.ControllerNode;
24import org.onosproject.cluster.NodeId;
Simon Huntd2747a02015-04-30 22:41:16 -070025import org.onosproject.ui.RequestHandler;
Simon Hunta0ddb022015-05-01 09:53:01 -070026import org.onosproject.ui.UiMessageHandler;
Simon Hunt3d1b0652015-05-05 17:27:24 -070027import org.onosproject.ui.table.TableModel;
Simon Huntabd16f62015-05-01 13:14:40 -070028import org.onosproject.ui.table.TableRequestHandler;
Simon Hunt3d1b0652015-05-05 17:27:24 -070029import org.onosproject.ui.table.cell.TimeFormatter;
Bri Prebilic Cole384e8dc2015-04-13 15:51:14 -070030
Simon Huntd2747a02015-04-30 22:41:16 -070031import java.util.Collection;
Bri Prebilic Cole384e8dc2015-04-13 15:51:14 -070032
33
34/**
35 * Message handler for cluster view related messages.
36 */
Simon Hunta0ddb022015-05-01 09:53:01 -070037public class ClusterViewMessageHandler extends UiMessageHandler {
Bri Prebilic Cole384e8dc2015-04-13 15:51:14 -070038
Simon Huntd2747a02015-04-30 22:41:16 -070039 private static final String CLUSTER_DATA_REQ = "clusterDataRequest";
Simon Huntabd16f62015-05-01 13:14:40 -070040 private static final String CLUSTER_DATA_RESP = "clusterDataResponse";
41 private static final String CLUSTERS = "clusters";
42
Viswanath KSPdf11ea82016-10-25 01:15:16 +053043 private static final String CLUSTER_DETAILS_REQ = "clusterNodeDetailsRequest";
44 private static final String CLUSTER_DETAILS_RESP = "clusterNodeDetailsResponse";
45 private static final String DETAILS = "details";
46
Simon Huntabd16f62015-05-01 13:14:40 -070047 private static final String ID = "id";
48 private static final String IP = "ip";
49 private static final String TCP_PORT = "tcp";
50 private static final String STATE_IID = "_iconid_state";
Thomas Vachuska7a8de842016-03-07 20:56:35 -080051 private static final String STARTED_IID = "_iconid_started";
Simon Huntabd16f62015-05-01 13:14:40 -070052 private static final String UPDATED = "updated";
Bri Prebilic Cole384e8dc2015-04-13 15:51:14 -070053
Simon Hunt3d1b0652015-05-05 17:27:24 -070054 private static final String[] COL_IDS = {
Thomas Vachuska7a8de842016-03-07 20:56:35 -080055 ID, IP, TCP_PORT, STATE_IID, STARTED_IID, UPDATED
Simon Hunt3d1b0652015-05-05 17:27:24 -070056 };
57
58 private static final String ICON_ID_ONLINE = "active";
59 private static final String ICON_ID_OFFLINE = "inactive";
60
Bri Prebilic Cole384e8dc2015-04-13 15:51:14 -070061 @Override
Simon Huntda580882015-05-12 20:58:18 -070062 protected Collection<RequestHandler> createRequestHandlers() {
Viswanath KSPdf11ea82016-10-25 01:15:16 +053063 return ImmutableSet.of(
64 new ClusterDataRequest(),
65 new DetailRequestHandler());
Simon Huntd2747a02015-04-30 22:41:16 -070066 }
67
Simon Huntabd16f62015-05-01 13:14:40 -070068 // handler for cluster table requests
69 private final class ClusterDataRequest extends TableRequestHandler {
Jian Li69f66632016-01-15 12:27:42 -080070 private static final String NO_ROWS_MESSAGE = "No cluster nodes found";
71
Simon Huntd2747a02015-04-30 22:41:16 -070072 private ClusterDataRequest() {
Simon Huntabd16f62015-05-01 13:14:40 -070073 super(CLUSTER_DATA_REQ, CLUSTER_DATA_RESP, CLUSTERS);
Simon Huntd2747a02015-04-30 22:41:16 -070074 }
75
76 @Override
Simon Hunt3d1b0652015-05-05 17:27:24 -070077 protected String[] getColumnIds() {
78 return COL_IDS;
Bri Prebilic Cole384e8dc2015-04-13 15:51:14 -070079 }
80
81 @Override
Jian Li8baf4472016-01-15 15:08:09 -080082 protected String noRowsMessage(ObjectNode payload) {
Jian Li69f66632016-01-15 12:27:42 -080083 return NO_ROWS_MESSAGE;
84 }
85
86 @Override
Simon Hunt3d1b0652015-05-05 17:27:24 -070087 protected TableModel createTableModel() {
88 TableModel tm = super.createTableModel();
Simon Hunt5939e652015-05-06 16:20:23 -070089 tm.setFormatter(UPDATED, new TimeFormatter());
Simon Hunt3d1b0652015-05-05 17:27:24 -070090 return tm;
91 }
92
93 @Override
94 protected void populateTable(TableModel tm, ObjectNode payload) {
95 ClusterService cs = get(ClusterService.class);
96 for (ControllerNode node : cs.getNodes()) {
97 populateRow(tm.addRow(), node, cs);
98 }
99 }
100
101 private void populateRow(TableModel.Row row, ControllerNode node,
102 ClusterService cs) {
103 NodeId id = node.id();
104 DateTime lastUpdated = cs.getLastUpdated(id);
Thomas Vachuska7a8de842016-03-07 20:56:35 -0800105 ControllerNode.State state = cs.getState(id);
106 String iconId = state.isActive() ? ICON_ID_ONLINE : ICON_ID_OFFLINE;
107 String startedId = state.isReady() ? ICON_ID_ONLINE : ICON_ID_OFFLINE;
Simon Hunt3d1b0652015-05-05 17:27:24 -0700108
109 row.cell(ID, id)
110 .cell(IP, node.ip())
111 .cell(TCP_PORT, node.tcpPort())
112 .cell(STATE_IID, iconId)
Thomas Vachuska7a8de842016-03-07 20:56:35 -0800113 .cell(STARTED_IID, startedId)
Simon Hunt3d1b0652015-05-05 17:27:24 -0700114 .cell(UPDATED, lastUpdated);
Bri Prebilic Cole384e8dc2015-04-13 15:51:14 -0700115 }
116 }
Viswanath KSPdf11ea82016-10-25 01:15:16 +0530117
118 private final class DetailRequestHandler extends RequestHandler {
119
120 public DetailRequestHandler() {
121 super(CLUSTER_DETAILS_REQ);
122 }
123
124 @Override
125 public void process(long sid, ObjectNode payload) {
126
127 String id = string(payload, ID);
128 ClusterService cs = get(ClusterService.class);
129 ControllerNode node = cs.getNode(new NodeId(id));
130
131 ObjectNode data = objectNode();
132 data.put(ID, node.id().toString());
133 data.put(IP, node.ip().toString());
134
135 //TODO put more detail info to data
136
137 ObjectNode rootNode = objectNode();
138 rootNode.set(DETAILS, data);
139 sendMessage(CLUSTER_DETAILS_RESP, rootNode);
140 }
141 }
Bri Prebilic Cole384e8dc2015-04-13 15:51:14 -0700142}