blob: 4cca68be8b786c8f16b80190ecc5cb3fff867902 [file] [log] [blame]
/*
* Copyright 2018-present Open Networking Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.onosproject.net.config.basics;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.node.ObjectNode;
import org.onosproject.net.HostId;
import org.onosproject.net.config.BaseConfig;
import org.onosproject.net.config.InvalidFieldException;
import org.slf4j.Logger;
import java.util.HashMap;
import java.util.Map;
import static org.slf4j.LoggerFactory.getLogger;
/**
* Configuration to add extra annotations to a host via netcfg subsystem.
*/
public class HostAnnotationConfig
extends BaseConfig<HostId> {
/**
* {@value #CONFIG_KEY} : a netcfg ConfigKey for {@link HostAnnotationConfig}.
*/
public static final String CONFIG_KEY = "annotations";
/**
* JSON key for annotation entries.
* Value is a String.
*/
private static final String ENTRIES = "entries";
private final Logger log = getLogger(getClass());
private static final int KEY_MAX_LENGTH = 1024;
private static final int VALUE_MAX_LENGTH = 1024;
@Override
public boolean isValid() {
JsonNode jsonNode = object.path(ENTRIES);
if (jsonNode.isObject()) {
jsonNode.fields().forEachRemaining(entry -> {
if (entry.getKey().length() > KEY_MAX_LENGTH) {
throw new InvalidFieldException(entry.getKey(),
entry.getKey() + " exceeds maximum length " + KEY_MAX_LENGTH);
}
if (entry.getValue().asText("").length() > VALUE_MAX_LENGTH) {
throw new InvalidFieldException(entry.getKey(),
entry.getKey() + " exceeds maximum length " + VALUE_MAX_LENGTH);
}
});
}
return hasField(ENTRIES) && object.get(ENTRIES).isObject();
}
/**
* Returns annotations to add to a Host.
*
* @return annotations as a map. null value represent key removal request
*/
public Map<String, String> annotations() {
Map<String, String> map = new HashMap<>();
JsonNode jsonNode = object.path(ENTRIES);
if (!jsonNode.isObject()) {
return map;
}
jsonNode.fields().forEachRemaining(entry -> {
String key = entry.getKey();
JsonNode value = entry.getValue();
if (value.isTextual()) {
map.put(key, value.asText());
} else if (value.isNull()) {
map.put(key, null);
} else {
try {
map.put(key, mapper().writeValueAsString(value));
} catch (JsonProcessingException e) {
log.warn("Error processing JSON value for {}.", key, e);
}
}
});
return map;
}
/**
* Sets annotations to add to a Host.
*
* @param replace annotations to be added by this configuration.
* null value represent key removal request
* @return self
*/
public HostAnnotationConfig annotations(Map<String, String> replace) {
ObjectNode anns = object.objectNode();
if (replace != null) {
replace.forEach(anns::put);
}
object.set(ENTRIES, anns);
return this;
}
/**
* Add configuration to set or remove annotation entry.
*
* @param key annotations key
* @param value annotations value. specifying null removes the entry.
* @return self
*/
public HostAnnotationConfig annotation(String key, String value) {
JsonNode ent = object.path(ENTRIES);
ObjectNode obj = (ent.isObject()) ? (ObjectNode) ent : object.objectNode();
obj.put(key, value);
object.set(ENTRIES, obj);
return this;
}
/**
* Remove configuration about specified key.
*
* @param key annotations key
* @return self
*/
public HostAnnotationConfig annotation(String key) {
JsonNode ent = object.path(ENTRIES);
ObjectNode obj = (ent.isObject()) ? (ObjectNode) ent : object.objectNode();
obj.remove(key);
object.set(ENTRIES, obj);
return this;
}
/**
* Create a detached {@link HostAnnotationConfig}.
* <p>
* Note: created instance needs to be initialized by #init(..) before using.
*/
public HostAnnotationConfig() {
super();
}
/**
* Create a detached {@link HostAnnotationConfig} for specified host.
* <p>
* Note: created instance is not bound to NetworkConfigService,
* thus cannot use {@link #apply()}. Must be passed to the service
* using NetworkConfigService#applyConfig
*
* @param hostId Host id
*/
public HostAnnotationConfig(HostId hostId) {
ObjectMapper mapper = new ObjectMapper();
init(hostId, CONFIG_KEY, mapper.createObjectNode(), mapper, null);
}
}