Java tutorial
/** * OrbisGIS is a java GIS application dedicated to research in GIScience. * OrbisGIS is developed by the GIS group of the DECIDE team of the * Lab-STICC CNRS laboratory, see <http://www.lab-sticc.fr/>. * * The GIS group of the DECIDE team is located at : * * Laboratoire Lab-STICC CNRS UMR 6285 * Equipe DECIDE * UNIVERSIT DE BRETAGNE-SUD * Institut Universitaire de Technologie de Vannes * 8, Rue Montaigne - BP 561 56017 Vannes Cedex * * OrbisGIS is distributed under GPL 3 license. * * Copyright (C) 2007-2014 CNRS (IRSTV FR CNRS 2488) * Copyright (C) 2015-2016 CNRS (Lab-STICC UMR CNRS 6285) * * This file is part of OrbisGIS. * * OrbisGIS is free software: you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * * OrbisGIS is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR * A PARTICULAR PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along with * OrbisGIS. If not, see <http://www.gnu.org/licenses/>. * * For more information, please consult: <http://www.orbisgis.org/> * or contact directly: * info_at_ orbisgis.org */ package org.orbisgis.mapeditor.map.mapsManager; import java.awt.event.ActionListener; import java.beans.EventHandler; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.util.Locale; import javax.swing.ImageIcon; import javax.swing.JMenuItem; import javax.swing.JOptionPane; import javax.swing.JPopupMenu; import org.apache.commons.io.FilenameUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.orbisgis.corejdbc.DataManager; import org.orbisgis.coremap.layerModel.LayerException; import org.orbisgis.coremap.layerModel.OwsMapContext; import org.orbisgis.coremap.renderer.se.common.Description; import org.orbisgis.mapeditor.map.icons.MapEditorIcons; import org.orbisgis.mapeditorapi.MapElement; import org.orbisgis.commons.progress.ProgressMonitor; import org.orbisgis.sif.UIFactory; import org.orbisgis.sif.common.MenuCommonFunctions; import org.orbisgis.sif.components.fstree.TreeNodeCustomIcon; import org.orbisgis.sif.edition.EditorManager; import org.xnap.commons.i18n.I18n; import org.xnap.commons.i18n.I18nFactory; /** * A map context on the client hard drive. * @author Nicolas Fortin */ public final class TreeLeafMapContextFile extends TreeLeafMapElement implements TreeNodeCustomIcon { private static final Logger LOGGER = LoggerFactory.getLogger(TreeLeafMapContextFile.class); private static final I18n I18N = I18nFactory.getI18n(TreeLeafMapContextFile.class); public TreeLeafMapContextFile(File mapContextFilePath, DataManager dataManager, EditorManager editorManager) { // For fast loading, take the filename as the ows title super(mapContextFilePath, dataManager, editorManager); setLabel(FilenameUtils.getBaseName(mapContextFilePath.getName())); setEditable(false); } /** * Create and save a minimal ows Map context file * @param fileName * @return */ public static boolean createEmptyMapContext(File fileName, DataManager dataManager) { //Create an empty map context OwsMapContext emptyMapContext = new OwsMapContext(dataManager); try { //Set minimal informations emptyMapContext.open(null); Description mapDescription = new Description(); mapDescription.addTitle(Locale.getDefault(), FilenameUtils.getBaseName(fileName.getName())); emptyMapContext.setDescription(mapDescription); emptyMapContext.close(null); emptyMapContext.write(new FileOutputStream(fileName)); } catch (FileNotFoundException ex) { LOGGER.error(I18N.tr("Map creation failed"), ex); return false; } catch (LayerException ex) { LOGGER.error(I18N.tr("Map creation failed"), ex); return false; } return true; } public void onDeleteFile() { if (getFilePath().exists()) { int result = JOptionPane.showConfirmDialog(UIFactory.getMainFrame(), I18N.tr("Are you sure you want to delete permanently the selected files ?"), I18N.tr("Remove the files"), JOptionPane.YES_NO_OPTION, JOptionPane.WARNING_MESSAGE); if (result == JOptionPane.YES_OPTION) { try { if (!getFilePath().delete()) { LOGGER.error(I18N.tr("Cannot remove the file")); } } catch (SecurityException ex) { LOGGER.error(I18N.tr("Cannot remove the file {0}", getFilePath().getName()), ex); } } else { return; } } model.removeNodeFromParent(this); } @Override public void feedPopupMenu(JPopupMenu menu) { super.feedPopupMenu(menu); if (!isLoaded()) { JMenuItem folderRemove = new JMenuItem(I18N.tr("Delete"), MapEditorIcons.getIcon("remove")); folderRemove.setToolTipText(I18N.tr("Remove permanently the map")); folderRemove.setActionCommand("delete"); folderRemove.addActionListener(EventHandler.create(ActionListener.class, this, "onDeleteFile")); MenuCommonFunctions.updateOrInsertMenuItem(menu, folderRemove); } } @Override public void setUserObject(Object o) { // The map context need to be open and close to edit the label, // this can be quite long and register some data sources.. } @Override public ImageIcon getLeafIcon() { return MapEditorIcons.getIcon("map"); } @Override public ImageIcon getClosedIcon() { throw new UnsupportedOperationException("Not supported."); } @Override public ImageIcon getOpenIcon() { throw new UnsupportedOperationException("Not supported."); } private OwsMapContext getMapContext(DataManager dataManager) throws FileNotFoundException { OwsMapContext mapContext = new OwsMapContext(dataManager); mapContext.read(new FileInputStream(getFilePath())); mapContext.setLocation(getFilePath().toURI()); return mapContext; } @Override public MapElement getMapElement(ProgressMonitor pm, DataManager dataManager) { try { MapElement mapElement = new MapElement(getMapContext(dataManager), getFilePath()); return mapElement; } catch (FileNotFoundException ex) { throw new IllegalStateException(ex); } } }