blob: da0eae0709ab70faa7bfd9be119ac861b3124e0c [file] [log] [blame]
Bri Prebilic Cole384e8dc2015-04-13 15:51:14 -07001/*
2 * Copyright 2015 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 */
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";
47 private static final String UPDATED = "updated";
Bri Prebilic Cole384e8dc2015-04-13 15:51:14 -070048
Simon Hunt3d1b0652015-05-05 17:27:24 -070049 private static final String[] COL_IDS = {
50 ID, IP, TCP_PORT, STATE_IID, UPDATED
51 };
52
53 private static final String ICON_ID_ONLINE = "active";
54 private static final String ICON_ID_OFFLINE = "inactive";
55
Bri Prebilic Cole384e8dc2015-04-13 15:51:14 -070056 @Override
Simon Huntda580882015-05-12 20:58:18 -070057 protected Collection<RequestHandler> createRequestHandlers() {
Simon Huntd2747a02015-04-30 22:41:16 -070058 return ImmutableSet.of(new ClusterDataRequest());
59 }
60
Simon Huntabd16f62015-05-01 13:14:40 -070061 // handler for cluster table requests
62 private final class ClusterDataRequest extends TableRequestHandler {
Simon Huntd2747a02015-04-30 22:41:16 -070063 private ClusterDataRequest() {
Simon Huntabd16f62015-05-01 13:14:40 -070064 super(CLUSTER_DATA_REQ, CLUSTER_DATA_RESP, CLUSTERS);
Simon Huntd2747a02015-04-30 22:41:16 -070065 }
66
67 @Override
Simon Hunt3d1b0652015-05-05 17:27:24 -070068 protected String[] getColumnIds() {
69 return COL_IDS;
Bri Prebilic Cole384e8dc2015-04-13 15:51:14 -070070 }
71
72 @Override
Simon Hunt3d1b0652015-05-05 17:27:24 -070073 protected TableModel createTableModel() {
74 TableModel tm = super.createTableModel();
Simon Hunt5939e652015-05-06 16:20:23 -070075 tm.setFormatter(UPDATED, new TimeFormatter());
Simon Hunt3d1b0652015-05-05 17:27:24 -070076 return tm;
77 }
78
79 @Override
80 protected void populateTable(TableModel tm, ObjectNode payload) {
81 ClusterService cs = get(ClusterService.class);
82 for (ControllerNode node : cs.getNodes()) {
83 populateRow(tm.addRow(), node, cs);
84 }
85 }
86
87 private void populateRow(TableModel.Row row, ControllerNode node,
88 ClusterService cs) {
89 NodeId id = node.id();
90 DateTime lastUpdated = cs.getLastUpdated(id);
91 String iconId = (cs.getState(id) == ControllerNode.State.ACTIVE) ?
92 ICON_ID_ONLINE : ICON_ID_OFFLINE;
93
94 row.cell(ID, id)
95 .cell(IP, node.ip())
96 .cell(TCP_PORT, node.tcpPort())
97 .cell(STATE_IID, iconId)
98 .cell(UPDATED, lastUpdated);
Bri Prebilic Cole384e8dc2015-04-13 15:51:14 -070099 }
100 }
Bri Prebilic Cole384e8dc2015-04-13 15:51:14 -0700101}