Package org.geomajas.internal.rendering

Source Code of org.geomajas.internal.rendering.StyleFilterImpl

/*
* This is part of Geomajas, a GIS framework, http://www.geomajas.org/.
*
* Copyright 2008-2011 Geosparc nv, http://www.geosparc.com/, Belgium.
*
* The program is available in open source according to the GNU Affero
* General Public License. All contributions in this program are covered
* by the Geomajas Contributors License Agreement. For full licensing
* details, see LICENSE.txt in the project root.
*/

package org.geomajas.internal.rendering;

import org.geomajas.configuration.FeatureStyleInfo;
import org.geomajas.rendering.StyleFilter;
import org.geotools.filter.text.cql2.CQLException;
import org.geotools.filter.text.ecql.ECQL;
import org.opengis.filter.Filter;

/**
* <p>
* Default implementation of the StyleFilter interface. Transforms a <code>LayerStyleDefinition</code> into a
* <code>StyleFilter</code>, by parsing the formula into a <code>Filter</code> object. Only feature that accept this
* filter should recieve the style contained in the style definition.
* </p>
*
* @author Pieter De Graef
*/
public class StyleFilterImpl implements StyleFilter {

  /**
   * The opengis filter object, parsed from the <code>LayerStyleDefinition</code>'s formula.
   */
  private Filter filter;

  /**
   * The style definition object contains styling information, a name, an id, ...
   */
  private FeatureStyleInfo definition;

  // -------------------------------------------------------------------------
  // Constructors:
  // -------------------------------------------------------------------------

  /**
   * The default constructor. Creates an invisible style, with the default ID. Try to avoid this.
   */
  public StyleFilterImpl() {
    this.filter = Filter.INCLUDE;
    FeatureStyleInfo style = new FeatureStyleInfo();
    style.setFillColor("#FFFFFF");
    style.setFillOpacity(0);
    style.setStrokeColor("#FFFFFF");
    style.setStrokeOpacity(0);
    style.setIndex(FeatureStyleInfo.DEFAULT_STYLE_INDEX);
    style.setName("invisible-style");
    style.setFormula("");
    style.setStyleId("default??");
  }

  /**
   * The recommended constructor. Takes a style definition object and tries to parse the formula to an opengis filter
   * object.
   *
   * @param definition
   *            The style definition.
   */
  public StyleFilterImpl(FeatureStyleInfo definition) {
    try {
      String formula = definition.getFormula();
      if (null != formula && formula.length() > 0) {
        this.filter = ECQL.toFilter(definition.getFormula());
      } else {
        this.filter = Filter.INCLUDE;
      }
    } catch (CQLException e) {
      this.filter = Filter.INCLUDE;
    }
    this.definition = definition;
  }

  // -------------------------------------------------------------------------
  // Getters:
  // -------------------------------------------------------------------------

  /**
   * Return the styling definition.
   */
  public FeatureStyleInfo getStyleDefinition() {
    return definition;
  }

  /**
   * Return the filter object associated with the style.
   */
  public Filter getFilter() {
    return filter;
  }
}
TOP

Related Classes of org.geomajas.internal.rendering.StyleFilterImpl

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.