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 / CrossEnvelopeEvaluator.java @ 44644

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 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.IProjection;
26
import org.gvsig.expressionevaluator.GeometryExpressionBuilder;
27

    
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.fmap.geom.primitive.Envelope;
33
import org.gvsig.tools.evaluator.AbstractEvaluator;
34
import org.gvsig.tools.evaluator.EvaluatorData;
35
import org.gvsig.tools.evaluator.EvaluatorException;
36

    
37
public class CrossEnvelopeEvaluator extends AbstractEvaluator {
38

    
39
    private final Envelope envelope;
40
    private final String geomName;
41
    private final Envelope envelopeTrans;
42
    private final boolean isDefault;
43
    private final GeometryExpressionBuilder builder;
44
    private final IProjection projection;
45
    private final FeatureAttributeDescriptor fad;
46
    
47
    CrossEnvelopeEvaluator(
48
            Envelope envelope,
49
            IProjection envelopeProjection, 
50
            FeatureType featureType,
51
            String geomName,
52
            GeometryExpressionBuilder builder
53
        ) {
54
        fad = (FeatureAttributeDescriptor) featureType.get(geomName);
55

    
56
        this.isDefault = featureType.getDefaultGeometryAttributeName().equals(geomName);
57
        this.envelope = envelope;
58
        this.projection = envelopeProjection;
59
        this.builder = builder;
60
        this.envelopeTrans = envelope;
61
        this.geomName = geomName;
62

    
63
        this.getFieldsInfo().addMatchFieldValue(geomName, envelopeTrans);
64
    }
65

    
66
    @Override
67
    public Object evaluate(EvaluatorData data) throws EvaluatorException {
68
        if (isDefault) {
69
            Feature feature = (Feature) data.getContextValue("feature");
70
            Envelope featureEnvelope = feature.getDefaultEnvelope();
71
            if (featureEnvelope == null) {
72
                return Boolean.FALSE;
73
            }
74
            Boolean r = envelopeTrans.intersects(featureEnvelope);
75
            return r;
76

    
77
        } else {
78
            Geometry geom = (Geometry) data.getDataValue(geomName);
79
            if (geom == null) {
80
                return Boolean.FALSE;
81
            }
82
            return envelopeTrans.intersects(geom.getEnvelope());
83

    
84
        }
85
    }
86

    
87
    @Override
88
    public String getName() {
89
        return "contains in envelope";
90
    }
91

    
92
    @Override
93
    public String getSQL() {
94
        return this.builder.set(
95
                builder.ST_Intersects(
96
                        builder.envelope(envelope, projection),
97
                        builder.ST_Envelope(builder.column(fad.getName()))
98
                )
99
        ).toString();
100
    }
101
}