blob: 688895157917a7176c6927bacfd2f6920e0eae30 [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
43 private static final String ID = "id";
44 private static final String IP = "ip";
45 private static final String TCP_PORT = "tcp";
46 private static final String STATE_IID = "_iconid_state";
Thomas Vachuska7a8de842016-03-07 20:56:35 -080047 private static final String STARTED_IID = "_iconid_started";
Simon Huntabd16f62015-05-01 13:14:40 -070048 private static final String UPDATED = "updated";
Bri Prebilic Cole384e8dc2015-04-13 15:51:14 -070049
Simon Hunt3d1b0652015-05-05 17:27:24 -070050 private static final String[] COL_IDS = {
Thomas Vachuska7a8de842016-03-07 20:56:35 -080051 ID, IP, TCP_PORT, STATE_IID, STARTED_IID, UPDATED
Simon Hunt3d1b0652015-05-05 17:27:24 -070052 };
53
54 private static final String ICON_ID_ONLINE = "active";
55 private static final String ICON_ID_OFFLINE = "inactive";
56
Bri Prebilic Cole384e8dc2015-04-13 15:51:14 -070057 @Override
Simon Huntda580882015-05-12 20:58:18 -070058 protected Collection<RequestHandler> createRequestHandlers() {
Simon Huntd2747a02015-04-30 22:41:16 -070059 return ImmutableSet.of(new ClusterDataRequest());
60 }
61
Simon Huntabd16f62015-05-01 13:14:40 -070062 // handler for cluster table requests
63 private final class ClusterDataRequest extends TableRequestHandler {
Jian Li69f66632016-01-15 12:27:42 -080064 private static final String NO_ROWS_MESSAGE = "No cluster nodes found";
65
Simon Huntd2747a02015-04-30 22:41:16 -070066 private ClusterDataRequest() {
Simon Huntabd16f62015-05-01 13:14:40 -070067 super(CLUSTER_DATA_REQ, CLUSTER_DATA_RESP, CLUSTERS);
Simon Huntd2747a02015-04-30 22:41:16 -070068 }
69
70 @Override
Simon Hunt3d1b0652015-05-05 17:27:24 -070071 protected String[] getColumnIds() {
72 return COL_IDS;
Bri Prebilic Cole384e8dc2015-04-13 15:51:14 -070073 }
74
75 @Override
Jian Li8baf4472016-01-15 15:08:09 -080076 protected String noRowsMessage(ObjectNode payload) {
Jian Li69f66632016-01-15 12:27:42 -080077 return NO_ROWS_MESSAGE;
78 }
79
80 @Override
Simon Hunt3d1b0652015-05-05 17:27:24 -070081 protected TableModel createTableModel() {
82 TableModel tm = super.createTableModel();
Simon Hunt5939e652015-05-06 16:20:23 -070083 tm.setFormatter(UPDATED, new TimeFormatter());
Simon Hunt3d1b0652015-05-05 17:27:24 -070084 return tm;
85 }
86
87 @Override
88 protected void populateTable(TableModel tm, ObjectNode payload) {
89 ClusterService cs = get(ClusterService.class);
90 for (ControllerNode node : cs.getNodes()) {
91 populateRow(tm.addRow(), node, cs);
92 }
93 }
94
95 private void populateRow(TableModel.Row row, ControllerNode node,
96 ClusterService cs) {
97 NodeId id = node.id();
98 DateTime lastUpdated = cs.getLastUpdated(id);
Thomas Vachuska7a8de842016-03-07 20:56:35 -080099 ControllerNode.State state = cs.getState(id);
100 String iconId = state.isActive() ? ICON_ID_ONLINE : ICON_ID_OFFLINE;
101 String startedId = state.isReady() ? ICON_ID_ONLINE : ICON_ID_OFFLINE;
Simon Hunt3d1b0652015-05-05 17:27:24 -0700102
103 row.cell(ID, id)
104 .cell(IP, node.ip())
105 .cell(TCP_PORT, node.tcpPort())
106 .cell(STATE_IID, iconId)
Thomas Vachuska7a8de842016-03-07 20:56:35 -0800107 .cell(STARTED_IID, startedId)
Simon Hunt3d1b0652015-05-05 17:27:24 -0700108 .cell(UPDATED, lastUpdated);
Bri Prebilic Cole384e8dc2015-04-13 15:51:14 -0700109 }
110 }
Bri Prebilic Cole384e8dc2015-04-13 15:51:14 -0700111}