Statistics
| Revision:

gvsig-geoprocess / org.gvsig.geoprocess / trunk / org.gvsig.geoprocess / org.gvsig.geoprocess.algorithm / org.gvsig.geoprocess.algorithm.difference / src / main / java / org / gvsig / geoprocess / algorithm / difference / DifferenceAlgorithm.java @ 322

History | View | Annotate | Download (4.56 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2012 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 2
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.geoprocess.algorithm.difference;
25

    
26
import org.gvsig.fmap.dal.exception.DataException;
27
import org.gvsig.fmap.dal.feature.FeatureSet;
28
import org.gvsig.fmap.dal.feature.FeatureStore;
29
import org.gvsig.fmap.dal.feature.FeatureType;
30
import org.gvsig.geoprocess.algorithm.base.core.GeometryOperation;
31
import org.gvsig.geoprocess.algorithm.base.core.ScalableUnionOperation;
32
import org.gvsig.geoprocess.lib.sextante.AbstractSextanteGeoProcess;
33
import org.gvsig.geoprocess.lib.sextante.dataObjects.FlyrVectIVectorLayer;
34

    
35
import es.unex.sextante.core.Sextante;
36
import es.unex.sextante.dataObjects.IVectorLayer;
37
import es.unex.sextante.exceptions.GeoAlgorithmExecutionException;
38
import es.unex.sextante.exceptions.RepeatedParameterNameException;
39
import es.unex.sextante.outputs.OutputVectorLayer;
40

    
41
/**
42
 * Difference algorithm
43
 * @author <a href="mailto:nachobrodin@gmail.com">Nacho Brodin</a>
44
 */
45
public class DifferenceAlgorithm extends AbstractSextanteGeoProcess {
46

    
47
        public static final String  RESULT    = "RESULT";
48
        public static final String  LAYER     = "LAYER";
49
        public static final String  DIF       = "DIF";
50
        public static final String  CHECK     = "CHECK";
51

    
52
        public void defineCharacteristics(){
53
        setName(getTranslation("Difference"));
54
        setGroup(getTranslation("basic_vect_algorithms"));
55
        // setGeneratesUserDefinedRasterOutput(false);
56
                
57
                try {
58
                        m_Parameters.addInputVectorLayer(LAYER, getTranslation("Input_layer"),
59
                                                                                                IVectorLayer.SHAPE_TYPE_WRONG, 
60
                                                                                                true);
61
                        m_Parameters.addInputVectorLayer(DIF, getTranslation("Overlays_layer"),
62
                                                                                                IVectorLayer.SHAPE_TYPE_WRONG, 
63
                                                                                                true);
64
            m_Parameters.addBoolean(CHECK, 
65
                            getTranslation("Selected_geometries_input_layer"), false);
66
                } catch (RepeatedParameterNameException e) {
67
                        Sextante.addErrorToLog(e);
68
                }
69
                addOutputVectorLayer(RESULT, getTranslation("Difference"),
70
                                                                OutputVectorLayer.SHAPE_TYPE_UNDEFINED);
71
        }
72
        
73
        /*
74
         * (non-Javadoc)
75
         * @see es.unex.sextante.core.GeoAlgorithm#processAlgorithm()
76
         */
77
        public boolean processAlgorithm() throws GeoAlgorithmExecutionException {
78
                if(existsOutPutFile(DifferenceAlgorithm.RESULT, 0)) {
79
                    throw new GeoAlgorithmExecutionException(getTranslation("file_exists"));
80
            }
81
                org.gvsig.fmap.geom.Geometry overlayGeometry = null;
82
                IVectorLayer dif = m_Parameters.getParameterValueAsVectorLayer(DIF);
83
                IVectorLayer layer = m_Parameters.getParameterValueAsVectorLayer(LAYER);
84
                boolean selectedGeom = m_Parameters.getParameter(CHECK).getParameterValueAsBoolean();
85
                
86
                try {
87
                        overlayGeometry = ScalableUnionOperation.joinLayerGeometries(dif);
88
                } catch (Exception e) {
89
                        Sextante.addErrorToLog(e);
90
                        return false;
91
                }
92
                
93
                FeatureStore storeLayer = null;
94
                if(layer instanceof FlyrVectIVectorLayer)
95
                        storeLayer = ((FlyrVectIVectorLayer)layer).getFeatureStore();
96
                else
97
                        return false;
98
                
99
                try {
100
                        FeatureSet features = null;
101
                        features = storeLayer.getFeatureSet();
102
                        FeatureType featureType = features.getDefaultFeatureType();
103
            FeatureStore outFeatStore =
104
                buildOutPutStore(featureType, layer.getShapeType(),
105
                    getTranslation("Difference"), RESULT);
106

    
107
                        GeometryOperation operation = new DifferenceOperation(overlayGeometry, this);
108
            operation.setTaskStatus(getStatus());
109
                        operation.computesGeometryOperation(storeLayer, outFeatStore, attrNames, selectedGeom, true);
110
                } catch (DataException e) {
111
                        Sextante.addErrorToLog(e);
112
                        return false;
113
                }
114
                if(getTaskMonitor().isCanceled())
115
                        return false;
116
                return true;
117
        }
118

    
119
}