Statistics
| Revision:

svn-gvsig-desktop / trunk / extensions / extGeoProcessing / src / com / iver / gvsig / geoprocessing / MergeGeoprocessController.java @ 4820

History | View | Annotate | Download (4.48 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: MergeGeoprocessController.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

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

    
70
public class MergeGeoprocessController extends AbstractGeoprocessController {
71
        private GeoProcessingMergePanel geoProcessingMergePanel;
72
        private MergeGeoprocess merge;
73
        
74
        public void setView(IGeoprocessPanel viewPanel) {
75
                this.geoProcessingMergePanel = 
76
                        (GeoProcessingMergePanel) viewPanel;
77
        }
78

    
79
        public IGeoprocess getGeoprocess() {
80
                return merge;
81
        }
82

    
83
        public boolean launchGeoprocess() {
84
                FLyrVect[] inputLayers = geoProcessingMergePanel.getSelectedLayers();
85
                FLayers layers = geoProcessingMergePanel.getFLayers();
86
                FLyrVect schemaToPreserve = geoProcessingMergePanel.getSelectedSchema();
87
                File outputFile = geoProcessingMergePanel.getOutputFile();
88
                if (outputFile == null || (outputFile.getAbsolutePath().length() == 0)) {
89
                        String error = PluginServices.getText(this, "Error_entrada_datos");
90
                        String errorDescription = PluginServices.getText(this, "Error_seleccionar_resultado");
91
                        geoProcessingMergePanel.error(errorDescription, error);
92
                        return false;
93
                }
94
                MergeGeoprocess merge = new MergeGeoprocess();
95
                merge.setInputLayers(inputLayers);
96
                merge.setOutputSchemaLayer(schemaToPreserve);
97
                
98
                SHPLayerDefinition definition = (SHPLayerDefinition) merge
99
                                                                                .createLayerDefinition();
100
                definition.setFile(outputFile);
101
                ShpSchemaManager schemaManager = new ShpSchemaManager();
102
                ShpWriter writer = null;
103
                try {
104
                        schemaManager.createOrAlterSchema(definition);
105
                        writer = new ShpWriter();
106
                        writer.setFile(outputFile);
107
                        writer.initialize(definition);
108
                } catch (Exception e) {
109
                        String error = PluginServices.getText(this, "Error_escritura_resultados");
110
                        String errorDescription = PluginServices.getText(this, "Error_preparar_escritura_resultados");
111
                        geoProcessingMergePanel.error(errorDescription, error);
112
                        return false;
113
                }
114
                merge.setResultLayerProperties(writer, schemaManager);
115
                try {
116
                        merge.checkPreconditions();
117
                } catch (GeoprocessException e) {
118
                        String error = PluginServices.getText(this, "Error_chequeando_precondiciones");
119
                        String errorDescription = PluginServices.getText(this, "Error_chequeo_tipo_geometria");
120
                        geoProcessingMergePanel.error(errorDescription, error);
121
                        return false;
122
                }
123
                IMonitorableTask task1 = merge.createTask();
124
                AddResultLayerTask task2 = new AddResultLayerTask(merge);
125
                task2.setLayers(layers);
126
                MonitorableDecorator globalTask = new MonitorableDecorator(task1,
127
                                task2);
128
                if (globalTask.preprocess())
129
                        PluginServices.cancelableBackgroundExecution(globalTask);
130
                return true;
131
        }
132

    
133
}
134