Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.api / src / main / java / org / gvsig / fmap / dal / feature / rule / FeatureRulePolygon.java @ 40559

History | View | Annotate | Download (3.1 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.dal.feature.rule;
25

    
26
import org.gvsig.fmap.dal.exception.DataException;
27
import org.gvsig.fmap.dal.feature.AbstractFeatureRule;
28
import org.gvsig.fmap.dal.feature.EditableFeature;
29
import org.gvsig.fmap.dal.feature.Feature;
30
import org.gvsig.fmap.dal.feature.FeatureStore;
31
import org.gvsig.fmap.geom.Geometry;
32
import org.gvsig.fmap.geom.GeometryLocator;
33
import org.gvsig.fmap.geom.GeometryManager;
34
import org.gvsig.fmap.geom.Geometry.SUBTYPES;
35
import org.gvsig.fmap.geom.Geometry.TYPES;
36
import org.gvsig.fmap.geom.primitive.GeneralPathX;
37
import org.gvsig.fmap.geom.primitive.Surface;
38

    
39

    
40
public class FeatureRulePolygon extends AbstractFeatureRule {
41
        private static GeometryManager geomManager = GeometryLocator.getGeometryManager();
42
        
43
        public FeatureRulePolygon() {
44
                super("RulePolygon", "Ensure orientation of geometry");
45
        }
46

    
47
        public void validate(Feature feature, FeatureStore store)
48
                        throws DataException {
49

    
50
        try {
51
                        Geometry geom = feature.getDefaultGeometry();
52
                        GeneralPathX gp = new GeneralPathX();
53
                        gp.append(geom.getPathIterator(null, geomManager.getFlatness()), true);
54

    
55
                        if (gp.isClosed()) {
56
                                if (gp.isCCW()) {
57
                                        gp.flip();
58
                                        GeometryManager geomManager = GeometryLocator.getGeometryManager();
59
                                        Surface surface = (Surface)geomManager.create(TYPES.SURFACE, SUBTYPES.GEOM2D);
60
                                        surface.setGeneralPath(gp);
61
                                        geom = surface;
62
                                EditableFeature editable = feature.getEditable();
63
                                        editable.setDefaultGeometry(geom);
64
                                        store.update(editable);
65
                                }
66
                }
67
                } catch (Exception e) {
68
                        throw new FeatureRulePolygonException(e, store.getName());
69
                }
70
        }
71

    
72
        public class FeatureRulePolygonException extends DataException {
73

    
74
                /**
75
                 *
76
                 */
77
                private static final long serialVersionUID = -3014970171661713021L;
78
                private final static String MESSAGE_FORMAT = "Can't apply rule  in store %(store)s.";
79
                private final static String MESSAGE_KEY = "_FeatureRulePolygonException";
80

    
81
                public FeatureRulePolygonException(Throwable cause, String store) {
82
                        super(MESSAGE_FORMAT, cause, MESSAGE_KEY, serialVersionUID);
83
                        this.setValue("store", store);
84
                }
85
        }
86

    
87
}