Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.mapcontext / org.gvsig.fmap.mapcontext.api / src / main / java / org / gvsig / fmap / mapcontext / layers / vectorial / EqualsGeometryEvaluator.java @ 40559

History | View | Annotate | Download (3.62 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
package org.gvsig.fmap.mapcontext.layers.vectorial;
25

    
26
import org.cresques.cts.ICoordTrans;
27
import org.cresques.cts.IProjection;
28
import org.gvsig.fmap.dal.exception.DataEvaluatorRuntimeException;
29
import org.gvsig.fmap.dal.feature.Feature;
30
import org.gvsig.fmap.dal.feature.FeatureAttributeDescriptor;
31
import org.gvsig.fmap.dal.feature.FeatureType;
32
import org.gvsig.fmap.geom.Geometry;
33
import org.gvsig.fmap.geom.operation.GeometryOperationException;
34
import org.gvsig.fmap.geom.operation.GeometryOperationNotSupportedException;
35
import org.gvsig.tools.evaluator.AbstractEvaluator;
36
import org.gvsig.tools.evaluator.EvaluatorData;
37
import org.gvsig.tools.evaluator.EvaluatorException;
38
/**
39
 *
40
 * @author Vicente Caballero Navarro
41
 *
42
 */
43
public class EqualsGeometryEvaluator extends AbstractEvaluator {
44

    
45
        private String geomName;
46
        private Geometry geometry;
47
        private String geometryWKT = null;
48
        private Geometry geometryTrans;
49
        private String srs;
50
        private boolean isDefault;
51

    
52
        public EqualsGeometryEvaluator(Geometry geometry,
53
                        IProjection projection, FeatureType featureType,
54
                        String geomName) {
55
                FeatureAttributeDescriptor fad = (FeatureAttributeDescriptor) featureType
56
                                .get(geomName);
57
                this.isDefault = featureType.getDefaultGeometryAttributeName().equals(
58
                                geomName);
59
                this.geometry = geometry;
60
                this.geometryTrans = geometry.cloneGeometry();
61
                this.srs = projection.getAbrev();
62
                
63
                IProjection fad_proj = fad.getSRS();
64
                ICoordTrans ct = null;
65
                
66
                if (fad_proj != null && !fad_proj.equals(projection)) {
67
                    ct = projection.getCT(fad_proj);
68
                }
69

    
70
                if (ct != null) {
71
                        geometryTrans.reProject(ct);
72
                }
73
                this.geomName = geomName;
74

    
75
                this.getFieldsInfo().addMatchFieldValue(geomName, geometryTrans);
76

    
77
        }
78

    
79
        public Object evaluate(EvaluatorData data) throws EvaluatorException {
80
                try {
81
                        Geometry geom = null;
82
                        if (isDefault) {
83
                                Feature feature = (Feature) data.getContextValue("feature");
84
                                geom =feature.getDefaultGeometry();
85

    
86
                        } else {
87
                                geom = (Geometry) data.getDataValue(geomName);
88
                        }
89
                        return new Boolean(geometryTrans.equals(geom));
90

    
91
                } catch (Exception e) {
92
                        throw new EvaluatorException(e);
93
                }
94
        }
95

    
96
        public String getName() {
97
                return "equals with geometry";
98
        }
99

    
100
        public String getSQL() {
101
                if (geometryWKT == null) {
102
                        try {
103
                                geometryWKT = geometry.convertToWKT();
104
                        } catch (GeometryOperationNotSupportedException e) {
105
                                throw new DataEvaluatorRuntimeException(e);
106
                        } catch (GeometryOperationException e) {
107
                                throw new DataEvaluatorRuntimeException(e);
108
                        }
109
                }
110
                return " ST_equals(ST_GeomFromText('" + geometryWKT + "', " + "'"
111
                                + srs + "'" + "), " + geomName + ") ";
112
        }
113

    
114
}