blob: 44ea91002cced71aa2016b46c94c84402a91d490 [file] [log] [blame]
Simon Hunted804d52016-03-30 09:51:40 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Simon Hunted804d52016-03-30 09:51:40 -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
Simon Huntf679c4e2016-04-01 17:02:24 -070017package org.onosproject.ui.impl.topo;
Simon Hunted804d52016-03-30 09:51:40 -070018
Simon Huntb1ce2602016-07-23 14:04:31 -070019import org.onosproject.net.region.RegionId;
Simon Huntf679c4e2016-04-01 17:02:24 -070020import org.onosproject.ui.UiTopoLayoutService;
21import org.onosproject.ui.impl.UiWebSocket;
Simon Huntcda9c032016-04-11 10:32:54 -070022import org.onosproject.ui.impl.topo.model.UiModelEvent;
23import org.onosproject.ui.impl.topo.model.UiModelListener;
Simon Huntf679c4e2016-04-01 17:02:24 -070024import org.onosproject.ui.impl.topo.model.UiSharedTopologyModel;
Simon Huntd5b96732016-07-08 13:22:27 -070025import org.onosproject.ui.model.topo.UiClusterMember;
Simon Hunt98189192016-07-29 19:02:27 -070026import org.onosproject.ui.model.topo.UiNode;
Simon Huntd5b96732016-07-08 13:22:27 -070027import org.onosproject.ui.model.topo.UiRegion;
Simon Huntc13082f2016-08-03 21:20:23 -070028import org.onosproject.ui.model.topo.UiSynthLink;
Simon Huntf679c4e2016-04-01 17:02:24 -070029import org.onosproject.ui.model.topo.UiTopoLayout;
Simon Hunted804d52016-03-30 09:51:40 -070030import org.slf4j.Logger;
31import org.slf4j.LoggerFactory;
32
Simon Huntb1ce2602016-07-23 14:04:31 -070033import java.util.HashSet;
Simon Huntd5b96732016-07-08 13:22:27 -070034import java.util.List;
Simon Hunt977aa052016-07-20 17:08:29 -070035import java.util.Set;
Simon Huntd5b96732016-07-08 13:22:27 -070036
Simon Hunted804d52016-03-30 09:51:40 -070037/**
Simon Huntf679c4e2016-04-01 17:02:24 -070038 * Coordinates with the {@link UiTopoLayoutService} to access
39 * {@link UiTopoLayout}s, and with the {@link UiSharedTopologyModel} which
Simon Huntcda9c032016-04-11 10:32:54 -070040 * maintains a local model of the network entities, tailored specifically
41 * for displaying on the UI.
Simon Hunted804d52016-03-30 09:51:40 -070042 * <p>
43 * Note that an instance of this class will be created for each
Simon Huntf679c4e2016-04-01 17:02:24 -070044 * {@link UiWebSocket} connection, and will contain
Simon Hunted804d52016-03-30 09:51:40 -070045 * the state of how the topology is laid out for the logged-in user.
Simon Huntd5b96732016-07-08 13:22:27 -070046 * <p>
47 * The expected pattern is for the {@link Topo2ViewMessageHandler} to obtain
48 * a reference to the session instance (via the {@link UiWebSocket}), and
49 * interact with it when topo-related events come in from the client.
Simon Hunted804d52016-03-30 09:51:40 -070050 */
Simon Huntcda9c032016-04-11 10:32:54 -070051public class UiTopoSession implements UiModelListener {
Simon Hunt977aa052016-07-20 17:08:29 -070052
Simon Hunted804d52016-03-30 09:51:40 -070053 private final Logger log = LoggerFactory.getLogger(getClass());
54
Simon Huntf679c4e2016-04-01 17:02:24 -070055 private final UiWebSocket webSocket;
Simon Hunt7092cc42016-04-06 18:40:17 -070056 private final String username;
57
58 final UiSharedTopologyModel sharedModel;
Simon Hunted804d52016-03-30 09:51:40 -070059
60 private boolean registered = false;
61
Thomas Vachuska92b016b2016-05-20 11:37:57 -070062 private UiTopoLayoutService layoutService;
Simon Hunt7092cc42016-04-06 18:40:17 -070063 private UiTopoLayout currentLayout;
Thomas Vachuska92b016b2016-05-20 11:37:57 -070064 private boolean messagesEnabled;
Simon Huntf679c4e2016-04-01 17:02:24 -070065
Simon Hunted804d52016-03-30 09:51:40 -070066 /**
Simon Hunt7092cc42016-04-06 18:40:17 -070067 * Creates a new topology session for the specified web socket connection.
68 *
Thomas Vachuska92b016b2016-05-20 11:37:57 -070069 * @param webSocket web socket
70 * @param model share topology model
71 * @param layoutService topology layout service
Simon Hunted804d52016-03-30 09:51:40 -070072 */
Thomas Vachuska92b016b2016-05-20 11:37:57 -070073 public UiTopoSession(UiWebSocket webSocket,
74 UiSharedTopologyModel model,
75 UiTopoLayoutService layoutService) {
Simon Huntf679c4e2016-04-01 17:02:24 -070076 this.webSocket = webSocket;
Simon Hunt7092cc42016-04-06 18:40:17 -070077 this.username = webSocket.userName();
Simon Huntcda9c032016-04-11 10:32:54 -070078 this.sharedModel = model;
Thomas Vachuska92b016b2016-05-20 11:37:57 -070079 this.layoutService = layoutService;
Simon Hunted804d52016-03-30 09:51:40 -070080 }
81
Simon Hunt977aa052016-07-20 17:08:29 -070082 // constructs a neutered instance, for unit testing
83 UiTopoSession() {
84 webSocket = null;
85 username = null;
86 sharedModel = null;
87 }
88
Simon Hunted804d52016-03-30 09:51:40 -070089 /**
Simon Hunt7092cc42016-04-06 18:40:17 -070090 * Initializes the session; registering with the shared model.
Simon Hunted804d52016-03-30 09:51:40 -070091 */
92 public void init() {
93 if (!registered) {
Simon Hunt7092cc42016-04-06 18:40:17 -070094 log.debug("{} : Registering with shared model", this);
Simon Hunted804d52016-03-30 09:51:40 -070095 sharedModel.register(this);
Thomas Vachuska92b016b2016-05-20 11:37:57 -070096 currentLayout = layoutService.getRootLayout();
Simon Hunted804d52016-03-30 09:51:40 -070097 registered = true;
98 } else {
99 log.warn("already registered");
100 }
101 }
102
103 /**
Simon Hunt7092cc42016-04-06 18:40:17 -0700104 * Destroys the session; unregistering from the shared model.
Simon Hunted804d52016-03-30 09:51:40 -0700105 */
106 public void destroy() {
Simon Hunt7092cc42016-04-06 18:40:17 -0700107 if (registered) {
108 log.debug("{} : Unregistering from shared model", this);
Simon Hunted804d52016-03-30 09:51:40 -0700109 sharedModel.unregister(this);
Simon Huntf679c4e2016-04-01 17:02:24 -0700110 registered = false;
Simon Hunted804d52016-03-30 09:51:40 -0700111 } else {
112 log.warn("already unregistered");
113 }
114 }
115
116 @Override
117 public String toString() {
Simon Huntf679c4e2016-04-01 17:02:24 -0700118 return String.format("{UiTopoSession for user <%s>}", username);
Simon Hunted804d52016-03-30 09:51:40 -0700119 }
Simon Huntcda9c032016-04-11 10:32:54 -0700120
121 @Override
122 public void event(UiModelEvent event) {
Yuta HIGUCHI28ad09a2016-06-28 17:08:29 -0700123 log.debug("Event received: {}", event);
Simon Huntcda9c032016-04-11 10:32:54 -0700124 // TODO: handle model events from the cache...
125 }
Thomas Vachuska92b016b2016-05-20 11:37:57 -0700126
127 /**
128 * Returns the current layout context.
129 *
130 * @return current topology layout
131 */
132 public UiTopoLayout currentLayout() {
133 return currentLayout;
134 }
135
136 /**
137 * Changes the current layout context to the specified layout.
138 *
139 * @param topoLayout new topology layout context
140 */
141 public void setCurrentLayout(UiTopoLayout topoLayout) {
142 currentLayout = topoLayout;
143 }
144
145 /**
146 * Enables or disables the transmission of topology event update messages.
147 *
148 * @param enabled true if messages should be sent
149 */
150 public void enableEvent(boolean enabled) {
151 messagesEnabled = enabled;
152 }
Simon Huntd5b96732016-07-08 13:22:27 -0700153
154 /**
155 * Returns the list of ONOS instances (cluster members).
156 *
157 * @return the list of ONOS instances
158 */
159 public List<UiClusterMember> getAllInstances() {
160 return sharedModel.getClusterMembers();
161 }
162
163 /**
164 * Returns the region for the specified layout.
165 *
166 * @param layout layout filter
167 * @return region that the layout is based upon
168 */
169 public UiRegion getRegion(UiTopoLayout layout) {
Simon Huntb1ce2602016-07-23 14:04:31 -0700170 RegionId rid = layout.regionId();
171 return rid == null ? sharedModel.getNullRegion() : sharedModel.getRegion(rid);
Simon Huntd5b96732016-07-08 13:22:27 -0700172 }
Simon Hunt977aa052016-07-20 17:08:29 -0700173
174 /**
Simon Hunt98189192016-07-29 19:02:27 -0700175 * Returns the regions/devices that are "peers" to this region. That is,
176 * based on the layout the user is viewing, all the regions/devices that
177 * are associated with layouts that share the same parent layout as this
178 * layout, AND that are linked to an element within this region.
Simon Hunt977aa052016-07-20 17:08:29 -0700179 *
180 * @param layout the layout being viewed
Simon Hunt98189192016-07-29 19:02:27 -0700181 * @return all regions/devices that are "siblings" to this layout's region
Simon Hunt977aa052016-07-20 17:08:29 -0700182 */
Simon Hunt98189192016-07-29 19:02:27 -0700183 public Set<UiNode> getPeerNodes(UiTopoLayout layout) {
184 Set<UiNode> peers = new HashSet<>();
185
186 // first, get the peer regions
187 Set<UiTopoLayout> peerLayouts = layoutService.getPeerLayouts(layout.id());
188 peerLayouts.forEach(l -> {
189 RegionId peerRegion = l.regionId();
190 peers.add(sharedModel.getRegion(peerRegion));
191 });
192
193 // now add the devices that reside in the parent region
194 if (!layout.isRoot()) {
195 UiTopoLayout parentLayout = layoutService.getLayout(layout.parent());
196 getRegion(parentLayout).devices().forEach(peers::add);
197 }
198
199 // TODO: Finally, filter out regions / devices that are not connected
200 // directly to this region by an implicit link
Simon Huntb1ce2602016-07-23 14:04:31 -0700201 return peers;
Simon Hunt977aa052016-07-20 17:08:29 -0700202 }
203
204 /**
205 * Returns the subregions of the region in the specified layout.
206 *
207 * @param layout the layout being viewed
208 * @return all regions that are "contained within" this layout's region
209 */
210 public Set<UiRegion> getSubRegions(UiTopoLayout layout) {
Simon Huntb1ce2602016-07-23 14:04:31 -0700211 Set<UiTopoLayout> kidLayouts = layoutService.getChildren(layout.id());
212 Set<UiRegion> kids = new HashSet<>();
213 kidLayouts.forEach(l -> kids.add(sharedModel.getRegion(l.regionId())));
214 return kids;
Simon Hunt977aa052016-07-20 17:08:29 -0700215 }
216
217 /**
Simon Huntc13082f2016-08-03 21:20:23 -0700218 * Returns the (synthetic) links of the region in the specified layout.
219 *
220 * @param layout the layout being viewed
221 * @return all links that are contained by this layout's region
222 */
223 public List<UiSynthLink> getLinks(UiTopoLayout layout) {
224 return sharedModel.getSynthLinks(layout.regionId());
225 }
226
227 /**
Simon Huntb1ce2602016-07-23 14:04:31 -0700228 * Refreshes the model's internal state.
Simon Hunt977aa052016-07-20 17:08:29 -0700229 */
Simon Huntb1ce2602016-07-23 14:04:31 -0700230 public void refreshModel() {
231 sharedModel.refresh();
Simon Hunt977aa052016-07-20 17:08:29 -0700232 }
Simon Hunted804d52016-03-30 09:51:40 -0700233}