/******************************************************************************* * Copyright 2012 Geoscience Australia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package au.gov.ga.earthsci.layer.worldwind; import gov.nasa.worldwind.BasicModel; import gov.nasa.worldwind.WorldWind; import gov.nasa.worldwind.avlist.AVKey; import gov.nasa.worldwind.globes.Globe; import gov.nasa.worldwind.layers.LayerList; import java.io.File; import java.io.FileNotFoundException; import javax.annotation.PostConstruct; import javax.annotation.PreDestroy; import javax.inject.Inject; import javax.inject.Singleton; import org.eclipse.e4.core.contexts.IEclipseContext; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import au.gov.ga.earthsci.common.util.ConfigurationUtil; import au.gov.ga.earthsci.layer.DefaultLayers; import au.gov.ga.earthsci.layer.IPersistentLayer; import au.gov.ga.earthsci.layer.tree.FolderNode; import au.gov.ga.earthsci.layer.tree.ILayerNode; import au.gov.ga.earthsci.layer.tree.ILayerTreeNode; import au.gov.ga.earthsci.layer.tree.LayerPersister; /** * {@link BasicModel} subclass used to override specific functionality, such as * the LayerList creation. * * @author Michael de Hoog (michael.dehoog@ga.gov.au) */ @Singleton public class WorldWindModel extends BasicModel implements ITreeModel { private final ConstructionParameters constructionParameters; private final static Logger logger = LoggerFactory.getLogger(WorldWindModel.class); private static final String layerFilename = "layers.xml"; //$NON-NLS-1$ private static final File layerFile = ConfigurationUtil.getWorkspaceFile(layerFilename); @Inject public WorldWindModel() { this(new ConstructionParameters()); logger.info("Using layer file: " + layerFile); //$NON-NLS-1$ } private WorldWindModel(ConstructionParameters constructionParameters) { super(constructionParameters.getGlobe(), constructionParameters.getLayers()); this.constructionParameters = constructionParameters; } @Override public ILayerTreeNode getRootNode() { return constructionParameters.rootNode; } @PostConstruct public void loadLayers(IEclipseContext context) { loadRootNode(constructionParameters.rootNode, layerFile, context); } @PreDestroy public void saveLayers() { saveRootNode(constructionParameters.rootNode, layerFile); } protected void loadRootNode(ILayerTreeNode rootNode, File file, IEclipseContext context) { ILayerTreeNode loadedNode = null; try { loadedNode = LayerPersister.loadLayers(file); } catch (FileNotFoundException e) { //ignore } catch (Exception e) { logger.error("Error loading layer file", e); //$NON-NLS-1$ } if (!anyActualLayers(loadedNode)) { FolderNode folder = DefaultLayers.getLayers(); folder.setExpanded(true); rootNode.addChild(folder); } else { while (loadedNode.getChildCount() > 0) { ILayerTreeNode child = loadedNode.getChild(0); child.removeFromParent(); rootNode.addChild(child); } initializeAllLayers(rootNode, context); } } protected boolean anyActualLayers(ILayerTreeNode node) { if (node != null) { if (node instanceof ILayerNode && ((ILayerNode) node).isLayerSet()) { return true; } for (ILayerTreeNode child : node.getChildren()) { if (anyActualLayers(child)) { return true; } } } return false; } public static void initializeAllLayers(ILayerTreeNode node, IEclipseContext context) { if (node instanceof ILayerNode) { final ILayerNode layerNode = (ILayerNode) node; IPersistentLayer layer = layerNode.getLayer(); layer.initialize(layerNode, context); } for (ILayerTreeNode child : node.getChildren()) { initializeAllLayers(child, context); } } protected void saveRootNode(ILayerTreeNode rootNode, File file) { try { LayerPersister.saveLayers(rootNode, file); } catch (Exception e) { logger.error("Error saving layer file", e); //$NON-NLS-1$ } } public void resetToDefaultLayers(IEclipseContext context) { if (!layerFile.exists() || layerFile.delete()) { removeAllLayers(); loadLayers(context); } } public void removeAllLayers() { constructionParameters.rootNode.clearChildren(); } public void exportLayers(File file) { saveRootNode(constructionParameters.rootNode, file); } public void importLayers(File file, IEclipseContext context) { loadRootNode(constructionParameters.rootNode, file, context); } private static class ConstructionParameters { public final FolderNode rootNode; private final Globe globe; public ConstructionParameters() { rootNode = new FolderNode(); rootNode.setName("root"); //$NON-NLS-1$ rootNode.setExpanded(true); globe = (Globe) WorldWind.createConfigurationComponent(AVKey.GLOBE_CLASS_NAME); globe.setElevationModel(rootNode.getElevationModels()); } public Globe getGlobe() { return globe; } public LayerList getLayers() { return rootNode.getLayers(); } } }