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

org.graylog2.rest.models.PaginatedList Maven / Gradle / Ivy

There is a newer version: 6.0.5
Show newest version
/**
 * This file is part of Graylog.
 *
 * Graylog is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Graylog 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
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Graylog.  If not, see .
 */
package org.graylog2.rest.models;

import com.google.common.base.MoreObjects;
import com.google.common.collect.ForwardingList;

import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.Collections;
import java.util.List;
import java.util.Objects;

import javax.annotation.Nonnull;

public class PaginatedList extends ForwardingList {

    private final List delegate;

    private final PaginationInfo paginationInfo;

    public PaginatedList(@Nonnull List delegate, int globalTotal, int page, int perPage) {
        this.delegate = delegate;
        this.paginationInfo = new PaginationInfo(globalTotal, page, perPage);
    }

    @Override
    public List delegate() {
        return delegate;
    }

    public PaginationInfo pagination() {
        return paginationInfo;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (!(o instanceof PaginatedList)) return false;
        PaginatedList that = (PaginatedList) o;
        return Objects.equals(pagination(), that.pagination()) &&
                Objects.equals(delegate(), that.delegate());
    }

    @Override
    public int hashCode() {
        return Objects.hash(delegate(), pagination());
    }

    @Override
    public String toString() {
        return MoreObjects.toStringHelper(this)
                .add("content", delegate)
                .add("pagination_info", pagination())
                .toString();
    }

    public static  PaginatedList emptyList(int page, int perPage) {
        return new PaginatedList<>(Collections.emptyList(), 0, page, perPage);
    }

    public static  PaginatedList singleton(T entry, int page, int perPage) {
        return new PaginatedList(Collections.singletonList(entry), 1, page, perPage);
    }

    @JsonAutoDetect
    public class PaginationInfo {
        @JsonProperty("total")
        private final int globalTotal;

        @JsonProperty("page")
        private final int page;

        @JsonProperty("per_page")
        private final int perPage;

        public PaginationInfo(int globalTotal, int page, int perPage) {
            this.globalTotal = globalTotal;
            this.page = page;
            this.perPage = perPage;
        }

        @JsonProperty("count")
        public int getCount() {
            return delegate().size();
        }

        @Override
        public boolean equals(Object o) {
            if (this == o) return true;
            if (!(o instanceof PaginatedList.PaginationInfo)) return false;
            PaginationInfo that = (PaginationInfo) o;
            return globalTotal == that.globalTotal &&
                    page == that.page &&
                    perPage == that.perPage;
        }

        @Override
        public int hashCode() {
            return Objects.hash(globalTotal, page, perPage);
        }

        @Override
        public String toString() {
            return MoreObjects.toStringHelper(this)
                    .add("globalTotal", globalTotal)
                    .add("page", page)
                    .add("perPage", perPage)
                    .toString();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy