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

org.graylog.plugins.views.search.searchtypes.pivot.buckets.TimeUnitInterval Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
/*
 * Copyright (C) 2020 Graylog, Inc.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the Server Side Public License, version 1,
 * as published by MongoDB, Inc.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * Server Side Public License for more details.
 *
 * You should have received a copy of the Server Side Public License
 * along with this program. If not, see
 * .
 */
package org.graylog.plugins.views.search.searchtypes.pivot.buckets;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.google.auto.value.AutoValue;
import org.graylog2.plugin.indexer.searches.timeranges.TimeRange;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

import static com.google.common.base.Preconditions.checkArgument;

@AutoValue
@JsonTypeName(TimeUnitInterval.type)
@JsonDeserialize(builder = TimeUnitInterval.Builder.class)
public abstract class TimeUnitInterval implements Interval {
    public static final String type = "timeunit";
    public static final Pattern TIMEUNIT_PATTERN = Pattern.compile("(?\\d+)(?[smhdwM])");

    @JsonProperty
    public abstract String type();

    @JsonProperty
    public abstract String timeunit();

    @Override
    public DateInterval toDateInterval(TimeRange timerange) {
        return adjustUnitsLongerThanDays(timeunit());
    }

    private DateInterval adjustUnitsLongerThanDays(String timeunit) {
        final Matcher matcher = TIMEUNIT_PATTERN.matcher(timeunit());
        checkArgument(matcher.matches(),
                "Time unit must be {quantity}{unit}, where quantity is a positive number and unit [smhdwM].");
        final int quantity = Integer.parseInt(matcher.group("quantity"));
        final String unit = matcher.group("unit");

        switch (unit) {
            case "s":
            case "m":
            case "h":
            case "d": return new DateInterval(quantity, unit);
            case "w": return quantity == 1 ? new DateInterval(quantity, unit) : DateInterval.days(7 * quantity);
            case "M": return quantity == 1 ? new DateInterval(quantity, unit) : DateInterval.days(30 * quantity);
            default: throw new RuntimeException("Invalid time unit: " + timeunit);
        }
    }

    @AutoValue.Builder
    public abstract static class Builder {
        @JsonProperty("type")
        public abstract Builder type(String type);

        @JsonProperty("timeunit")
        public abstract Builder timeunit(String timeunit);

        abstract TimeUnitInterval autoBuild();
        public TimeUnitInterval build() {
            final TimeUnitInterval interval = autoBuild();
            final Matcher matcher = TIMEUNIT_PATTERN.matcher(interval.timeunit());
            checkArgument(matcher.matches(),
                    "Time unit must be {quantity}{unit}, where quantity is a positive number and unit [smhdwM].");

            final int quantity = Integer.parseInt(matcher.group("quantity"), 10);
            checkArgument(quantity > 0,
                    "Time unit's value must be a positive number, greater than zero.");

            return interval;
        }

        @JsonCreator
        public static Builder builder() {
            return new AutoValue_TimeUnitInterval.Builder().type(type);
        }

        @JsonCreator
        public static Builder createForLegacySingleString(String timeunit) {
            return builder().timeunit(timeunit);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy