Statistics
| Revision:

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

History | View | Annotate | Download (23 KB)

1
/* 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
package com.iver.cit.gvsig;
42

    
43
import java.awt.Component;
44
import java.io.BufferedReader;
45
import java.io.File;
46
import java.io.FileInputStream;
47
import java.io.FileNotFoundException;
48
import java.io.FileOutputStream;
49
import java.io.FileReader;
50
import java.io.IOException;
51
import java.io.InputStream;
52
import java.io.InputStreamReader;
53
import java.io.OutputStreamWriter;
54
import java.io.Reader;
55
import java.io.UnsupportedEncodingException;
56
import java.net.MalformedURLException;
57
import java.net.URL;
58
import java.text.DateFormat;
59
import java.util.Date;
60
import java.util.prefs.Preferences;
61

    
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
import com.iver.andami.PluginServices;
71
import com.iver.andami.messages.Messages;
72
import com.iver.andami.messages.NotificationManager;
73
import com.iver.andami.plugins.Extension;
74
import com.iver.andami.ui.mdiManager.IWindow;
75
import com.iver.andami.ui.mdiManager.WindowInfo;
76
import com.iver.cit.gvsig.fmap.layers.LayerFactory;
77
import com.iver.cit.gvsig.gui.layout.Layout;
78
import com.iver.cit.gvsig.project.Project;
79
import com.iver.cit.gvsig.project.ProjectFactory;
80
import com.iver.cit.gvsig.project.documents.exceptions.OpenException;
81
import com.iver.cit.gvsig.project.documents.gui.ProjectWindow;
82
import com.iver.cit.gvsig.project.documents.layout.ProjectMap;
83
import com.iver.cit.gvsig.project.documents.layout.ProjectMapFactory;
84
import com.iver.cit.gvsig.project.documents.table.ProjectTableFactory;
85
import com.iver.cit.gvsig.project.documents.view.ProjectView;
86
import com.iver.cit.gvsig.project.documents.view.ProjectViewFactory;
87
import com.iver.utiles.GenericFileFilter;
88
import com.iver.utiles.XMLEntity;
89
import com.iver.utiles.extensionPoints.ExtensionPoint;
90
import com.iver.utiles.extensionPoints.ExtensionPoints;
91
import com.iver.utiles.extensionPoints.ExtensionPointsSingleton;
92
import com.iver.utiles.xml.XMLEncodingUtils;
93
import com.iver.utiles.xmlEntity.generate.XmlTag;
94

    
95

    
96
/**
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
public class ProjectExtension extends Extension {
104
        private static String projectPath = null;
105
        //private ProjectWindow projectFrame;
106
        private ProjectWindow projectFrame;
107
        private Project p;
108
        private String lastPath;
109
        private String lastSavePath;
110
        private String templatesPath;
111
        private WindowInfo seedProjectWindow;
112
        /**
113
         * Use UTF-8 for encoding, as it can represent characters from
114
         * any language.
115
         *
116
         * Another sensible option would be
117
         * encoding = System.getProperty("file.encoding");
118
         * but this would need some extra testing.
119
         */
120
        private String projectEncoding = "UTF-8";
121

    
122
        /**
123
         * @see com.iver.mdiApp.plugins.IExtension#initialize()
124
         */
125
        public void initialize() {
126
            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

    
132
                LayerFactory.setWritersPath(PluginServices.getPluginServices(this)
133
                                  .getPluginDirectory()
134
                                  .getAbsolutePath() +
135
                                  File.separator + "drivers");
136

    
137
        LayerFactory.setDriversPath(PluginServices.getPluginServices(this)
138
                                  .getPluginDirectory()
139
                                  .getAbsolutePath() +
140
                                  File.separator + "drivers");
141

    
142
        initializeDocumentActionsExtensionPoint();
143
        registerDocuments();
144

    
145
        // Recuperamos el ?ltimo argumento, que se supone
146
        // que ser? el fichero .gvp que queremos abrir.
147
        // (por enmedio pueden venir o no otros argumentos,
148
        // por ejemplo el idioma)
149
        // TODO: Aqu? Jaume podr?a meter lo del backup del proyecto
150
        // que ha hecho para ValenciaUrban?stica
151

    
152
                /*
153
                pe = (ProjectExtension) PluginServices.getExtension(com.iver.cit.gvsig.ProjectExtension.class);
154
                if (projectFile.length()!=0){
155
                        p=pe.readProject(projectFile);
156
                }
157
                else
158
                        p = restorePreviousProject();
159
                pe.setProject(p); */
160
        String[] theArgs = PluginServices.getArguments();
161
        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
                //File projectFile = new File(lastArg);
167
                p = readProject(lastArg);
168
                PluginServices.getMainFrame().setTitle(p.getName());
169
                projectPath = lastArg;
170
        }
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
        }
