org.glowroot.agent.config.PropertyDescriptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glowroot-agent-it-harness Show documentation
Show all versions of glowroot-agent-it-harness Show documentation
Glowroot Agent Integration Test Harness
/*
* Copyright 2012-2018 the original author or authors.
*
* 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.glowroot.agent.config;
import java.util.List;
import org.glowroot.agent.shaded.com.fasterxml.jackson.annotation.JsonIgnore;
import org.glowroot.agent.shaded.com.fasterxml.jackson.annotation.JsonProperty;
import org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.com.google.common.collect.ImmutableList;
import org.glowroot.agent.shaded.org.checkerframework.checker.nullness.qual.Nullable;
import org.immutables.value.Value;
import org.glowroot.agent.shaded.org.glowroot.agent.shaded.org.slf4j.Logger;
import org.glowroot.agent.shaded.org.glowroot.agent.shaded.org.slf4j.LoggerFactory;
import org.glowroot.agent.shaded.org.glowroot.common.config.PropertyValue;
import org.glowroot.agent.shaded.org.glowroot.common.config.PropertyValue.PropertyType;
@Value.Immutable
public abstract class PropertyDescriptor {
private static final Logger logger = LoggerFactory.getLogger(PropertyDescriptor.class);
public abstract String name();
public abstract PropertyType type();
@JsonProperty("default")
public abstract @Nullable PropertyValue defaultValue();
public abstract String label();
@Value.Default
public String checkboxLabel() {
return "";
}
@Value.Default
public String description() {
return "";
}
@JsonIgnore
PropertyValue getValidatedNonNullDefaultValue() {
PropertyValue defaultValue = defaultValue();
if (defaultValue == null) {
return getDefaultValue(type());
}
Object value = defaultValue.value();
if (value == null) {
// this actually shouldn't occur since jackson unmarshals null defaultValue as null
// as opposed to new PropertyValue(null)
return getDefaultValue(type());
}
if (isValidType(value, type())) {
return new PropertyValue(value);
} else {
logger.warn("invalid default value for plugin property: {}", name());
return getDefaultValue(type());
}
}
static PropertyValue getDefaultValue(PropertyType type) {
switch (type) {
case BOOLEAN:
return new PropertyValue(false);
case DOUBLE:
return new PropertyValue(null);
case STRING:
return new PropertyValue("");
case LIST:
return new PropertyValue(ImmutableList.of());
default:
throw new AssertionError("Unexpected property type: " + type);
}
}
static boolean isValidType(Object value, PropertyType type) {
switch (type) {
case BOOLEAN:
return value instanceof Boolean;
case STRING:
return value instanceof String;
case DOUBLE:
return value instanceof Double;
case LIST:
return value instanceof List;
default:
throw new AssertionError("Unexpected property type: " + type);
}
}
}