/* * Copyright 2009-2011 Prime Technology. * * 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 org.primefaces.examples.view; import java.util.ArrayList; import java.util.Collections; import java.util.Iterator; import java.util.List; import java.util.Map; import org.primefaces.examples.domain.Car; import org.primefaces.model.LazyDataModel; import org.primefaces.model.SortOrder; /** * Dummy implementation of LazyDataModel that uses a list to mimic a real datasource like a database. */ public class LazyCarDataModel extends LazyDataModel<Car> { private List<Car> datasource; public LazyCarDataModel(List<Car> datasource) { this.datasource = datasource; } @Override public Car getRowData(String rowKey) { for(Car car : datasource) { if(car.getModel().equals(rowKey)) return car; } return null; } @Override public Object getRowKey(Car car) { return car.getModel(); } @Override public List<Car> load(int first, int pageSize, String sortField, SortOrder sortOrder, Map<String,Object> filters) { List<Car> data = new ArrayList<Car>(); //filter for(Car car : datasource) { boolean match = true; if (filters != null) { for (Iterator<String> it = filters.keySet().iterator(); it.hasNext();) { try { String filterProperty = it.next(); Object filterValue = filters.get(filterProperty); String fieldValue = String.valueOf(car.getClass().getField(filterProperty).get(car)); if(filterValue == null || fieldValue.startsWith(filterValue.toString())) { match = true; } else { match = false; break; } } catch(Exception e) { match = false; } } } if(match) { data.add(car); } } //sort if(sortField != null) { Collections.sort(data, new LazySorter(sortField, sortOrder)); } //rowCount int dataSize = data.size(); this.setRowCount(dataSize); //paginate if(dataSize > pageSize) { try { return data.subList(first, first + pageSize); } catch(IndexOutOfBoundsException e) { return data.subList(first, first + (dataSize % pageSize)); } } else { return data; } } }