All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arpnetworking.configuration.jackson.JsonNodeLiteralSource Maven / Gradle / Ivy

Go to download

(Re)Aggregates host level statistics across clusters and writes both host and cluster statistics to various destinations.

There is a newer version: 1.13.7
Show newest version
/*
 * Copyright 2014 Groupon.com
 *
 * 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 com.arpnetworking.configuration.jackson;

import com.arpnetworking.logback.annotations.LogValue;
import com.arpnetworking.steno.LogValueMapFactory;
import com.fasterxml.jackson.databind.JsonNode;
import net.sf.oval.constraint.NotNull;

import java.io.IOException;
import java.util.Optional;

/**
 * JsonNode based configuration sourced from a literal string.
 *
 * @author Ville Koskela (ville dot koskela at inscopemetrics dot com)
 */
public final class JsonNodeLiteralSource extends BaseJsonNodeSource {

    @Override
    public Optional getValue(final String... keys) {
        return getValue(getJsonNode(), keys);
    }

    @LogValue
    @Override
    public Object toLogValue() {
        return LogValueMapFactory.builder(this)
                .put("super", super.toLogValue())
                .put("source", _source)
                .put("jsonNode", _jsonNode)
                .build();
    }

    /* package private */ Optional getJsonNode() {
        return _jsonNode;
    }

    private JsonNodeLiteralSource(final Builder builder) {
        super(builder);
        _source = builder._source;

        JsonNode jsonNode = null;
        try {
            jsonNode = _objectMapper.readTree(_source);
        } catch (final IOException e) {
            throw new RuntimeException(e);
        }
        _jsonNode = Optional.ofNullable(jsonNode);
    }

    private final String _source;
    private final Optional _jsonNode;

    /**
     * Builder for JsonNodeLiteralSource.
     */
    public static final class Builder extends BaseJsonNodeSource.Builder {

        /**
         * Public constructor.
         */
        public Builder() {
            super(JsonNodeLiteralSource::new);
        }

        /**
         * Set the source.
         *
         * @param value The source.
         * @return This Builder instance.
         */
        public Builder setSource(final String value) {
            _source = value;
            return this;
        }

        @Override
        protected Builder self() {
            return this;
        }

        @NotNull
        private String _source;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy