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 @ 44644

History | View | Annotate | Download (3.78 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 modify it under
7
 * the terms of the GNU General Public License as published by the Free Software
8
 * Foundation; either version 3 of the License, or (at your option) any later
9
 * version.
10
 *
11
 * This program is distributed in the hope that it will be useful, but WITHOUT
12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13
 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
14
 * details.
15
 *
16
 * You should have received a copy of the GNU General Public License along with
17
 * this program; if not, write to the Free Software Foundation, Inc., 51
18
 * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19
 *
20
 * For any additional information, do not hesitate to contact us at info AT
21
 * gvsig.com, or visit our website www.gvsig.com.
22
 */
23
package org.gvsig.fmap.mapcontext.layers.vectorial;
24

    
25
import org.cresques.cts.ICoordTrans;
26
import org.cresques.cts.IProjection;
27
import org.gvsig.expressionevaluator.GeometryExpressionBuilder;
28
import org.gvsig.fmap.dal.feature.Feature;
29
import org.gvsig.fmap.dal.feature.FeatureAttributeDescriptor;
30
import org.gvsig.fmap.dal.feature.FeatureType;
31
import org.gvsig.fmap.geom.Geometry;
32
import org.gvsig.tools.evaluator.AbstractEvaluator;
33
import org.gvsig.tools.evaluator.EvaluatorData;
34
import org.gvsig.tools.evaluator.EvaluatorException;
35

    
36
public class EqualsGeometryEvaluator extends AbstractEvaluator {
37

    
38
    private final String geomName;
39
    private final Geometry geometry;
40
    private final Geometry geometryTrans;
41
    private final boolean isDefault;
42
    private final GeometryExpressionBuilder builder;
43
    private final IProjection projection;
44
    private final FeatureAttributeDescriptor fad;
45

    
46
    EqualsGeometryEvaluator(
47
            Geometry geometry,
48
            IProjection projection,
49
            FeatureType featureType,
50
            String geomName,
51
            GeometryExpressionBuilder builder
52
    ) {
53
        this.builder = builder;
54
        this.projection = projection;
55
        fad = (FeatureAttributeDescriptor) featureType.get(geomName);
56
        this.isDefault = featureType.getDefaultGeometryAttributeName().equals(geomName);
57
        this.geometry = geometry;
58
        this.geometryTrans = geometry.cloneGeometry();
59

    
60
        IProjection fad_proj = fad.getSRS();
61
        ICoordTrans ct = null;
62

    
63
        if (fad_proj != null && !fad_proj.equals(projection)) {
64
            ct = projection.getCT(fad_proj);
65
        }
66

    
67
        if (ct != null) {
68
            geometryTrans.reProject(ct);
69
        }
70
        this.geomName = geomName;
71

    
72
        this.getFieldsInfo().addMatchFieldValue(geomName, geometryTrans);
73

    
74
    }
75

    
76
    @Override
77
    public Object evaluate(EvaluatorData data) throws EvaluatorException {
78
        try {
79
            Geometry geom;
80
            if (isDefault) {
81
                Feature feature = (Feature) data.getContextValue("feature");
82
                geom = feature.getDefaultGeometry();
83

    
84
            } else {
85
                geom = (Geometry) data.getDataValue(geomName);
86
            }
87
            if (geom == null) {
88
                return Boolean.FALSE;
89
            }
90
            return geometryTrans.equals(geom);
91

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

    
97
    @Override
98
    public String getName() {
99
        return "equals with geometry";
100
    }
101

    
102
    @Override
103
    public String getSQL() {
104
        return this.builder.set(
105
                builder.ST_Equals(
106
                        builder.geometry(geometry, projection),
107
                        builder.column(fad.getName())
108
                )
109
        ).toString();
110
    }
111

    
112
}