/** * OrbisGIS is a java GIS application dedicated to research in GIScience. * OrbisGIS is developed by the GIS group of the DECIDE team of the * Lab-STICC CNRS laboratory, see <http://www.lab-sticc.fr/>. * * The GIS group of the DECIDE team is located at : * * Laboratoire Lab-STICC – CNRS UMR 6285 * Equipe DECIDE * UNIVERSITÉ DE BRETAGNE-SUD * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * * OrbisGIS is distributed under GPL 3 license. * * Copyright (C) 2007-2014 CNRS (IRSTV FR CNRS 2488) * Copyright (C) 2015-2017 CNRS (Lab-STICC UMR CNRS 6285) * * This file is part of OrbisGIS. * * OrbisGIS 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. * * OrbisGIS 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 * OrbisGIS. If not, see <http://www.gnu.org/licenses/>. * * For more information, please consult: <http://www.orbisgis.org/> * or contact directly: * info_at_ orbisgis.org */ package org.orbisgis.legend.structure.categorize; import org.orbisgis.coremap.renderer.se.parameter.*; import org.orbisgis.coremap.renderer.se.parameter.real.RealAttribute; import org.orbisgis.coremap.renderer.se.parameter.real.RealParameter; import org.orbisgis.legend.structure.parameter.AbstractAttributeLegend; import org.orbisgis.legend.structure.parameter.ParameterLegend; import org.orbisgis.legend.structure.recode.type.TypeEvent; import org.orbisgis.legend.structure.recode.type.TypeListener; import java.util.ArrayList; import java.util.List; import java.util.Set; import java.util.TreeSet; /** * @author alexis */ public abstract class CategorizedLegend<U> implements AbstractAttributeLegend, ParameterLegend { protected String field = ""; private List<TypeListener> listeners = new ArrayList<TypeListener>(); @Override public ValueReference getValueReference() { SeParameter c = getParameter(); if(c instanceof Categorize){ RealParameter ret = ((Categorize) c).getLookupValue(); if(ret instanceof ValueReference){ return (ValueReference) ret; } else { throw new ClassCastException("We're not working with an authorized Categorize instance"); } } return null; } @Override public String getLookupFieldName() { return getParameter() instanceof Categorize ? getValueReference().getColumnName() : field; } @Override public void setLookupFieldName(String name) { setField(name); } /** * Gets the name of the field on which the analysis is performed. * @return The name of the analyzed field. */ public String getField() { return field; } /** * Sets the name of the field on which the analysis is performed. * @param field The name of the analyzed field. */ public void setField(String field) { this.field = field; SeParameter c = getParameter(); if(c instanceof Categorize){ RealParameter lookupValue = ((Categorize) c).getLookupValue(); if(lookupValue instanceof RealAttribute){ ((RealAttribute) lookupValue).setColumnName(field); } } } /** * Gets the U value associated to the key d. If d is not a valid key in the underlying mapping, this method * returns null. * @param d The key whose associated value is wanted * @return The value associated to {@code d} or null if {@code d} is not a valid key. */ public abstract U get(Double d); /** * Removes the mapping associated to d, if it exists and if it does not let the mapping empty. * @param d The threshold we want to remove. * @return The value of the removed mapping, if any. * @throws IllegalStateException if, for whatever reason, one the key of the mapping appears not to be a literal. */ public abstract U remove(Double d); /** * Put the couple (d,v) in this categorization. * @param d The key * @param val The value */ public abstract void put(Double d, U val); /** * Gets the value associated to d, if any, or to the lower threshold. * @return The value associated to d in the mapping, if d is one of its keys. Otherwise, the returned value * can be expressed as max( k in keys where k < d). */ public abstract U getFromLower(Double d); public Set<Double> getKeys(){ SeParameter c = getParameter(); TreeSet<Double> ret = new TreeSet<Double>(); if(c instanceof Literal){ ret.add(Double.NEGATIVE_INFINITY); } else { Categorize cat = (Categorize) c; int num = ((Categorize) c).getNumClasses(); for(int i = 0; i<num; i++){ try { ret.add(cat.getThreshold(i).getValue(null)); } catch (ParameterException e) { throw new IllegalStateException("We should need additional values to retrieve our thresholds."); } } } return ret; } /** * Adds a listener that will be notified when {@link CategorizedLegend# fireTypeChanged} is called. * @param l The listener that will be added. */ public void addListener(TypeListener l){ listeners.add(l); } /** * Notifies that the actual type of the inner {@code SeParameter} has changed. */ public void fireTypeChanged(){ TypeEvent te = new TypeEvent(this); for(TypeListener tl : listeners){ tl.typeChanged(te); } } /** * Implementation of the visitor pattern. * @param cpv The external visitor. */ public void acceptVisitor(CategorizedParameterVisitor cpv){ cpv.visit(this); } }