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

com.arpnetworking.configuration.jackson.JsonNodeFileSource 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.arpnetworking.steno.Logger;
import com.arpnetworking.steno.LoggerFactory;
import com.fasterxml.jackson.databind.JsonNode;
import net.sf.oval.constraint.NotNull;

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

/**
 * JsonNode based configuration sourced from a file.
 *
 * @author Ville Koskela (ville dot koskela at inscopemetrics dot com)
 */
public final class JsonNodeFileSource 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("file", _file)
                .put("jsonNode", _jsonNode)
                .build();
    }

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

    private JsonNodeFileSource(final Builder builder) {
        super(builder);
        _file = builder._file;

        JsonNode jsonNode = null;
        if (_file.canRead()) {
            try {
                jsonNode = _objectMapper.readTree(_file);
            } catch (final IOException e) {
                throw new RuntimeException(e);
            }
        } else if (builder._file.exists()) {
            LOGGER.warn()
                    .setMessage("Cannot read file")
                    .addData("file", _file)
                    .log();
        } else {
            LOGGER.debug()
                    .setMessage("File does not exist")
                    .addData("file", _file)
                    .log();
        }
        _jsonNode = Optional.ofNullable(jsonNode);
    }

    private final File _file;
    private final Optional _jsonNode;

    private static final Logger LOGGER = LoggerFactory.getLogger(JsonNodeFileSource.class);

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

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

        /**
         * Set the source File.
         *
         * @param value The source File.
         * @return This Builder instance.
         */
        public Builder setFile(final File value) {
            _file = value;
            return this;
        }

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

        @NotNull
        private File _file;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy