mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-28 23:01:25 +01:00
ONOS-6336: Flows View : show app name (not integer ID).
Change-Id: I00afbb06c8dcf7e11e5e2e182b4b0f12f3a060bf
This commit is contained in:
parent
20ce41e2f5
commit
36b658de12
@ -19,6 +19,8 @@ package org.onosproject.ui.impl;
|
|||||||
import com.fasterxml.jackson.databind.node.ObjectNode;
|
import com.fasterxml.jackson.databind.node.ObjectNode;
|
||||||
import com.google.common.base.Strings;
|
import com.google.common.base.Strings;
|
||||||
import com.google.common.collect.ImmutableSet;
|
import com.google.common.collect.ImmutableSet;
|
||||||
|
import org.onosproject.app.ApplicationService;
|
||||||
|
import org.onosproject.core.Application;
|
||||||
import org.onosproject.core.ApplicationId;
|
import org.onosproject.core.ApplicationId;
|
||||||
import org.onosproject.core.DefaultApplicationId;
|
import org.onosproject.core.DefaultApplicationId;
|
||||||
import org.onosproject.net.DeviceId;
|
import org.onosproject.net.DeviceId;
|
||||||
@ -39,7 +41,9 @@ import org.onosproject.ui.table.cell.NumberFormatter;
|
|||||||
|
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -59,6 +63,7 @@ public class FlowViewMessageHandler extends UiMessageHandler {
|
|||||||
private static final String ID = "id";
|
private static final String ID = "id";
|
||||||
private static final String FLOW_ID = "flowId";
|
private static final String FLOW_ID = "flowId";
|
||||||
private static final String APP_ID = "appId";
|
private static final String APP_ID = "appId";
|
||||||
|
private static final String APP_NAME = "appName";
|
||||||
private static final String GROUP_ID = "groupId";
|
private static final String GROUP_ID = "groupId";
|
||||||
private static final String TABLE_ID = "tableId";
|
private static final String TABLE_ID = "tableId";
|
||||||
private static final String PRIORITY = "priority";
|
private static final String PRIORITY = "priority";
|
||||||
@ -77,6 +82,9 @@ public class FlowViewMessageHandler extends UiMessageHandler {
|
|||||||
private static final String OX = "0x";
|
private static final String OX = "0x";
|
||||||
private static final String EMPTY = "";
|
private static final String EMPTY = "";
|
||||||
|
|
||||||
|
private static final String ONOS_PREFIX = "org.onosproject.";
|
||||||
|
private static final String ONOS_MARKER = "*";
|
||||||
|
|
||||||
private static final String[] COL_IDS = {
|
private static final String[] COL_IDS = {
|
||||||
ID,
|
ID,
|
||||||
STATE,
|
STATE,
|
||||||
@ -86,6 +94,7 @@ public class FlowViewMessageHandler extends UiMessageHandler {
|
|||||||
PRIORITY,
|
PRIORITY,
|
||||||
TABLE_ID,
|
TABLE_ID,
|
||||||
APP_ID,
|
APP_ID,
|
||||||
|
APP_NAME,
|
||||||
|
|
||||||
GROUP_ID,
|
GROUP_ID,
|
||||||
TIMEOUT,
|
TIMEOUT,
|
||||||
@ -111,6 +120,27 @@ public class FlowViewMessageHandler extends UiMessageHandler {
|
|||||||
return sb;
|
return sb;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Generate a map of shorts->application IDs
|
||||||
|
// (working around deficiency(?) in Application Service API)
|
||||||
|
private Map<Short, ApplicationId> appShortMap() {
|
||||||
|
Set<Application> apps =
|
||||||
|
get(ApplicationService.class).getApplications();
|
||||||
|
|
||||||
|
return apps.stream()
|
||||||
|
.collect(Collectors.toMap(a -> a.id().id(), Application::id));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Return an application name, based on a lookup of the internal short ID
|
||||||
|
private String makeAppName(short id, Map<Short, ApplicationId> lookup) {
|
||||||
|
ApplicationId appId = lookup.get(id);
|
||||||
|
if (appId == null) {
|
||||||
|
return "Unknown <" + id + ">";
|
||||||
|
}
|
||||||
|
String appName = appId.name();
|
||||||
|
return appName.startsWith(ONOS_PREFIX)
|
||||||
|
? appName.replaceFirst(ONOS_PREFIX, ONOS_MARKER) : appName;
|
||||||
|
}
|
||||||
|
|
||||||
// handler for flow table requests
|
// handler for flow table requests
|
||||||
private final class FlowDataRequest extends TableRequestHandler {
|
private final class FlowDataRequest extends TableRequestHandler {
|
||||||
|
|
||||||
@ -151,14 +181,17 @@ public class FlowViewMessageHandler extends UiMessageHandler {
|
|||||||
String uri = string(payload, "devId");
|
String uri = string(payload, "devId");
|
||||||
if (!Strings.isNullOrEmpty(uri)) {
|
if (!Strings.isNullOrEmpty(uri)) {
|
||||||
DeviceId deviceId = DeviceId.deviceId(uri);
|
DeviceId deviceId = DeviceId.deviceId(uri);
|
||||||
|
Map<Short, ApplicationId> lookup = appShortMap();
|
||||||
FlowRuleService frs = get(FlowRuleService.class);
|
FlowRuleService frs = get(FlowRuleService.class);
|
||||||
|
|
||||||
for (FlowEntry flow : frs.getFlowEntries(deviceId)) {
|
for (FlowEntry flow : frs.getFlowEntries(deviceId)) {
|
||||||
populateRow(tm.addRow(), flow);
|
populateRow(tm.addRow(), flow, lookup);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void populateRow(TableModel.Row row, FlowEntry flow) {
|
private void populateRow(TableModel.Row row, FlowEntry flow,
|
||||||
|
Map<Short, ApplicationId> lookup) {
|
||||||
row.cell(ID, flow.id().value())
|
row.cell(ID, flow.id().value())
|
||||||
.cell(STATE, flow.state())
|
.cell(STATE, flow.state())
|
||||||
.cell(BYTES, flow.bytes())
|
.cell(BYTES, flow.bytes())
|
||||||
@ -167,6 +200,7 @@ public class FlowViewMessageHandler extends UiMessageHandler {
|
|||||||
.cell(PRIORITY, flow.priority())
|
.cell(PRIORITY, flow.priority())
|
||||||
.cell(TABLE_ID, flow.tableId())
|
.cell(TABLE_ID, flow.tableId())
|
||||||
.cell(APP_ID, flow.appId())
|
.cell(APP_ID, flow.appId())
|
||||||
|
.cell(APP_NAME, makeAppName(flow.appId(), lookup))
|
||||||
|
|
||||||
.cell(GROUP_ID, flow.groupId().id())
|
.cell(GROUP_ID, flow.groupId().id())
|
||||||
.cell(TIMEOUT, flow.timeout())
|
.cell(TIMEOUT, flow.timeout())
|
||||||
@ -178,7 +212,6 @@ public class FlowViewMessageHandler extends UiMessageHandler {
|
|||||||
.cell(TREATMENT, flow);
|
.cell(TREATMENT, flow);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private class InternalSelectorFormatter implements CellFormatter {
|
private class InternalSelectorFormatter implements CellFormatter {
|
||||||
private final boolean shortFormat;
|
private final boolean shortFormat;
|
||||||
|
|
||||||
@ -375,6 +408,8 @@ public class FlowViewMessageHandler extends UiMessageHandler {
|
|||||||
data.put(FLOW_PRIORITY, flow.priority());
|
data.put(FLOW_PRIORITY, flow.priority());
|
||||||
data.put(TABLE_ID, flow.tableId());
|
data.put(TABLE_ID, flow.tableId());
|
||||||
data.put(APP_ID, flow.appId());
|
data.put(APP_ID, flow.appId());
|
||||||
|
// NOTE: horribly inefficient... make a map and retrieve a single value...
|
||||||
|
data.put(APP_NAME, makeAppName(flow.appId(), appShortMap()));
|
||||||
|
|
||||||
data.put(GROUP_ID, decorateGroupId(flow));
|
data.put(GROUP_ID, decorateGroupId(flow));
|
||||||
data.put(TIMEOUT, flow.hardTimeout());
|
data.put(TIMEOUT, flow.hardTimeout());
|
||||||
|
|||||||
@ -65,7 +65,7 @@
|
|||||||
<option value="tableId">Table ID</option>
|
<option value="tableId">Table ID</option>
|
||||||
<option value="selector">Selector</option>
|
<option value="selector">Selector</option>
|
||||||
<option value="treatment">Treatment</option>
|
<option value="treatment">Treatment</option>
|
||||||
<option value="appId">App ID</option>
|
<option value="appName">App Name</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -84,7 +84,7 @@
|
|||||||
<td colId="tableId" col-width="80px" sortable> Table ID </td>
|
<td colId="tableId" col-width="80px" sortable> Table ID </td>
|
||||||
<td colId="selector" sortable> Selector </td>
|
<td colId="selector" sortable> Selector </td>
|
||||||
<td colId="treatment" sortable> Treatment </td>
|
<td colId="treatment" sortable> Treatment </td>
|
||||||
<td colId="appId" sortable> App ID </td>
|
<td colId="appName" sortable> App Name </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
@ -111,7 +111,7 @@
|
|||||||
<td>{{flow.tableId}}</td>
|
<td>{{flow.tableId}}</td>
|
||||||
<td>{{flow.selector_c}}</td>
|
<td>{{flow.selector_c}}</td>
|
||||||
<td>{{flow.treatment_c}}</td>
|
<td>{{flow.treatment_c}}</td>
|
||||||
<td>{{flow.appId}}</td>
|
<td>{{flow.appName}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr ng-click="selectCallback($event, flow)"
|
<tr ng-click="selectCallback($event, flow)"
|
||||||
ng-class="{selected: flow.id === selId}"
|
ng-class="{selected: flow.id === selId}"
|
||||||
|
|||||||
@ -62,6 +62,7 @@
|
|||||||
|
|
||||||
'priority',
|
'priority',
|
||||||
'tableId',
|
'tableId',
|
||||||
|
'appName',
|
||||||
'appId',
|
'appId',
|
||||||
|
|
||||||
'groupId',
|
'groupId',
|
||||||
@ -78,6 +79,7 @@
|
|||||||
|
|
||||||
'Flow Priority',
|
'Flow Priority',
|
||||||
'Table ID',
|
'Table ID',
|
||||||
|
'App Name',
|
||||||
'App ID',
|
'App ID',
|
||||||
|
|
||||||
'Group ID',
|
'Group ID',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user