179
        /**
180
         * @see com.iver.mdiApp.plugins.IExtension#postInitialize()
181
         */
182
        public void postInitialize() {
183
                getProjectFrame().setProject(p);
184
                p.restoreWindowProperties();
185
        }
186

    
187
        private ProjectWindow getProjectFrame() {
188
                if (projectFrame==null)
189
                                projectFrame = new ProjectWindow();
190
                return projectFrame;
191
        }
192
        /**
193
         * Muestra la ventana con el gestor de proyectos.
194
         */
195
        public void showProjectWindow() {
196
                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
                        PluginServices.getMDIManager().addWindow(getProjectFrame());
205
                        PluginServices.getMDIManager().changeWindowInfo(getProjectFrame(), winProps);
206
                }
207
                else
208
                        PluginServices.getMDIManager().addWindow(getProjectFrame());
209
        }
210

    
211
        /**
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

    
220
        /**
221
         * Guarda el proyecto actual en disco.
222
         */
223
        private boolean guardar() {
224
                boolean saved=false;
225
//                if (p.getPath() == null) {
226
                if (projectPath == null) {
227
                        saved=guardarDialogo();
228
                } else {
229
                        saved=writeProject(new File(projectPath), p); //new File(p.getPath()), p);
230
                        getProjectFrame().refreshControls();
231
                }
232
                return saved;
233
        }
234

    
235
        private boolean guardarDialogo(){
236
                boolean saved=false;
237

    
238
                if (lastSavePath == null)
239
                        lastSavePath = projectPath;
240

    
241
                if (lastSavePath == null) {
242
                        Preferences prefs = Preferences.userRoot().node( "gvsig.foldering" );
243
                        lastSavePath = prefs.get("ProjectsFolder", null);
244
                }
245

    
246
                JFileChooser jfc = new JFileChooser(lastSavePath);
247
                jfc.addChoosableFileFilter(new GenericFileFilter("gvp",
248
                                PluginServices.getText(this, "tipo_fichero_proyecto")));
249

    
250
                if (jfc.showSaveDialog((Component) PluginServices.getMainFrame()) == JFileChooser.APPROVE_OPTION) {
251
                        File file=jfc.getSelectedFile();
252
                        if (!(file.getPath().toLowerCase().endsWith(".gvp"))){
253
                                file=new File(file.getPath()+".gvp");
254
                        }
255
                        saved=writeProject(file, p);
256
                        String filePath = file.getAbsolutePath();
257
                        lastSavePath = filePath.substring(0, filePath.lastIndexOf(File.separatorChar));
258

    
259
                        getProjectFrame().refreshControls();
260
                }
261
                return saved;
262
        }
263
        /**
264
         * Guarda si el proyecto ha sido modificado.
265
         *
266
         * @return True si se ha guardado correctamente.
267
         */
