blob: f7d62e37dbcfff197be880acba5fa1d7ef63ff63 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.jclouds.dimensiondata.cloudcontrol.domain;
import com.google.common.base.Optional;
import com.google.common.collect.ImmutableSet;
import org.jclouds.collect.IterableWithMarker;
import org.jclouds.dimensiondata.cloudcontrol.options.PaginationOptions;
import org.jclouds.javax.annotation.Nullable;
import java.util.Iterator;
/**
* Base class for a paginated collection in DimensionData CloudController.
*/
public class PaginatedCollection<T> extends IterableWithMarker<T> {
private final Iterable<T> resources;
/**
* The page number requested by the user or the default page (1) if none supplied.
*/
private final int pageNumber;
/**
* The number of result records in this page.
*/
private final int pageCount;
/**
* The total number of result records matching request criteria.
*/
private final int totalCount;
/**
* The page size used; either specified in the request or the default for the API function being requested.
*/
private final int pageSize;
protected PaginatedCollection(@Nullable Iterable<T> resources, int pageNumber, int pageCount, int totalCount,
int pageSize) {
this.resources = resources != null ? resources : ImmutableSet.<T>of();
this.pageNumber = pageNumber;
this.pageCount = pageCount;
this.totalCount = totalCount;
this.pageSize = pageSize;
}
public Iterable<T> getResources() {
return resources;
}
public int getPageNumber() {
return pageNumber;
}
public int getPageCount() {
return pageCount;
}
public int getTotalCount() {
return totalCount;
}
public int getPageSize() {
return pageSize;
}
@Override
public Iterator<T> iterator() {
return resources.iterator();
}
@Override
public Optional<Object> nextMarker() {
if (totalCount < pageSize) {
return Optional.absent();
}
if ((float) pageNumber < ((float) totalCount / (float) pageSize)) {
return Optional.of(toPaginationOptions(pageNumber + 1));
}
return Optional.absent();
}
private Object toPaginationOptions(Integer pageNumber) {
return PaginationOptions.Builder.pageNumber(pageNumber);
}
}