/* * GeoSolutions map - Digital field mapping on Android based devices * Copyright (C) 2013 GeoSolutions (www.geo-solutions.it) * * This program 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. * * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. */ package it.geosolutions.android.map.wms; import java.util.ArrayList; import java.util.HashMap; /** * Utility class to create Chunks of contiguos layers for a source. * @author Lorenzo Natali (lorenzo.natali@geo-solutions.it) * */ public class WMSLayerChunker { public static ArrayList<WMSRequest> createChunkedRequests(ArrayList<WMSLayer> layers){ HashMap<WMSSource, ArrayList<WMSLayer>> chunks = createChunkedHash(layers); ArrayList<WMSRequest> requests = new ArrayList<WMSRequest>(); for(WMSSource s : chunks.keySet()){ requests.add(new WMSRequest(s, chunks.get(s))); } return requests; } /** * Create HashMap of layers grouped by source * @param layers the list of unsorted layers * @return <HashMap> of Layers grouped by source */ public static HashMap<WMSSource, ArrayList<WMSLayer>> createChunkedHash( ArrayList<WMSLayer> layers) { HashMap<WMSSource,ArrayList<WMSLayer>> sources = new HashMap<WMSSource,ArrayList<WMSLayer>>(); for(WMSLayer l: layers){ if(!l.isVisibility()) continue; WMSSource s = l.getSource(); ArrayList<WMSLayer> sameSourceLayers = sources.get(s); if(sameSourceLayers == null){ sameSourceLayers = new ArrayList<WMSLayer>(); sources.put(s,sameSourceLayers); } sameSourceLayers.add(l); } return sources; } }