blob: 9fd99f85bd7fe863739b280f3a096a41da9ed996 [file] [log] [blame]
Thomas Vachuska6d697f12015-03-08 20:59:50 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Thomas Vachuska6d697f12015-03-08 20:59:50 -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.cfg.impl;
17
18import com.google.common.collect.ImmutableSet;
19import com.google.common.collect.Maps;
20import org.apache.felix.scr.annotations.Activate;
21import org.apache.felix.scr.annotations.Component;
22import org.apache.felix.scr.annotations.Deactivate;
23import org.apache.felix.scr.annotations.Reference;
24import org.apache.felix.scr.annotations.ReferenceCardinality;
25import org.apache.felix.scr.annotations.Service;
Aaron Kruglikov66855212015-06-22 12:29:02 -070026import org.onlab.util.AbstractAccumulator;
27import org.onlab.util.Accumulator;
28import org.onlab.util.SharedExecutors;
Thomas Vachuska6d697f12015-03-08 20:59:50 -070029import org.onosproject.cfg.ComponentConfigEvent;
30import org.onosproject.cfg.ComponentConfigService;
31import org.onosproject.cfg.ComponentConfigStore;
32import org.onosproject.cfg.ComponentConfigStoreDelegate;
33import org.onosproject.cfg.ConfigProperty;
34import org.osgi.service.cm.Configuration;
35import org.osgi.service.cm.ConfigurationAdmin;
36import org.slf4j.Logger;
37
38import java.io.IOException;
39import java.io.InputStream;
40import java.util.Dictionary;
41import java.util.Enumeration;
Aaron Kruglikov66855212015-06-22 12:29:02 -070042import java.util.HashSet;
Thomas Vachuska6d697f12015-03-08 20:59:50 -070043import java.util.Hashtable;
Aaron Kruglikov66855212015-06-22 12:29:02 -070044import java.util.List;
Thomas Vachuska6d697f12015-03-08 20:59:50 -070045import java.util.Map;
46import java.util.Set;
47
48import static com.google.common.base.Preconditions.checkArgument;
49import static com.google.common.base.Preconditions.checkNotNull;
Changhoon Yoon541ef712015-05-23 17:18:34 +090050import static org.onosproject.security.AppGuard.checkPermission;
Thomas Vachuska92af89f2015-06-22 15:16:23 -070051import static org.slf4j.LoggerFactory.getLogger;
Changhoon Yoonb856b812015-08-10 03:47:19 +090052import static org.onosproject.security.AppPermission.Type.*;
Changhoon Yoon541ef712015-05-23 17:18:34 +090053
Thomas Vachuska6d697f12015-03-08 20:59:50 -070054
55/**
56 * Implementation of the centralized component configuration service.
57 */
58@Component(immediate = true)
59@Service
60public class ComponentConfigManager implements ComponentConfigService {
61
62 private static final String COMPONENT_NULL = "Component name cannot be null";
63 private static final String PROPERTY_NULL = "Property name cannot be null";
Brian O'Connor57e83e82015-09-22 15:45:37 -070064 private static final String COMPONENT_MISSING = "Component %s is not registered";
65 private static final String PROPERTY_MISSING = "Property %s does not exist for %s";
66
Thomas Vachuska6d697f12015-03-08 20:59:50 -070067
Aaron Kruglikov66855212015-06-22 12:29:02 -070068 //Symbolic constants for use with the accumulator
69 private static final int MAX_ITEMS = 100;
70 private static final int MAX_BATCH_MILLIS = 1000;
71 private static final int MAX_IDLE_MILLIS = 250;
72
Thomas Vachuska6d697f12015-03-08 20:59:50 -070073 private static final String RESOURCE_EXT = ".cfgdef";
74
75 private final Logger log = getLogger(getClass());
76
77 private final ComponentConfigStoreDelegate delegate = new InternalStoreDelegate();
Thomas Vachuska92af89f2015-06-22 15:16:23 -070078 private final InternalAccumulator accumulator = new InternalAccumulator();
Thomas Vachuska6d697f12015-03-08 20:59:50 -070079
80 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
81 protected ComponentConfigStore store;
82
83 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
84 protected ConfigurationAdmin cfgAdmin;
85
86 // Locally maintained catalog of definitions.
Aaron Kruglikov66855212015-06-22 12:29:02 -070087 private final Map<String, Map<String, ConfigProperty>> properties =
Thomas Vachuska6d697f12015-03-08 20:59:50 -070088 Maps.newConcurrentMap();
89
Aaron Kruglikov66855212015-06-22 12:29:02 -070090
Thomas Vachuska6d697f12015-03-08 20:59:50 -070091 @Activate
92 public void activate() {
93 store.setDelegate(delegate);
94 log.info("Started");
95 }
96
97 @Deactivate
98 public void deactivate() {
99 store.unsetDelegate(delegate);
100 log.info("Stopped");
101 }
102
103 @Override
104 public Set<String> getComponentNames() {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900105 checkPermission(CONFIG_READ);
Changhoon Yoon541ef712015-05-23 17:18:34 +0900106
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700107 return ImmutableSet.copyOf(properties.keySet());
108 }
109
110 @Override
111 public void registerProperties(Class<?> componentClass) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900112 checkPermission(CONFIG_WRITE);
Changhoon Yoon541ef712015-05-23 17:18:34 +0900113
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700114 String componentName = componentClass.getName();
115 String resourceName = componentClass.getSimpleName() + RESOURCE_EXT;
116 try (InputStream ris = componentClass.getResourceAsStream(resourceName)) {
117 checkArgument(ris != null, "Property definitions not found at resource %s",
118 resourceName);
119
120 // Read the definitions
121 Set<ConfigProperty> defs = ConfigPropertyDefinitions.read(ris);
122
123 // Produce a new map of the properties and register it.
124 Map<String, ConfigProperty> map = Maps.newConcurrentMap();
125 defs.forEach(p -> map.put(p.name(), p));
126
127 properties.put(componentName, map);
128 loadExistingValues(componentName);
129 } catch (IOException e) {
130 log.error("Unable to read property definitions from resource " + resourceName, e);
131 }
132 }
133
134 @Override
135 public void unregisterProperties(Class<?> componentClass, boolean clear) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900136 checkPermission(CONFIG_WRITE);
Changhoon Yoon541ef712015-05-23 17:18:34 +0900137
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700138 String componentName = componentClass.getName();
139 checkNotNull(componentName, COMPONENT_NULL);
140 Map<String, ConfigProperty> cps = properties.remove(componentName);
Thomas Vachuskafc52fec2015-05-18 19:13:56 -0700141 if (clear && cps != null) {
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700142 cps.keySet().forEach(name -> store.unsetProperty(componentName, name));
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700143 clearExistingValues(componentName);
144 }
145 }
146
147 // Clears any existing values that may have been set.
148 private void clearExistingValues(String componentName) {
149 triggerUpdate(componentName);
150 }
151
152 @Override
153 public Set<ConfigProperty> getProperties(String componentName) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900154 checkPermission(CONFIG_READ);
Changhoon Yoon541ef712015-05-23 17:18:34 +0900155
Brian O'Connor85c29262015-03-10 20:53:43 -0700156 Map<String, ConfigProperty> map = properties.get(componentName);
157 return map != null ? ImmutableSet.copyOf(map.values()) : null;
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700158 }
159
160 @Override
161 public void setProperty(String componentName, String name, String value) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900162 checkPermission(CONFIG_WRITE);
Changhoon Yoon541ef712015-05-23 17:18:34 +0900163
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700164 checkNotNull(componentName, COMPONENT_NULL);
165 checkNotNull(name, PROPERTY_NULL);
Brian O'Connor57e83e82015-09-22 15:45:37 -0700166
167 checkArgument(properties.containsKey(componentName),
168 COMPONENT_MISSING, componentName);
169 checkArgument(properties.get(componentName).containsKey(name),
170 PROPERTY_MISSING, name, componentName);
sivachidambaram subramanian8c9a7012017-04-26 14:59:02 +0530171 checkValidity(componentName, name, value);
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700172 store.setProperty(componentName, name, value);
173 }
174
175 @Override
andreadd106a62015-10-02 13:39:48 -0700176 public void preSetProperty(String componentName, String name, String value) {
177
178 checkPermission(CONFIG_WRITE);
179
180 checkNotNull(componentName, COMPONENT_NULL);
181 checkNotNull(name, PROPERTY_NULL);
sivachidambaram subramanian8c9a7012017-04-26 14:59:02 +0530182 checkValidity(componentName, name, value);
andreadd106a62015-10-02 13:39:48 -0700183 store.setProperty(componentName, name, value);
184 }
185
186 @Override
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700187 public void unsetProperty(String componentName, String name) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900188 checkPermission(CONFIG_WRITE);
Changhoon Yoon541ef712015-05-23 17:18:34 +0900189
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700190 checkNotNull(componentName, COMPONENT_NULL);
191 checkNotNull(name, PROPERTY_NULL);
Brian O'Connor57e83e82015-09-22 15:45:37 -0700192
193 checkArgument(properties.containsKey(componentName),
194 COMPONENT_MISSING, componentName);
195 checkArgument(properties.get(componentName).containsKey(name),
196 PROPERTY_MISSING, name, componentName);
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700197 store.unsetProperty(componentName, name);
198 }
199
200 private class InternalStoreDelegate implements ComponentConfigStoreDelegate {
201
202 @Override
203 public void notify(ComponentConfigEvent event) {
204 String componentName = event.subject();
205 String name = event.name();
206 String value = event.value();
207
208 switch (event.type()) {
209 case PROPERTY_SET:
210 set(componentName, name, value);
211 break;
212 case PROPERTY_UNSET:
213 reset(componentName, name);
214 break;
215 default:
216 break;
217 }
218 }
219 }
220
Thomas Vachuska92af89f2015-06-22 15:16:23 -0700221 // Buffers multiple subsequent configuration updates into one notification.
222 private class InternalAccumulator extends AbstractAccumulator<String>
223 implements Accumulator<String> {
Aaron Kruglikov66855212015-06-22 12:29:02 -0700224
Thomas Vachuska92af89f2015-06-22 15:16:23 -0700225 protected InternalAccumulator() {
226 super(SharedExecutors.getTimer(), MAX_ITEMS, MAX_BATCH_MILLIS, MAX_IDLE_MILLIS);
Aaron Kruglikov66855212015-06-22 12:29:02 -0700227 }
228
229 @Override
Thomas Vachuska92af89f2015-06-22 15:16:23 -0700230 public void processItems(List<String> items) {
231 // Conversion to set removes duplicates
232 Set<String> componentSet = new HashSet<>(items);
Aaron Kruglikov66855212015-06-22 12:29:02 -0700233 componentSet.forEach(ComponentConfigManager.this::triggerUpdate);
Aaron Kruglikov66855212015-06-22 12:29:02 -0700234 }
235 }
236
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700237 // Locates the property in the component map and replaces it with an
238 // updated copy.
239 private void set(String componentName, String name, String value) {
240 Map<String, ConfigProperty> map = properties.get(componentName);
241 if (map != null) {
242 ConfigProperty prop = map.get(name);
243 if (prop != null) {
244 map.put(name, ConfigProperty.setProperty(prop, value));
Aaron Kruglikov66855212015-06-22 12:29:02 -0700245 accumulator.add(componentName);
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700246 return;
247 }
248 }
Naoki Shiota6bc04be2016-01-08 12:02:38 -0800249
250 // If definition doesn't exist in local catalog, cache the property.
251 preSet(componentName, name, value);
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700252 }
253
254 // Locates the property in the component map and replaces it with an
255 // reset copy.
256 private void reset(String componentName, String name) {
257 Map<String, ConfigProperty> map = properties.get(componentName);
258 if (map != null) {
259 ConfigProperty prop = map.get(name);
260 if (prop != null) {
261 map.put(name, ConfigProperty.resetProperty(prop));
Aaron Kruglikov66855212015-06-22 12:29:02 -0700262 accumulator.add(componentName);
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700263 return;
264 }
Thomas Vachuskadb320ab2015-04-22 09:03:33 -0700265 log.warn("Unable to reset non-existent property {} for component {}",
266 name, componentName);
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700267 }
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700268 }
269
Naoki Shiota6bc04be2016-01-08 12:02:38 -0800270 // Stores non-existent property so that loadExistingValues() can load in future.
271 private void preSet(String componentName, String name, String value) {
272 try {
Naoki Shiota4ce97ff2016-01-14 18:45:22 -0800273 Configuration config = cfgAdmin.getConfiguration(componentName, null);
Naoki Shiota6bc04be2016-01-08 12:02:38 -0800274 Dictionary<String, Object> property = config.getProperties();
275 if (property == null) {
276 property = new Hashtable<>();
277 }
278 property.put(name, value);
279 config.update(property);
280 } catch (IOException e) {
281 log.error("Failed to preset configuration for {}", componentName);
282 }
283 }
284
sivachidambaram subramanian8c9a7012017-04-26 14:59:02 +0530285 // Checks whether the value of the specified configuration property is a valid one or not.
286 private void checkValidity(String componentName, String name, String newValue) {
287 Map<String, ConfigProperty> map = properties.get(componentName);
288 if (map == null) {
289 return;
290 }
291 ConfigProperty prop = map.get(name);
292 ConfigProperty.Type type = prop.type();
293 try {
294 switch (type) {
295 case INTEGER:
296 Integer.parseInt(newValue);
297 break;
298 case LONG:
299 Long.parseLong(newValue);
300 break;
301 case FLOAT:
302 Float.parseFloat(newValue);
303 break;
304 case DOUBLE:
305 Double.parseDouble(newValue);
306 break;
307 case BOOLEAN:
308 if (!((newValue != null) && (newValue.equalsIgnoreCase("true") ||
309 newValue.equalsIgnoreCase("false")))) {
310 throw new IllegalArgumentException("Invalid " + type + " value");
311 }
312 break;
313 case STRING:
314 case BYTE:
315 //do nothing
316 break;
317 default:
318 log.warn("Not a valid config property type");
319 break;
320
321 }
322 } catch (NumberFormatException e) {
323 throw new NumberFormatException("Invalid " + type + " value");
324 }
325 }
326
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700327 // Loads existing property values that may have been set.
328 private void loadExistingValues(String componentName) {
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700329 try {
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700330 Configuration cfg = cfgAdmin.getConfiguration(componentName, null);
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700331 Map<String, ConfigProperty> map = properties.get(componentName);
332 Dictionary<String, Object> props = cfg.getProperties();
333 if (props != null) {
334 Enumeration<String> it = props.keys();
335 while (it.hasMoreElements()) {
336 String name = it.nextElement();
337 ConfigProperty p = map.get(name);
sivachidambaram subramanian8c9a7012017-04-26 14:59:02 +0530338 try {
339 if (p != null) {
340 checkValidity(componentName, name, (String) props.get(name));
341 map.put(name, ConfigProperty.setProperty(p, (String) props.get(name)));
342 }
343 } catch (IllegalArgumentException e) {
344 log.warn("Default values will be applied " +
345 "since presetted value is not a valid " + p.type());
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700346 }
347 }
348 }
349 } catch (IOException e) {
350 log.error("Unable to get configuration for " + componentName, e);
351 }
352
353 }
354
355 // FIXME: This should be a slightly deferred execution to allow changing
356 // values just once per component when a number of updates arrive shortly
357 // after each other.
358 private void triggerUpdate(String componentName) {
359 try {
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700360 Configuration cfg = cfgAdmin.getConfiguration(componentName, null);
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700361 Map<String, ConfigProperty> map = properties.get(componentName);
362 Dictionary<String, Object> props = new Hashtable<>();
363 map.values().forEach(p -> props.put(p.name(), p.value()));
364 cfg.update(props);
365 } catch (IOException e) {
366 log.warn("Unable to update configuration for " + componentName, e);
367 }
368 }
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700369}