268
        private boolean modificado() {
269
                if (p.isModified()) {
270
                ///if (true) {
271
                        //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
                        //hay que recoger los eventos de cambio de leyenda, cambio de extent, a?adir una capa, etc que se encuentran en FMap.
274

    
275
                        int res = JOptionPane.showConfirmDialog((Component) PluginServices.getMainFrame(),
276
                                        PluginServices.getText(this, "guardar_cambios"),
277
                                        "gvSIG",
278
                                        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

    
288
                return true;
289
        }
290

    
291
        /**
292
         * @see com.iver.mdiApp.plugins.IExtension#updateUI(java.lang.String)
293
         */
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
                        ProjectView.numViews=0;
301
            ProjectMap.numMaps = 0;
302
                        PluginServices.getMDIManager().closeAllWindows();
303
                        p = ProjectFactory.createProject();
304
                        p.setName(PluginServices.getText(this, "untitled"));
305
                        p.setModified(false);
306
                        getProjectFrame().setProject(p);
307
                        showProjectWindow();
308
                        PluginServices.getMainFrame().setTitle(PluginServices.getText(this, "sin_titulo"));
309
                } else if (actionCommand.equals("ABRIR")) {
310
                        //Si est? modificado se pregunta si se quiere guardar el anterior
311
                        if (!modificado()) {
312
                                ProjectView.numViews=0;
313
                ProjectMap.numMaps = 0;
314
                                return;
315
                        }
316

    
317
                        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
                        jfc.addChoosableFileFilter(new GenericFileFilter("gvp",
324
                                        PluginServices.getText(this, "tipo_fichero_proyecto")));
325

    
326
                        if (jfc.showOpenDialog((Component) PluginServices.getMainFrame()) == JFileChooser.APPROVE_OPTION) {
327
                                ProjectView.numViews=0;
328
                ProjectMap.numMaps = 0;
329
                                PluginServices.getMDIManager().closeAllWindows();
330

    
331
                                File projectFile = jfc.getSelectedFile();
332
                                Project o = readProject(projectFile);
333
                                setPath(projectFile.getAbsolutePath());
334
                                lastPath = getPath();
335
                                if (o != null) {
336
                                        p = o;
337
                                }
338

    
339
                                getProjectFrame().setProject(p);
340
                                PluginServices.getMainFrame().setTitle(p.getName());
341
                                getProjectFrame().refreshControls();
342
                                p.restoreWindowProperties();
343
                        }
344
                } else if (actionCommand.equals("GUARDAR")) {
345
                        guardar();
346
                } else if (actionCommand.equals("GUARDAR_COMO")) {
347
                        guardarDialogo();
348
                } else if (actionCommand.equals("SALIR")){
349
                        int option = JOptionPane.showConfirmDialog((Component)PluginServices.getMainFrame(),
350
                                        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
                } else if (actionCommand.compareTo("OPENTEMPLATE")==0){
358
                        openLayout();
359
                }
360
        }
361
        public void openLayout() {
362
                //Project project = ((ProjectExtension) PluginServices.getExtension(ProjectExtension.class)).getProject();
363
                Layout layout=null;
364

    
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
                jfc.addChoosableFileFilter(new GenericFileFilter("gvt",
372
                                PluginServices.getText(this, "plantilla")));
373

    
374
                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
                                try {
386
                                        layout = Layout.createLayout(new XMLEntity(tag),p);
387
                                } catch (OpenException e) {
388
                                        e.showError();
389
                                }
390
                                //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
                                NotificationManager.addError(PluginServices.getText(this, "Al_leer_la_leyenda"), e);
395
                        } catch (ValidationException e) {
396
                                NotificationManager.addError(PluginServices.getText(this, "Al_leer_la_leyenda"), e);
397
                        }
398
                        ProjectMap pmap = ProjectFactory.createMap(file.getName());
399
                        pmap.setModel(layout);
400
                        pmap.getModel().setProjectMap(pmap);
401
                        p.addDocument(pmap);
402
                        PluginServices.getMDIManager().addWindow(layout);
403

    
404

    
405
                }
406
        }
407
        /**
408
         * Escribe el proyecto en XML.
409
         *
410
         * @param file Fichero.
411
         * @param p Proyecto.
412
         */
413
        public boolean writeProject(File file, Project p) {
414
                return writeProject(file, p, true);
415
        }
416

    
417
        /**
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
        public boolean writeProject(File file, Project p, boolean askConfirmation) {
426
                if( askConfirmation && file.exists()){
427
                        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
                                return false;
432
                        }
433
                }
434
                // write it out as XML
435
                try {
436
            FileOutputStream fos = new FileOutputStream(file.getAbsolutePath());
437
            OutputStreamWriter writer = new OutputStreamWriter(fos, projectEncoding);
438
                        Marshaller m = new Marshaller(writer);
439
                        m.setEncoding(projectEncoding);
440
                        p.setName(file.getName());
441
                        // p.setPath(file.toString());
442
                        p.setModificationDate(DateFormat.getDateInstance().format(new Date()));
443
                        p.setModified(false);
444
                        XMLEntity xml = p.getXMLEntity();
445
                        xml.putProperty("followHeaderEncoding", true);
446
                        m.marshal(xml.getXmlTag());
447
                        PluginServices.getMainFrame().setTitle(file.getName());
448
                        setPath(file.toString());
449

    
450
                } catch (Exception e) {
451
                        NotificationManager.addError("Error guardando el proyecto", e);
452
                        return false;
453
                }
454
                return true;
455
        }
456

    
457
        public Project readProject(String path) {
458
                BufferedReader reader =null;
459
                try {
460
                URL url=null;
461
                        url = new URL(path);
462
                        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
                                                return null;
476
                                        }
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
                } catch (MalformedURLException e) {
494
                        File file=new File(path);
495
                        return readProject(file);
496
                } catch (IOException e) {
497
                        e.printStackTrace();
498
                        return null;
499
                }
500
        }
501

    
502
        /**
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
        public Project readProject(File file) {
523
                File xmlFile = new File(file.getAbsolutePath());
524
                try {
525
                        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
                } catch (FileNotFoundException e) {
551
                        JOptionPane.showMessageDialog((Component)PluginServices.getMainFrame(),PluginServices.getText(this, "fichero_incorrecto"));
552
                        return null;
553
                }
554
        }
555

    
556
        /**
557
         * Lee del XML el proyecto.<br><br>
558
         *
559
         * Reads the XML of the project.<br>
560
         * 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
         *
563
         * <b>Example:</b><br>
564
         *
565
         * ...<br>
566
         * ...<br>
567
         * Project p = ProjectExtension.readProject(projectFile);<br>
568
         * ProjectExtension.setProject(p);
569
         * ...<br>
570
         * ...<br>
571
         * @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
         *
577
         * @return Project
578
         * @throws UnsupportedEncodingException
579
         *
580
         */
