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

com.holonplatform.vaadin7.internal.data.DefaultItemDataProvider Maven / Gradle / Ivy

/*
 * Copyright 2016-2017 Axioma srl.
 * 
 * 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.holonplatform.vaadin7.internal.data;

import java.util.stream.Stream;

import com.holonplatform.core.exceptions.DataAccessException;
import com.holonplatform.core.internal.utils.ObjectUtils;
import com.holonplatform.core.query.QueryConfigurationProvider;
import com.holonplatform.vaadin7.data.ItemDataProvider;
import com.holonplatform.vaadin7.data.ItemRefresher;
import com.holonplatform.vaadin7.data.ItemSetCounter;
import com.holonplatform.vaadin7.data.ItemSetLoader;

/**
 * Default {@link ItemDataProvider} implementation.
 * 
 * @param  Item data type
 *
 * @since 5.0.0
 */
public class DefaultItemDataProvider implements ItemDataProvider {

	private static final long serialVersionUID = -4073530931433433105L;

	private final ItemSetCounter counter;
	private final ItemSetLoader loader;
	private final ItemRefresher refresher;

	/**
	 * Constructor
	 * @param counter Item set counter (not null)
	 * @param loader Item set loader (not null)
	 */
	public DefaultItemDataProvider(ItemSetCounter counter, ItemSetLoader loader) {
		this(counter, loader, null);
	}

	/**
	 * Constructor
	 * @param counter Item set counter (not null)
	 * @param loader Item set loader (not null)
	 * @param refresher Item refresher (optional)
	 */
	public DefaultItemDataProvider(ItemSetCounter counter, ItemSetLoader loader, ItemRefresher refresher) {
		super();
		ObjectUtils.argumentNotNull(counter, "ItemSetCounter must be not null");
		ObjectUtils.argumentNotNull(loader, "ItemSetLoader must be not null");
		this.counter = counter;
		this.loader = loader;
		this.refresher = refresher;
	}

	/*
	 * (non-Javadoc)
	 * @see com.holonplatform.vaadin.data.ItemSetCounter#size(com.holonplatform.core.query.QueryConfigurationProvider)
	 */
	@Override
	public long size(QueryConfigurationProvider configuration) throws DataAccessException {
		return counter.size(configuration);
	}

	/*
	 * (non-Javadoc)
	 * @see com.holonplatform.vaadin.data.ItemSetLoader#load(com.holonplatform.core.query.QueryConfigurationProvider,
	 * int, int)
	 */
	@Override
	public Stream load(QueryConfigurationProvider configuration, int offset, int limit)
			throws DataAccessException {
		return loader.load(configuration, offset, limit);
	}

	/*
	 * (non-Javadoc)
	 * @see com.holonplatform.vaadin.data.ItemDataProvider#refresh(java.lang.Object)
	 */
	@Override
	public ITEM refresh(ITEM item) throws UnsupportedOperationException, DataAccessException {
		if (refresher == null) {
			throw new UnsupportedOperationException();
		}
		return refresher.refresh(item);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy