/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2008 - 2009, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. */ package org.geotoolkit.ogc.xml.v110; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.geotoolkit.gml.xml.v311.DirectPositionType; import org.geotoolkit.gml.xml.v311.EnvelopeType; import org.geotoolkit.gml.xml.v311.EnvelopeWithTimePeriodType; import org.opengis.filter.FilterVisitor; import org.opengis.filter.expression.Expression; import org.opengis.filter.spatial.BBOX; /** * <p>Java class for BBOXType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="BBOXType"> * <complexContent> * <extension base="{http://www.opengis.net/ogc}SpatialOpsType"> * <sequence> * <element name="PropertyName" type="{http://www.opengis.net/ogc}PropertyNameType" minOccurs="0"/> * <choice> * <element ref="{http://www.opengis.net/gml}Envelope"/> * <element ref="{http://www.opengis.net/gml}EnvelopeWithTimePeriod"/> * </choice> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BBOXType", propOrder = { "propertyName", "envelope", "envelopeWithTimePeriod" }) public class BBOXType extends SpatialOpsType implements BBOX { private static final String DEFAULT_SRS = "EPSG:4326"; @XmlElement(name = "PropertyName") private String propertyName; @XmlElement(name = "Envelope", namespace = "http://www.opengis.net/gml") private EnvelopeType envelope; @XmlElement(name = "EnvelopeWithTimePeriod", namespace = "http://www.opengis.net/gml") private EnvelopeWithTimePeriodType envelopeWithTimePeriod; /** * An empty constructor used by JAXB */ public BBOXType() { } /** * build a new BBox with an envelope. */ public BBOXType(final String propertyName, final double minx, final double miny, final double maxx, final double maxy, String srs) { this.propertyName = propertyName; DirectPositionType lower = new DirectPositionType(minx, miny); DirectPositionType upper = new DirectPositionType(maxx, maxy); if (srs == null) { // In the case of an empty crs, use the default one. srs = DEFAULT_SRS; } this.envelope = new EnvelopeType(null, lower, upper, srs); } public BBOXType(final BBOXType that) { if (that != null) { this.propertyName = that.propertyName; if (that.envelope != null) { this.envelope = new EnvelopeType(envelope); } if (that.envelopeWithTimePeriod != null) { this.envelopeWithTimePeriod = new EnvelopeWithTimePeriodType(that.envelopeWithTimePeriod); } } } /** * Gets the value of the propertyName property. */ @Override public String getPropertyName() { return propertyName; } /** * Gets the value of the envelope property. */ public EnvelopeType getEnvelope() { return envelope; } /** * Gets the value of the envelopeWithTimePeriod property. */ public EnvelopeWithTimePeriodType getEnvelopeWithTimePeriod() { return envelopeWithTimePeriod; } @Override public String toString() { StringBuilder s = new StringBuilder(super.toString()); s.append("PropertyName=").append(s).append('\n'); if (envelope != null) { s.append("envelope= ").append(envelope.toString()).append('\n'); } else { s.append("envelope null").append('\n'); } if (envelopeWithTimePeriod != null) { s.append("envelope with time period= ").append(envelopeWithTimePeriod.toString()).append('\n'); } else { s.append("envelope with time null").append('\n'); } return s.toString(); } @Override public String getSRS() { if (envelope != null) { return (envelope.getSrsName() != null) ? envelope.getSrsName() : DEFAULT_SRS; } else if (envelopeWithTimePeriod != null) { return (envelopeWithTimePeriod.getSrsName() != null) ? envelopeWithTimePeriod.getSrsName() : DEFAULT_SRS; } return null; } @Override public double getMinX() { DirectPositionType pos = null; if (envelope != null) { pos = envelope.getLowerCorner(); } else if (envelopeWithTimePeriod != null) { pos = envelopeWithTimePeriod.getLowerCorner(); } if (pos != null && pos.getValue() != null && pos.getValue().size() > 1) { return pos.getValue().get(0); } return -1; } @Override public double getMinY() { DirectPositionType pos = null; if (envelope != null) { pos = envelope.getLowerCorner(); } else if (envelopeWithTimePeriod != null) { pos = envelopeWithTimePeriod.getLowerCorner(); } if (pos != null && pos.getValue() != null && pos.getValue().size() > 1) { return pos.getValue().get(1); } return -1; } @Override public double getMaxX() { DirectPositionType pos = null; if (envelope != null) { pos = envelope.getUpperCorner(); } else if (envelopeWithTimePeriod != null) { pos = envelopeWithTimePeriod.getUpperCorner(); } if (pos != null && pos.getValue() != null && pos.getValue().size() > 1) { return pos.getValue().get(0); } return -1; } @Override public double getMaxY() { DirectPositionType pos = null; if (envelope != null) { pos = envelope.getUpperCorner(); } else if (envelopeWithTimePeriod != null) { pos = envelopeWithTimePeriod.getUpperCorner(); } if (pos != null && pos.getValue() != null && pos.getValue().size() > 1) { return pos.getValue().get(1); } return -1; } @Override public Expression getExpression1() { return new PropertyNameType(propertyName); } @Override public Expression getExpression2() { if (envelope != null) { return new LiteralType(envelope); } else if (envelopeWithTimePeriod != null) { return new LiteralType(envelopeWithTimePeriod); } return null; } @Override public boolean evaluate(final Object object) { throw new UnsupportedOperationException("Not supported yet."); } @Override public Object accept(final FilterVisitor visitor, final Object extraData) { return visitor.visit(this,extraData); } @Override public SpatialOpsType getClone() { return new BBOXType(this); } @Override public boolean equals(Object obj) { if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } final BBOXType other = (BBOXType) obj; if ((this.propertyName == null) ? (other.propertyName != null) : !this.propertyName.equals(other.propertyName)) { return false; } if (this.envelope != other.envelope && (this.envelope == null || !this.envelope.equals(other.envelope))) { return false; } if (this.envelopeWithTimePeriod != other.envelopeWithTimePeriod && (this.envelopeWithTimePeriod == null || !this.envelopeWithTimePeriod.equals(other.envelopeWithTimePeriod))) { return false; } return true; } @Override public int hashCode() { int hash = 7; hash = 13 * hash + (this.propertyName != null ? this.propertyName.hashCode() : 0); hash = 13 * hash + (this.envelope != null ? this.envelope.hashCode() : 0); hash = 13 * hash + (this.envelopeWithTimePeriod != null ? this.envelopeWithTimePeriod.hashCode() : 0); return hash; } }