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

icu.easyj.data.memory.querier.Querier Maven / Gradle / Ivy

/*
 * Copyright 2021 the original author or authors.
 *
 * 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
 *
 *      https://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 icu.easyj.data.memory.querier;

import java.util.ArrayList;
import java.util.List;

import icu.easyj.core.util.CollectionUtils;
import org.springframework.lang.NonNull;

/**
 * @author wangliang181230
 */
public interface Querier {

	/**
	 * Match data
	 *
	 * @param data the data
	 * @param   the data type
	 * @return the boolean
	 */
	 boolean isMatch(D data);

	/**
	 * Do count.
	 *
	 * @param list the list
	 * @param   the data type
	 * @return the count
	 */
	default  int doCount(List list) {
		int count = 0;
		if (!CollectionUtils.isEmpty(list)) {
			for (D t : list) {
				if (this.isMatch(t)) {
					count++;
				}
			}
		}
		return count;
	}

	/**
	 * Do filter.
	 *
	 * @param list the list
	 * @param   the data type
	 * @return the list after filter
	 */
	default  List doFilter(List list) {
		List found = new ArrayList<>();
		if (!CollectionUtils.isEmpty(list)) {
			for (D t : list) {
				if (this.isMatch(t)) {
					found.add(t);
				}
			}
		}
		return found;
	}

	/**
	 * Do sort.
	 *
	 * @param list the list
	 * @param   the data type
	 * @return the list after sort
	 */
	@NonNull
	 List doSort(List list);

	/**
	 * Do paging.
	 *
	 * @param list the list
	 * @param   the data type
	 * @return the list after paging
	 */
	 List doPaging(List list);

	/**
	 * Do query.
	 * doFilter + doSort + doPaging
	 *
	 * @param list the list
	 * @param   the data type
	 * @return the list after query
	 */
	default  List doQuery(List list) {
		if (list == null || list.isEmpty()) {
			return new ArrayList<>();
		}

		// do filter
		list = this.doFilter(list);
		if (CollectionUtils.isEmpty(list)) {
			return list == null ? new ArrayList<>() : list;
		}

		// do sort
		list = this.doSort(list);

		// do paging
		list = this.doPaging(list);

		return list;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy