Statistics
| Revision:

root / trunk / applications / appgvSIG / src / com / iver / cit / gvsig / ProjectExtension.java @ 9212

History | View | Annotate | Download (23 KB)

1 1103 fjp
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 *
19
 * For more information, contact:
20
 *
21
 *  Generalitat Valenciana
22
 *   Conselleria d'Infraestructures i Transport
23
 *   Av. Blasco Ib??ez, 50
24
 *   46010 VALENCIA
25
 *   SPAIN
26
 *
27
 *      +34 963862235
28
 *   gvsig@gva.es
29
 *      www.gvsig.gva.es
30
 *
31
 *    or
32
 *
33
 *   IVER T.I. S.A
34
 *   Salamanca 50
35
 *   46005 Valencia
36
 *   Spain
37
 *
38
 *   +34 963163400
39
 *   dac@iver.es
40
 */
41 312 fernando
package com.iver.cit.gvsig;
42
43 2242 jaume
import java.awt.Component;
44 6730 caballero
import java.io.BufferedReader;
45 2242 jaume
import java.io.File;
46 8455 cesar
import java.io.FileInputStream;
47 2242 jaume
import java.io.FileNotFoundException;
48 8455 cesar
import java.io.FileOutputStream;
49 2242 jaume
import java.io.FileReader;
50 6730 caballero
import java.io.IOException;
51 8455 cesar
import java.io.InputStream;
52 6730 caballero
import java.io.InputStreamReader;
53 8455 cesar
import java.io.OutputStreamWriter;
54 6730 caballero
import java.io.Reader;
55 8455 cesar
import java.io.UnsupportedEncodingException;
56 6730 caballero
import java.net.MalformedURLException;
57
import java.net.URL;
58 2242 jaume
import java.text.DateFormat;
59
import java.util.Date;
60 7222 jaume
import java.util.prefs.Preferences;
61 2242 jaume
62
import javax.swing.JFileChooser;
63
import javax.swing.JOptionPane;
64
65
import org.exolab.castor.xml.MarshalException;
66
import org.exolab.castor.xml.Marshaller;
67
import org.exolab.castor.xml.ValidationException;
68
69
import com.iver.andami.Launcher;
70 596 fernando
import com.iver.andami.PluginServices;
71 2242 jaume
import com.iver.andami.messages.Messages;
72 692 fernando
import com.iver.andami.messages.NotificationManager;
73 596 fernando
import com.iver.andami.plugins.Extension;
74 7621 fjp
import com.iver.andami.ui.mdiManager.IWindow;
75 7689 cesar
import com.iver.andami.ui.mdiManager.WindowInfo;
76 701 fernando
import com.iver.cit.gvsig.fmap.layers.LayerFactory;
77 3115 caballero
import com.iver.cit.gvsig.gui.layout.Layout;
78 1221 fernando
import com.iver.cit.gvsig.project.Project;
79 312 fernando
import com.iver.cit.gvsig.project.ProjectFactory;
80 7304 caballero
import com.iver.cit.gvsig.project.documents.exceptions.OpenException;
81 7343 caballero
import com.iver.cit.gvsig.project.documents.gui.ProjectWindow;
82 7304 caballero
import com.iver.cit.gvsig.project.documents.layout.ProjectMap;
83 7343 caballero
import com.iver.cit.gvsig.project.documents.layout.ProjectMapFactory;
84
import com.iver.cit.gvsig.project.documents.table.ProjectTableFactory;
85 7304 caballero
import com.iver.cit.gvsig.project.documents.view.ProjectView;
86 7343 caballero
import com.iver.cit.gvsig.project.documents.view.ProjectViewFactory;
87 596 fernando
import com.iver.utiles.GenericFileFilter;
88 436 vcaballero
import com.iver.utiles.XMLEntity;
89 6635 jmvivo
import com.iver.utiles.extensionPoints.ExtensionPoint;
90
import com.iver.utiles.extensionPoints.ExtensionPoints;
91
import com.iver.utiles.extensionPoints.ExtensionPointsSingleton;
92 8455 cesar
import com.iver.utiles.xml.XMLEncodingUtils;
93 436 vcaballero
import com.iver.utiles.xmlEntity.generate.XmlTag;
94 312 fernando
95 1219 vcaballero
96 312 fernando
/**
97
 * Extension que proporciona controles para crear proyectos nuevos, abrirlos y
98
 * guardarlos. Adem?s los tipos de tabla que soporta el proyecto son a?adidos
99
 * en esta clase.
100
 *
101
 * @author Fernando Gonz?lez Cort?s
102
 */
103 5005 jorpiell
public class ProjectExtension extends Extension {
104 6876 jaume
        private static String projectPath = null;
105 7304 caballero
        //private ProjectWindow projectFrame;
106 7343 caballero
        private ProjectWindow projectFrame;
107 1219 vcaballero
        private Project p;
108 7426 jaume
        private String lastPath;
109 7385 jaume
        private String lastSavePath;
110 7426 jaume
        private String templatesPath;
111 7689 cesar
        private WindowInfo seedProjectWindow;
112 8455 cesar
        /**
113
         * Use UTF-8 for encoding, as it can represent characters from
114
         * any language.
115 8536 jaume
         *
116
         * Another sensible option would be
117 8455 cesar
         * encoding = System.getProperty("file.encoding");
118
         * but this would need some extra testing.
119
         */
120
        private String projectEncoding = "UTF-8";
121 8536 jaume
122 1219 vcaballero
        /**
123 5005 jorpiell
         * @see com.iver.mdiApp.plugins.IExtension#initialize()
124 1219 vcaballero
         */
125 5005 jorpiell
        public void initialize() {
126 2183 fernando
            try {
127
            Class.forName("javax.media.jai.EnumeratedParameter");
128
        } catch (ClassNotFoundException e) {
129
            NotificationManager.addError("La m?quina virtual con la que se ejecuta gvSIG no tiene JAI instalado", e);
130
        }
131 4748 fjp
132
                LayerFactory.setWritersPath(PluginServices.getPluginServices(this)
133 3666 fjp
                                  .getPluginDirectory()
134
                                  .getAbsolutePath() +
135
                                  File.separator + "drivers");
136 6153 caballero
137 4748 fjp
        LayerFactory.setDriversPath(PluginServices.getPluginServices(this)
138 4140 caballero
                                  .getPluginDirectory()
139
                                  .getAbsolutePath() +
140 4748 fjp
                                  File.separator + "drivers");
141 8536 jaume
142 7699 cesar
        initializeDocumentActionsExtensionPoint();
143 7689 cesar
        registerDocuments();
144 4140 caballero
145 3666 fjp
        // Recuperamos el ?ltimo argumento, que se supone
146
        // que ser? el fichero .gvp que queremos abrir.
147 4140 caballero
        // (por enmedio pueden venir o no otros argumentos,
148 3666 fjp
        // por ejemplo el idioma)
149
        // TODO: Aqu? Jaume podr?a meter lo del backup del proyecto
150
        // que ha hecho para ValenciaUrban?stica
151 4140 caballero
152 3666 fjp
                /*
153
                pe = (ProjectExtension) PluginServices.getExtension(com.iver.cit.gvsig.ProjectExtension.class);
154
                if (projectFile.length()!=0){
155 4140 caballero
                        p=pe.readProject(projectFile);
156 3666 fjp
                }
157
                else
158
                        p = restorePreviousProject();
159
                pe.setProject(p); */
160 4140 caballero
        String[] theArgs = PluginServices.getArguments();
161 3666 fjp
        String lastArg = theArgs[theArgs.length-1];
162
        if ((lastArg.endsWith(".gvp")) ||
163
                        (lastArg.endsWith(".GVP")))
164
        {
165
                PluginServices.getLogger().debug("Intentando cargar el proyecto " + lastArg);
166 6730 caballero
                //File projectFile = new File(lastArg);
167
                p = readProject(lastArg);
168 3666 fjp
                PluginServices.getMainFrame().setTitle(p.getName());
169 7239 jmvivo
                projectPath = lastArg;
170 3666 fjp
        }
171
        else
172
        {
173
                        p = ProjectFactory.createProject();
174
                        p.setName(PluginServices.getText(this, "untitled"));
175
                        p.setModified(false);
176
                        PluginServices.getMainFrame().setTitle(PluginServices.getText(this, "sin_titulo"));
177
        }
178 7304 caballero
        }
179
        /**
180
         * @see com.iver.mdiApp.plugins.IExtension#postInitialize()
181
         */
182
        public void postInitialize() {
183 8536 jaume
                getProjectFrame().setProject(p);
184 7689 cesar
                p.restoreWindowProperties();
185 1219 vcaballero
        }
186 8536 jaume
187
        private ProjectWindow getProjectFrame() {
188
                if (projectFrame==null)
189
                                projectFrame = new ProjectWindow();
190
                return projectFrame;
191
        }
192 1219 vcaballero
        /**
193
         * Muestra la ventana con el gestor de proyectos.
194
         */
195
        public void showProjectWindow() {
196 7689 cesar
                if (seedProjectWindow!=null) {
197
                        if (seedProjectWindow.isClosed()) {
198
                                // if it was closed, we just don't open the window now
199
                                seedProjectWindow.setClosed(false);
200
                                return;
201
                        }
202
                        WindowInfo winProps = seedProjectWindow;
203
                        seedProjectWindow = null;
204 8536 jaume
                        PluginServices.getMDIManager().addWindow(getProjectFrame());
205
                        PluginServices.getMDIManager().changeWindowInfo(getProjectFrame(), winProps);
206 7689 cesar
                }
207
                else
208 8536 jaume
                        PluginServices.getMDIManager().addWindow(getProjectFrame());
209 312 fernando
        }
210 8536 jaume
211 7689 cesar
        /**
212
         * Muestra la ventana con el gestor de proyectos, con las propiedades
213
         * de ventana especificadas.
214
         */
215
        public void showProjectWindow(WindowInfo wi) {
216
                seedProjectWindow = wi;
217
                showProjectWindow();
218
        }
219 312 fernando
220 1219 vcaballero
        /**
221
         * Guarda el proyecto actual en disco.
222
         */
223 6190 caballero
        private boolean guardar() {
224
                boolean saved=false;
225 6876 jaume
//                if (p.getPath() == null) {
226
                if (projectPath == null) {
227 6190 caballero
                        saved=guardarDialogo();
228 312 fernando
                } else {
229 6876 jaume
                        saved=writeProject(new File(projectPath), p); //new File(p.getPath()), p);
230 8536 jaume
                        getProjectFrame().refreshControls();
231 312 fernando
                }
232 6190 caballero
                return saved;
233 312 fernando
        }
234 6876 jaume
235 6190 caballero
        private boolean guardarDialogo(){
236
                boolean saved=false;
237 7385 jaume
238
                if (lastSavePath == null)
239
                        lastSavePath = projectPath;
240
241 7444 jaume
                if (lastSavePath == null) {
242
                        Preferences prefs = Preferences.userRoot().node( "gvsig.foldering" );
243
                        lastSavePath = prefs.get("ProjectsFolder", null);
244
                }
245
246 7385 jaume
                JFileChooser jfc = new JFileChooser(lastSavePath);
247 1271 vcaballero
                jfc.addChoosableFileFilter(new GenericFileFilter("gvp",
248 1226 vcaballero
                                PluginServices.getText(this, "tipo_fichero_proyecto")));
249 1219 vcaballero
250 1226 vcaballero
                if (jfc.showSaveDialog((Component) PluginServices.getMainFrame()) == JFileChooser.APPROVE_OPTION) {
251 1254 vcaballero
                        File file=jfc.getSelectedFile();
252 6876 jaume
                        if (!(file.getPath().toLowerCase().endsWith(".gvp"))){
253 1271 vcaballero
                                file=new File(file.getPath()+".gvp");
254 1254 vcaballero
                        }
255 6190 caballero
                        saved=writeProject(file, p);
256 7385 jaume
                        String filePath = file.getAbsolutePath();
257
                        lastSavePath = filePath.substring(0, filePath.lastIndexOf(File.separatorChar));
258
259 8536 jaume
                        getProjectFrame().refreshControls();
260 1226 vcaballero
                }
261 6190 caballero
                return saved;
262 1226 vcaballero
        }
263 1219 vcaballero
        /**
264
         * Guarda si el proyecto ha sido modificado.
265
         *
266
         * @return True si se ha guardado correctamente.
267
         */
268
        private boolean modificado() {
269 3586 caballero
                if (p.isModified()) {
270
                ///if (true) {
271 4140 caballero
                        //TODO de momento se queda como modificado siempre menos cuando est? totalmente vacio que se tomar? como no modificado,
272
                        //para poder controlar perfectamente cuando un proyecto ha sido modificado
273 2785 caballero
                        //hay que recoger los eventos de cambio de leyenda, cambio de extent, a?adir una capa, etc que se encuentran en FMap.
274 4140 caballero
275 596 fernando
                        int res = JOptionPane.showConfirmDialog((Component) PluginServices.getMainFrame(),
276
                                        PluginServices.getText(this, "guardar_cambios"),
277 2419 caballero
                                        "gvSIG",
278 312 fernando
                                        JOptionPane.YES_NO_CANCEL_OPTION,
279
                                        JOptionPane.INFORMATION_MESSAGE);
280
281
                        if (res == JOptionPane.YES_OPTION) {
282
                                guardar();
283
                        } else if (res == JOptionPane.CANCEL_OPTION) {
284
                                return false;
285
                        }
286
                }
287 1219 vcaballero
288 312 fernando
                return true;
289
        }
290
291 1219 vcaballero
        /**
292 5005 jorpiell
         * @see com.iver.mdiApp.plugins.IExtension#updateUI(java.lang.String)
293 1219 vcaballero
         */
294
        public void execute(String actionCommand) {
295
                if (actionCommand.equals("NUEVO")) {
296
                        //Si est? modificado se pregunta si se quiere guardar el anterior
297
                        if (!modificado()) {
298
                                return;
299
                        }
300 2609 caballero
                        ProjectView.numViews=0;
301 2708 fjp
            ProjectMap.numMaps = 0;
302 6880 cesar
                        PluginServices.getMDIManager().closeAllWindows();
303 1219 vcaballero
                        p = ProjectFactory.createProject();
304
                        p.setName(PluginServices.getText(this, "untitled"));
305
                        p.setModified(false);
306 8536 jaume
                        getProjectFrame().setProject(p);
307 1219 vcaballero
                        showProjectWindow();
308 1412 fernando
                        PluginServices.getMainFrame().setTitle(PluginServices.getText(this, "sin_titulo"));
309 1219 vcaballero
                } else if (actionCommand.equals("ABRIR")) {
310
                        //Si est? modificado se pregunta si se quiere guardar el anterior
311
                        if (!modificado()) {
312 2609 caballero
                                ProjectView.numViews=0;
313 2708 fjp
                ProjectMap.numMaps = 0;
314 1219 vcaballero
                                return;
315
                        }
316 4140 caballero
317 7222 jaume
                        if (lastPath == null) {
318
                                Preferences prefs = Preferences.userRoot().node( "gvsig.foldering" );
319
                                lastPath = prefs.get("ProjectsFolder", null);
320
                        }
321
322
                        JFileChooser jfc = new JFileChooser(lastPath);
323 1271 vcaballero
                        jfc.addChoosableFileFilter(new GenericFileFilter("gvp",
324 1219 vcaballero
                                        PluginServices.getText(this, "tipo_fichero_proyecto")));
325
326
                        if (jfc.showOpenDialog((Component) PluginServices.getMainFrame()) == JFileChooser.APPROVE_OPTION) {
327 2609 caballero
                                ProjectView.numViews=0;
328 2708 fjp
                ProjectMap.numMaps = 0;
329 6880 cesar
                                PluginServices.getMDIManager().closeAllWindows();
330 6876 jaume
331
                                File projectFile = jfc.getSelectedFile();
332
                                Project o = readProject(projectFile);
333
                                setPath(projectFile.getAbsolutePath());
334 7222 jaume
                                lastPath = getPath();
335 1219 vcaballero
                                if (o != null) {
336
                                        p = o;
337 596 fernando
                                }
338 312 fernando
339 8536 jaume
                                getProjectFrame().setProject(p);
340 1412 fernando
                                PluginServices.getMainFrame().setTitle(p.getName());
341 8536 jaume
                                getProjectFrame().refreshControls();
342 7689 cesar
                                p.restoreWindowProperties();
343 1219 vcaballero
                        }
344
                } else if (actionCommand.equals("GUARDAR")) {
345
                        guardar();
346 1226 vcaballero
                } else if (actionCommand.equals("GUARDAR_COMO")) {
347
                        guardarDialogo();
348 2242 jaume
                } else if (actionCommand.equals("SALIR")){
349 6190 caballero
                        int option = JOptionPane.showConfirmDialog((Component)PluginServices.getMainFrame(),
350 2242 jaume
                                        Messages.getString("MDIFrame.quiere_salir"),
351
                                        Messages.getString("MDIFrame.salir"),
352
                                        JOptionPane.YES_NO_OPTION);
353
354
                        if (option == JOptionPane.YES_OPTION) {
355
                                Launcher.closeApplication();
356
                        }
357 3115 caballero
                } else if (actionCommand.compareTo("OPENTEMPLATE")==0){
358
                        openLayout();
359 1219 vcaballero
                }
360
        }
361 3115 caballero
        public void openLayout() {
362 3135 caballero
                //Project project = ((ProjectExtension) PluginServices.getExtension(ProjectExtension.class)).getProject();
363 3115 caballero
                Layout layout=null;
364 7426 jaume
365
                if (templatesPath == null) {
366
                        Preferences prefs = Preferences.userRoot().node( "gvsig.foldering" );
367
                        templatesPath = prefs.get("TemplatesFolder", null);
368
                }
369
370
                JFileChooser jfc = new JFileChooser(templatesPath);
371 3115 caballero
                jfc.addChoosableFileFilter(new GenericFileFilter("gvt",
372
                                PluginServices.getText(this, "plantilla")));
373 312 fernando
374 3115 caballero
                if (jfc.showOpenDialog((Component) PluginServices.getMainFrame()) == JFileChooser.APPROVE_OPTION) {
375
                        File file=jfc.getSelectedFile();
376
                        if (!(file.getPath().endsWith(".gvt") || file.getPath().endsWith(".GVT"))){
377
                                file=new File(file.getPath()+".gvt");
378
                        }
379
                        try {
380
                                File xmlFile = new File(file.getAbsolutePath());
381
                                FileReader reader;
382
                                reader = new FileReader(xmlFile);
383
384
                                XmlTag tag = (XmlTag) XmlTag.unmarshal(reader);
385 3185 caballero
                                try {
386
                                        layout = Layout.createLayout(new XMLEntity(tag),p);
387
                                } catch (OpenException e) {
388
                                        e.showError();
389
                                }
390 3115 caballero
                                //fPanelLegendManager.setRenderer(LegendFactory.createFromXML(new XMLEntity(tag)));
391
                        } catch (FileNotFoundException e) {
392
                                NotificationManager.addError(PluginServices.getText(this, "Al_leer_la_leyenda"), e);
393
                        } catch (MarshalException e) {
394 5503 cesar
                                NotificationManager.addError(PluginServices.getText(this, "Al_leer_la_leyenda"), e);
395 3115 caballero
                        } catch (ValidationException e) {
396 5503 cesar
                                NotificationManager.addError(PluginServices.getText(this, "Al_leer_la_leyenda"), e);
397 3115 caballero
                        }
398
                        ProjectMap pmap = ProjectFactory.createMap(file.getName());
399
                        pmap.setModel(layout);
400
                        pmap.getModel().setProjectMap(pmap);
401 7304 caballero
                        p.addDocument(pmap);
402 6880 cesar
                        PluginServices.getMDIManager().addWindow(layout);
403 4140 caballero
404
405 3115 caballero
                }
406
        }
407 1219 vcaballero
        /**
408
         * Escribe el proyecto en XML.
409
         *
410
         * @param file Fichero.
411
         * @param p Proyecto.
412
         */
413 6190 caballero
        public boolean writeProject(File file, Project p) {
414 8801 jaume
                return writeProject(file, p, true);
415
        }
416
417 8803 jaume
        /**
418
         * Escribe el proyecto en XML. Pero permite decidir si se
419
         * pide confirmaci?n para sobreescribir
420
         *
421
         * @param file Fichero.
422
         * @param p Proyecto.
423
         * @param askConfirmation boolean
424
         */
425 8802 jaume
        public boolean writeProject(File file, Project p, boolean askConfirmation) {
426
                if( askConfirmation && file.exists()){
427 6153 caballero
                        int resp = JOptionPane.showConfirmDialog(
428
                                        (Component) PluginServices.getMainFrame(),PluginServices.getText(this,"fichero_ya_existe_seguro_desea_guardarlo"),
429
                                        PluginServices.getText(this,"guardar"), JOptionPane.YES_NO_OPTION);
430
                        if (resp != JOptionPane.YES_OPTION) {
431 6190 caballero
                                return false;
432 6153 caballero
                        }
433
                }
434 1219 vcaballero
                // write it out as XML
435 596 fernando
                try {
436 8455 cesar
            FileOutputStream fos = new FileOutputStream(file.getAbsolutePath());
437
            OutputStreamWriter writer = new OutputStreamWriter(fos, projectEncoding);
438 1219 vcaballero
                        Marshaller m = new Marshaller(writer);
439 8455 cesar
                        m.setEncoding(projectEncoding);
440 1254 vcaballero
                        p.setName(file.getName());
441 6876 jaume
                        // p.setPath(file.toString());
442 1219 vcaballero
                        p.setModificationDate(DateFormat.getDateInstance().format(new Date()));
443
                        p.setModified(false);
444 8455 cesar
                        XMLEntity xml = p.getXMLEntity();
445
                        xml.putProperty("followHeaderEncoding", true);
446
                        m.marshal(xml.getXmlTag());
447 1412 fernando
                        PluginServices.getMainFrame().setTitle(file.getName());
448 6876 jaume
                        setPath(file.toString());
449
450 1219 vcaballero
                } catch (Exception e) {
451
                        NotificationManager.addError("Error guardando el proyecto", e);
452 6190 caballero
                        return false;
453 1219 vcaballero
                }
454 6190 caballero
                return true;
455 1219 vcaballero
        }
456
457 6730 caballero
        public Project readProject(String path) {
458
                BufferedReader reader =null;
459
                try {
460
                URL url=null;
461
                        url = new URL(path);
462 8455 cesar
                        String encoding = XMLEncodingUtils.getEncoding(url.openStream());
463
                        InputStream is = url.openStream();
464
                        if (encoding!=null) {
465
                                Project proj=null;
466
                                try {
467
                                        reader = new BufferedReader(new InputStreamReader(is, encoding));
468
                                        proj=readProject(reader, true);
469
                                } catch (UnsupportedEncodingException e) {
470
                                        reader = new BufferedReader(new InputStreamReader(is));
471
                                        try {
472
                                                Project p=readProject(reader, false);
473
                                        } catch (UnsupportedEncodingException e1) {
474
                                                JOptionPane.showMessageDialog((Component)PluginServices.getMainFrame(),PluginServices.getText(this, e1.getLocalizedMessage()));
475 8536 jaume
                                                return null;
476 8455 cesar
                                        }
477
                                }
478
                                ProjectExtension.setPath(path);
479
                                return proj;
480
                        }
481
                        else {
482
                                reader = new BufferedReader(new InputStreamReader(is));
483
                                Project p;
484
                                try {
485
                                        p = readProject(reader, false);
486
                                } catch (UnsupportedEncodingException e) {
487
                                        JOptionPane.showMessageDialog((Component)PluginServices.getMainFrame(),PluginServices.getText(this, e.getLocalizedMessage()));
488
                                        return null;
489
                                }
490
                                ProjectExtension.setPath(path); //p.setPath(null);
491
                                return p;
492
                        }
493 6730 caballero
                } catch (MalformedURLException e) {
494
                        File file=new File(path);
495
                        return readProject(file);
496
                } catch (IOException e) {
497
                        e.printStackTrace();
498 8455 cesar
                        return null;
499 6730 caballero
                }
500
        }
501
502 8455 cesar
        /**
503
         * Lee del XML el proyecto.<br><br>
504
         *
505
         * Reads the XML of the project.<br>
506
         * It returns a project object holding all needed info that is not linked to the Project Dialog. <br>In case you want the project to be
507
         * linked to the window you must set this object to the extension:<br>
508
         *
509
         * <b>Example:</b><br>
510
         *
511
         * ...<br>
512
         * ...<br>
513
         * Project p = ProjectExtension.readProject(projectFile);<br>
514
         * ProjectExtension.setProject(p);
515
         * ...<br>
516
         * ...<br>
517
         * @param file Fichero.
518
         *
519
         * @return Project
520
         *
521
         */
522 6730 caballero
        public Project readProject(File file) {
523
                File xmlFile = new File(file.getAbsolutePath());
524
                try {
525 8455 cesar
                        String encoding = XMLEncodingUtils.getEncoding(new FileInputStream(xmlFile));
526
                        InputStreamReader reader=null;
527
                        if (encoding!=null) {
528
                                try {
529
                                        reader = new InputStreamReader(new FileInputStream(xmlFile), encoding);
530
                                        return readProject(reader, true);
531
                                } catch (UnsupportedEncodingException e) {
532
                                        reader = new InputStreamReader(new FileInputStream(xmlFile));
533
                                        try {
534
                                                return readProject(reader, false);
535
                                        } catch (UnsupportedEncodingException e1) {
536
                                                JOptionPane.showMessageDialog((Component)PluginServices.getMainFrame(),PluginServices.getText(this, e1.getLocalizedMessage()));
537
                                                return null;
538
                                        }
539
                                }
540
                        }
541
                        else {
542
                                reader = new InputStreamReader(new FileInputStream(xmlFile));
543
                                try {
544
                                        return readProject(reader, false);
545
                                } catch (UnsupportedEncodingException e1) {
546
                                        JOptionPane.showMessageDialog((Component)PluginServices.getMainFrame(),PluginServices.getText(this, e1.getLocalizedMessage()));
547
                                        return null;
548
                                }
549
                        }
550 6730 caballero
                } catch (FileNotFoundException e) {
551
                        JOptionPane.showMessageDialog((Component)PluginServices.getMainFrame(),PluginServices.getText(this, "fichero_incorrecto"));
552
                        return null;
553
                }
554 8455 cesar
        }
555 8536 jaume
556 1219 vcaballero
        /**
557 2922 jaume
         * Lee del XML el proyecto.<br><br>
558 4140 caballero
         *
559 2922 jaume
         * Reads the XML of the project.<br>
560 8455 cesar
         * It returns a project object holding all needed info that is not linked to the Project Dialog. <br>In case you want the project to be
561
         * linked to the window you must set this object to the extension:<br>
562 4140 caballero
         *
563 2922 jaume
         * <b>Example:</b><br>
564 4140 caballero
         *
565 2922 jaume
         * ...<br>
566
         * ...<br>
567 3666 fjp
         * Project p = ProjectExtension.readProject(projectFile);<br>
568 2922 jaume
         * ProjectExtension.setProject(p);
569
         * ...<br>
570
         * ...<br>
571 8455 cesar
         * @param reader File reader
572
         * @param encodingFollowed Whether the encoded specified in the xml header was followed
573
         * when creating the reader. If the property followHeaderEncoding is false or not set,
574
         * then the encoding should have not been used when creating the reader, so it must be
575
         * recreated.
576 8536 jaume
         *
577 2922 jaume
         * @return Project
578 8536 jaume
         * @throws UnsupportedEncodingException
579 4140 caballero
         *
580 312 fernando
         */
581 8455 cesar
        private Project readProject(Reader reader, boolean encodingFollowed) throws UnsupportedEncodingException {
582 1219 vcaballero
                Project proj = null;
583
584
                try {
585 2183 fernando
                        XmlTag tag = (XmlTag) XmlTag.unmarshal(reader);
586 3167 caballero
                        XMLEntity xml=new XMLEntity(tag);
587
                        String VERSION=xml.getStringProperty("VERSION");
588 8536 jaume
589 8455 cesar
                        if (encodingFollowed) {
590
                                if (xml.contains("followHeaderEncoding")) {
591
                                        boolean useEncoding = xml.getBooleanProperty("followHeaderEncoding");
592
                                        if (!useEncoding) {
593
                                                throw new UnsupportedEncodingException("the encoding specified in the xml header is not safe");
594
                                        }
595
                                }
596
                                else {
597
                                        // Old projects didn't contain followHeaderEncoding and they were
598
                                        // not correctly encoded. We throw an exception now, and we'll try
599
                                        // to reopen the project
600 8536 jaume
                                        // using the default system encoding.
601 8455 cesar
                                        throw new UnsupportedEncodingException("the encoding specified in the xml header is not safe");
602
                                }
603
                        }
604 8536 jaume
605 2183 fernando
                        try {
606 3810 fjp
                                // if ((VERSION!=null) && (VERSION.equals("0.5") || VERSION.equals("0.4") || (VERSION.indexOf("GISPLANET") != -1))){
607
                                if (VERSION != null) {
608 3167 caballero
                                        proj = Project.createFromXML(xml);
609
                                }else{
610
                                        proj = Project.createFromXML03(new XMLEntity(tag));
611
                                }
612 2183 fernando
                                return proj;
613 3185 caballero
                        } catch (OpenException e){
614
                                e.showError();
615
                                //NotificationManager.addInfo("Al leer el proyecto", e);
616 3167 caballero
                        }
617 6730 caballero
                }  catch (MarshalException e) {
618 2695 nacho
                        JOptionPane.showMessageDialog((Component)PluginServices.getMainFrame(),PluginServices.getText(this, "formato_incorrecto"));
619 2419 caballero
                        //NotificationManager.addError("Al leer el proyecto", e);
620 1219 vcaballero
                } catch (ValidationException e) {
621 2695 nacho
                        JOptionPane.showMessageDialog((Component)PluginServices.getMainFrame(),PluginServices.getText(this, "formato_incorrecto"));
622 2419 caballero
                        //NotificationManager.addError("Al leer el proyecto", e);
623 4140 caballero
                }
624 2183 fernando
                return null;
625 1219 vcaballero
        }
626
627
        /**
628
         * Devuelve el proyecto.
629
         *
630
         * @return Proyecto.
631
         */
632 312 fernando
        public Project getProject() {
633
                return p;
634
        }
635
636 596 fernando
        /**
637 5005 jorpiell
         * @see com.iver.andami.plugins.IExtension#isEnabled()
638 596 fernando
         */
639
        public boolean isEnabled() {
640
                return true;
641
        }
642
643
        /**
644 5005 jorpiell
         * @see com.iver.andami.plugins.IExtension#isVisible()
645 596 fernando
         */
646
        public boolean isVisible() {
647
                return true;
648
        }
649 4140 caballero
650 2879 jaume
        /**
651 2922 jaume
         * Sets the project
652 2879 jaume
         * @param p
653
         */
654 2922 jaume
        public void setProject(Project p){
655 8536 jaume
                getProjectFrame().setProject(p);
656 2922 jaume
                this.p=p;
657 2879 jaume
        }
658 6190 caballero
659
        //Finalizar y preguntar si se quiere guardar el proyecto o cancelar.
660 6639 caballero
        public void terminate() {
661 6876 jaume
                long t1,t2;
662
                t1 = System.currentTimeMillis();
663
                //if (getProject().hasChanged()) {
664
                        int option = JOptionPane.showConfirmDialog((Component)PluginServices.getMainFrame(),PluginServices.getText(this,"guardar_cambios"),
665
                                        PluginServices.getText(this,"guardar_proyecto"),
666
                                        JOptionPane.YES_NO_OPTION);
667 6190 caballero
668 6876 jaume
                        if (option == JOptionPane.YES_OPTION) {
669
                                if (!guardar())
670
                                        terminate();
671
                        }
672
                //}
673
                t2 = System.currentTimeMillis();
674
                System.err.println("ProjectExtension.terminate() " +  (t2-t1) + "milisecs");
675 6190 caballero
        }
676 6730 caballero
677 7304 caballero
        private void registerDocuments() {
678 7343 caballero
                ProjectViewFactory.register();
679
                ProjectTableFactory.register();
680
                ProjectMapFactory.register();
681 7304 caballero
        }
682 7699 cesar
        private void initializeDocumentActionsExtensionPoint() {
683 6730 caballero
                ExtensionPoints extensionPoints = ExtensionPointsSingleton.getInstance();
684 6672 jmvivo
                if (!extensionPoints.containsKey("DocumentActions_View")) {
685
                        extensionPoints.put(
686
                                new ExtensionPoint(
687
                                        "DocumentActions_View",
688 6730 caballero
                                        "Context menu options of the view document list" +
689
                                                " in the project window "+
690 6672 jmvivo
                                                "(register instances of " +
691
                                                "com.iver.cit.gvsig.project.AbstractDocumentContextMenuAction)"
692
                                )
693 6730 caballero
                        );
694 6672 jmvivo
                }
695
                if (!extensionPoints.containsKey("DocumentActions_Table")) {
696
                        extensionPoints.put(
697
                                new ExtensionPoint(
698
                                        "DocumentActions_Table",
699 6730 caballero
                                        "Context menu options of the table document list" +
700
                                                " in the project window "+
701 6672 jmvivo
                                                "(register instances of " +
702
                                                "com.iver.cit.gvsig.project.AbstractDocumentContextMenuAction)"
703
                                )
704
                        );
705
                }
706
                if (!extensionPoints.containsKey("DocumentActions_Map")) {
707
                        extensionPoints.put(
708
                                new ExtensionPoint(
709
                                        "DocumentActions_Map",
710 6730 caballero
                                        "Context menu options of the map document list" +
711
                                                " in the project window "+
712 6672 jmvivo
                                                "(register instances of " +
713
                                                "com.iver.cit.gvsig.project.AbstractDocumentContextMenuAction)"
714
                                )
715
                        );
716
                }
717 6635 jmvivo
        }
718 6876 jaume
719
        public static String getPath() {
720
                return projectPath;
721
        }
722
723
        public static void setPath(String path) {
724
                projectPath = path;
725
        }
726
727 7608 cesar
        public IWindow getProjectWindow() {
728 8536 jaume
                return getProjectFrame();
729 7608 cesar
        }
730 312 fernando
}