581
        private Project readProject(Reader reader, boolean encodingFollowed) throws UnsupportedEncodingException {
582
                Project proj = null;
583

    
584
                try {
585
                        XmlTag tag = (XmlTag) XmlTag.unmarshal(reader);
586
                        XMLEntity xml=new XMLEntity(tag);
587
                        String VERSION=xml.getStringProperty("VERSION");
588

    
589
                        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
                                        // using the default system encoding.
601
                                        throw new UnsupportedEncodingException("the encoding specified in the xml header is not safe");
602
                                }
603
                        }
604

    
605
                        try {
606
                                // if ((VERSION!=null) && (VERSION.equals("0.5") || VERSION.equals("0.4") || (VERSION.indexOf("GISPLANET") != -1))){
607
                                if (VERSION != null) {
608
                                        proj = Project.createFromXML(xml);
609
                                }else{
610
                                        proj = Project.createFromXML03(new XMLEntity(tag));
611
                                }
612
                                return proj;
613
                        } catch (OpenException e){
614
                                e.showError();
615
                                //NotificationManager.addInfo("Al leer el proyecto", e);
616
                        }
617
                }  catch (MarshalException e) {
618
                        JOptionPane.showMessageDialog((Component)PluginServices.getMainFrame(),PluginServices.getText(this, "formato_incorrecto"));
619
                        //NotificationManager.addError("Al leer el proyecto", e);
620
                } catch (ValidationException e) {
621
                        JOptionPane.showMessageDialog((Component)PluginServices.getMainFrame(),PluginServices.getText(this, "formato_incorrecto"));
622
                        //NotificationManager.addError("Al leer el proyecto", e);
623
                }
624
                return null;
625
        }
626

    
627
        /**
628
         * Devuelve el proyecto.
629
         *
630
         * @return Proyecto.
631
         */
632
        public Project getProject() {
633
                return p;
634
        }
635

    
636
        /**
637
         * @see com.iver.andami.plugins.IExtension#isEnabled()
638
         */
639
        public boolean isEnabled() {
640
                return true;
641
        }
642

    
643
        /**
644
         * @see com.iver.andami.plugins.IExtension#isVisible()
645
         */
646
        public boolean isVisible() {
647
                return true;
648
        }
649

    
650
        /**
651
         * Sets the project
652
         * @param p
653
         */
654
        public void setProject(Project p){
655
                getProjectFrame().setProject(p);
656
                this.p=p;
657
        }
658

    
659
        //Finalizar y preguntar si se quiere guardar el proyecto o cancelar.
660
        public void terminate() {
661
                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

    
668
                        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
        }
676

    
677
        private void registerDocuments() {
678
                ProjectViewFactory.register();
679
                ProjectTableFactory.register();
680
                ProjectMapFactory.register();
681
        }
682
        private void initializeDocumentActionsExtensionPoint() {
683
                ExtensionPoints extensionPoints = ExtensionPointsSingleton.getInstance();
684
                if (!extensionPoints.containsKey("DocumentActions_View")) {
685
                        extensionPoints.put(
686
                                new ExtensionPoint(
687
                                        "DocumentActions_View",
688
                                        "Context menu options of the view document list" +
689
                                                " in the project window "+
690
                                                "(register instances of " +
691
                                                "com.iver.cit.gvsig.project.AbstractDocumentContextMenuAction)"
692
                                )
693
                        );
694
                }
695
                if (!extensionPoints.containsKey("DocumentActions_Table")) {
696
                        extensionPoints.put(
697
                                new ExtensionPoint(
698
                                        "DocumentActions_Table",
699
                                        "Context menu options of the table document list" +
700
                                                " in the project window "+
701
                                                "(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
                                        "Context menu options of the map document list" +
711
                                                " in the project window "+
712
                                                "(register instances of " +
713
                                                "com.iver.cit.gvsig.project.AbstractDocumentContextMenuAction)"
714
                                )
715
                        );
716
                }
717
        }
718

    
719
        public static String getPath() {
720
                return projectPath;
721
        }
722

    
723
        public static void setPath(String path) {
724
                projectPath = path;
725
        }
726

    
727
        public IWindow getProjectWindow() {
728
                return getProjectFrame();
729
        }
730
}