blob: 01a5b14ca7f0fac019c2cb9ada78db23dd40cf5b [file] [log] [blame]
Simon Huntd2747a02015-04-30 22:41:16 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Simon Huntd2747a02015-04-30 22:41:16 -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 */
16package org.onosproject.ui;
17
18import com.fasterxml.jackson.databind.ObjectMapper;
19import com.fasterxml.jackson.databind.node.ObjectNode;
20
21/**
22 * Abstraction of an entity that handles a specific request from the
23 * user interface client.
24 *
Simon Hunta0ddb022015-05-01 09:53:01 -070025 * @see UiMessageHandler
Simon Huntd2747a02015-04-30 22:41:16 -070026 */
27public abstract class RequestHandler {
28
29 protected static final ObjectMapper MAPPER = new ObjectMapper();
30
31 private final String eventType;
Simon Hunta0ddb022015-05-01 09:53:01 -070032 private UiMessageHandler parent;
Simon Huntd2747a02015-04-30 22:41:16 -070033
34
35 public RequestHandler(String eventType) {
36 this.eventType = eventType;
37 }
38
39 // package private
Simon Hunta0ddb022015-05-01 09:53:01 -070040 void setParent(UiMessageHandler parent) {
Simon Huntd2747a02015-04-30 22:41:16 -070041 this.parent = parent;
42 }
43
44 /**
45 * Returns the event type that this handler handles.
46 *
47 * @return event type
48 */
49 public String eventType() {
50 return eventType;
51 }
52
53 /**
54 * Processes the incoming message payload from the client.
55 *
56 * @param sid message sequence identifier
57 * @param payload request message payload
58 */
Simon Huntc54cd1b2015-05-11 13:43:44 -070059 // TODO: remove sid from signature
Simon Huntd2747a02015-04-30 22:41:16 -070060 public abstract void process(long sid, ObjectNode payload);
61
62
63
64 // ===================================================================
65 // === Convenience methods...
66
67 /**
68 * Returns implementation of the specified service class.
69 *
70 * @param serviceClass service class
71 * @param <T> type of service
72 * @return implementation class
73 * @throws org.onlab.osgi.ServiceNotFoundException if no implementation found
74 */
75 protected <T> T get(Class<T> serviceClass) {
76 return parent.directory().get(serviceClass);
77 }
78
79 /**
80 * Sends a message back to the client.
81 *
82 * @param eventType message event type
83 * @param sid message sequence identifier
84 * @param payload message payload
85 */
Simon Huntda580882015-05-12 20:58:18 -070086 // TODO: remove sid from signature
Simon Huntd2747a02015-04-30 22:41:16 -070087 protected void sendMessage(String eventType, long sid, ObjectNode payload) {
88 parent.connection().sendMessage(eventType, sid, payload);
89 }
90
91 /**
92 * Sends a message back to the client.
93 * Here, the message is preformatted; the assumption is it has its
94 * eventType, sid and payload attributes already filled in.
95 *
96 * @param message the message to send
97 */
98 protected void sendMessage(ObjectNode message) {
99 parent.connection().sendMessage(message);
100 }
101
102 /**
103 * Allows one request handler to pass the event on to another for
104 * further processing.
105 * Note that the message handlers must be defined in the same parent.
106 *
107 * @param eventType event type
108 * @param sid sequence identifier
109 * @param payload message payload
110 */
Simon Huntda580882015-05-12 20:58:18 -0700111 // TODO: remove sid from signature
Simon Huntd2747a02015-04-30 22:41:16 -0700112 protected void chain(String eventType, long sid, ObjectNode payload) {
113 parent.exec(eventType, sid, payload);
114 }
115
116 // ===================================================================
117
118
Simon Huntda580882015-05-12 20:58:18 -0700119 /**
120 * Returns the specified node property as a string.
121 *
122 * @param node message event
123 * @param key property name
124 * @return property as a string
125 */
Simon Huntd2747a02015-04-30 22:41:16 -0700126 protected String string(ObjectNode node, String key) {
127 return JsonUtils.string(node, key);
128 }
129
Simon Huntda580882015-05-12 20:58:18 -0700130 /**
131 * Returns the specified node property as a string, with a default fallback.
132 *
133 * @param node object node
134 * @param key property name
135 * @param defValue fallback value if property is absent
136 * @return property as a string
137 */
Simon Huntd2747a02015-04-30 22:41:16 -0700138 protected String string(ObjectNode node, String key, String defValue) {
139 return JsonUtils.string(node, key, defValue);
140 }
141
142}