Statistics
| Revision:

svn-gvsig-desktop / trunk / extensions / extGeoProcessing / src / com / iver / gvsig / geoprocessing / IntersectionGeoprocessController.java @ 4818

History | View | Annotate | Download (4.97 KB)

1
/*
2
 * Created on 11-abr-2006
3
 *
4
 * gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
5
 *
6
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
7
 *
8
 * This program is free software; you can redistribute it and/or
9
 * modify it under the terms of the GNU General Public License
10
 * as published by the Free Software Foundation; either version 2
11
 * of the License, or (at your option) any later version.
12
 *
13
 * This program is distributed in the hope that it will be useful,
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 * GNU General Public License for more details.
17
 *
18
 * You should have received a copy of the GNU General Public License
19
 * along with this program; if not, write to the Free Software
20
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
21
 *
22
 * For more information, contact:
23
 *
24
 *  Generalitat Valenciana
25
 *   Conselleria d'Infraestructures i Transport
26
 *   Av. Blasco Ib??ez, 50
27
 *   46010 VALENCIA
28
 *   SPAIN
29
 *
30
 *      +34 963862235
31
 *   gvsig@gva.es
32
 *      www.gvsig.gva.es
33
 *
34
 *    or
35
 *
36
 *   IVER T.I. S.A
37
 *   Salamanca 50
38
 *   46005 Valencia
39
 *   Spain
40
 *
41
 *   +34 963163400
42
 *   dac@iver.es
43
 */
44
/* CVS MESSAGES:
45
*
46
* $Id: IntersectionGeoprocessController.java 4818 2006-04-11 17:55:51Z azabala $
47
* $Log$
48
* Revision 1.1  2006-04-11 17:55:51  azabala
49
* primera version en cvs
50
*
51
*
52
*/
53
package com.iver.gvsig.geoprocessing;
54

    
55
import java.io.File;
56
import java.util.HashMap;
57

    
58
import com.iver.andami.PluginServices;
59
import com.iver.cit.gvsig.fmap.drivers.SHPLayerDefinition;
60
import com.iver.cit.gvsig.fmap.edition.ShpSchemaManager;
61
import com.iver.cit.gvsig.fmap.edition.writers.shp.ShpWriter;
62
import com.iver.cit.gvsig.fmap.layers.FLayers;
63
import com.iver.cit.gvsig.fmap.layers.FLyrVect;
64
import com.iver.gvsig.geoprocessing.gui.operationpanels.GeoProcessingOverlayPanel;
65
import com.iver.gvsig.geoprocessing.impl.intersection.IntersectionGeoprocess;
66
import com.iver.gvsig.geoprocessing.model.GeoprocessException;
67
import com.iver.gvsig.geoprocessing.model.IGeoprocess;
68
import com.iver.utiles.swing.threads.IMonitorableTask;
69
import com.iver.utiles.swing.threads.MonitorableDecorator;
70

    
71
public class IntersectionGeoprocessController extends
72
                AbstractGeoprocessController {
73

    
74
        
75
        private GeoProcessingOverlayPanel geoProcessingIntersectPanel;
76
        private IntersectionGeoprocess intersection;
77
        
78
        public void setView(IGeoprocessPanel viewPanel) {
79
                this.geoProcessingIntersectPanel = 
80
                        (GeoProcessingOverlayPanel) viewPanel;
81
        }
82

    
83
        public IGeoprocess getGeoprocess() {
84
                return intersection;
85
        }
86

    
87
        public boolean launchGeoprocess() {
88
                FLyrVect inputLayer = geoProcessingIntersectPanel.getInputLayer();
89
                FLayers layers = geoProcessingIntersectPanel.getFLayers();
90
                FLyrVect overlayLayer = geoProcessingIntersectPanel.getSecondLayer();
91
                File outputFile = geoProcessingIntersectPanel.getOutputFile();
92
                if (outputFile == null || (outputFile.getAbsolutePath().length() == 0)) {
93
                        String error = PluginServices.getText(this, "Error_entrada_datos");
94
                        String errorDescription = PluginServices.getText(this, "Error_seleccionar_resultado");
95
                        geoProcessingIntersectPanel.error(errorDescription, error);
96
                        return false;
97
                }
98

    
99
                IntersectionGeoprocess intersection = new IntersectionGeoprocess(
100
                                inputLayer);
101
                intersection.setSecondOperand(overlayLayer);
102
                SHPLayerDefinition definition = (SHPLayerDefinition) intersection
103
                                .createLayerDefinition();
104
                definition.setFile(outputFile);
105
                ShpSchemaManager schemaManager = new ShpSchemaManager();
106
                ShpWriter writer;
107
                try {
108
                        writer = getShpWriter(definition);
109
                } catch (Exception e1) {
110
                        String error = PluginServices.getText(this, "Error_escritura_resultados");
111
                        String errorDescription = PluginServices.getText(this, "Error_preparar_escritura_resultados");
112
                        geoProcessingIntersectPanel.error(errorDescription, error);
113
                        return false;
114
                } 
115
        
116
                intersection.setResultLayerProperties(writer, schemaManager);
117
                HashMap params = new HashMap();
118
                boolean onlySelectedFirst = geoProcessingIntersectPanel
119
                                .onlyFirstLayerSelected();
120
                boolean onlySelectedSecond = geoProcessingIntersectPanel
121
                                .onlySecondLayerSelected();
122
                Boolean first = new Boolean(onlySelectedFirst);
123
                params.put("firstlayerselection", first);
124

    
125
                Boolean second = new Boolean(onlySelectedSecond);
126
                params.put("secondlayerselection", second);
127

    
128
                try {
129
                        intersection.setParameters(params);
130
                        intersection.checkPreconditions();
131
                        IMonitorableTask task1 = intersection.createTask();
132
                        if(task1 == null){
133
                                return false;
134
                        }
135
                        AddResultLayerTask task2 = new AddResultLayerTask(intersection);
136
                        task2.setLayers(layers);
137
                        MonitorableDecorator globalTask = new MonitorableDecorator(task1,
138
                                        task2);
139
                        if (globalTask.preprocess())
140
                                PluginServices.cancelableBackgroundExecution(globalTask);
141
                } catch (GeoprocessException e) {
142
                        String error = PluginServices.getText(this, "Error_ejecucion");
143
                        String errorDescription = PluginServices.getText(this, "Error_fallo_geoproceso");
144
                        geoProcessingIntersectPanel.error(errorDescription, error);
145
                        return false;
146
                }
147
                return true;
148
        }
149

    
150
}
151