All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jgrasstools.gears.modules.v.vectorreshaper.OmsVectorReshaper Maven / Gradle / Ivy

The newest version!
/*
 * This file is part of JGrasstools (http://www.jgrasstools.org)
 * (C) HydroloGIS - www.hydrologis.com 
 * 
 * JGrasstools 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.
 *
 * This program 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 this program.  If not, see .
 */
package org.jgrasstools.gears.modules.v.vectorreshaper;

import static org.jgrasstools.gears.i18n.GearsMessages.OMSVECTORRESHAPER_AUTHORCONTACTS;
import static org.jgrasstools.gears.i18n.GearsMessages.OMSVECTORRESHAPER_AUTHORNAMES;
import static org.jgrasstools.gears.i18n.GearsMessages.OMSVECTORRESHAPER_DESCRIPTION;
import static org.jgrasstools.gears.i18n.GearsMessages.OMSVECTORRESHAPER_DOCUMENTATION;
import static org.jgrasstools.gears.i18n.GearsMessages.OMSVECTORRESHAPER_KEYWORDS;
import static org.jgrasstools.gears.i18n.GearsMessages.OMSVECTORRESHAPER_LABEL;
import static org.jgrasstools.gears.i18n.GearsMessages.OMSVECTORRESHAPER_LICENSE;
import static org.jgrasstools.gears.i18n.GearsMessages.OMSVECTORRESHAPER_NAME;
import static org.jgrasstools.gears.i18n.GearsMessages.OMSVECTORRESHAPER_STATUS;
import static org.jgrasstools.gears.i18n.GearsMessages.OMSVECTORRESHAPER_IN_VECTOR_DESCRIPTION;
import static org.jgrasstools.gears.i18n.GearsMessages.OMSVECTORRESHAPER_OUT_VECTOR_DESCRIPTION;
import static org.jgrasstools.gears.i18n.GearsMessages.OMSVECTORRESHAPER_P_CQL_DESCRIPTION;
import static org.jgrasstools.gears.i18n.GearsMessages.OMSVECTORRESHAPER_P_REMOVE_DESCRIPTION;

import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map.Entry;
import java.util.Set;

import oms3.annotations.Author;
import oms3.annotations.Description;
import oms3.annotations.Documentation;
import oms3.annotations.Execute;
import oms3.annotations.In;
import oms3.annotations.Keywords;
import oms3.annotations.Label;
import oms3.annotations.License;
import oms3.annotations.Name;
import oms3.annotations.Out;
import oms3.annotations.Status;
import oms3.annotations.UI;

import org.geotools.data.simple.SimpleFeatureCollection;
import org.geotools.feature.DefaultFeatureCollection;
import org.geotools.feature.FeatureIterator;
import org.geotools.feature.SchemaException;
import org.geotools.feature.simple.SimpleFeatureBuilder;
import org.geotools.feature.simple.SimpleFeatureTypeBuilder;
import org.geotools.filter.text.cql2.CQL;
import org.geotools.filter.text.cql2.CQLException;
import org.jgrasstools.gears.libs.exceptions.ModelsIllegalargumentException;
import org.jgrasstools.gears.libs.exceptions.ModelsRuntimeException;
import org.jgrasstools.gears.libs.modules.JGTConstants;
import org.jgrasstools.gears.libs.modules.JGTModel;
import org.opengis.feature.Feature;
import org.opengis.feature.FeatureVisitor;
import org.opengis.feature.simple.SimpleFeature;
import org.opengis.feature.simple.SimpleFeatureType;
import org.opengis.feature.type.AttributeDescriptor;
import org.opengis.feature.type.AttributeType;
import org.opengis.feature.type.GeometryType;
import org.opengis.filter.expression.Expression;
import org.opengis.filter.expression.PropertyName;
import org.opengis.referencing.crs.CoordinateReferenceSystem;

import com.vividsolutions.jts.geom.Geometry;

@Description(OMSVECTORRESHAPER_DESCRIPTION)
@Documentation(OMSVECTORRESHAPER_DOCUMENTATION)
@Author(name = OMSVECTORRESHAPER_AUTHORNAMES, contact = OMSVECTORRESHAPER_AUTHORCONTACTS)
@Keywords(OMSVECTORRESHAPER_KEYWORDS)
@Label(OMSVECTORRESHAPER_LABEL)
@Name(OMSVECTORRESHAPER_NAME)
@Status(OMSVECTORRESHAPER_STATUS)
@License(OMSVECTORRESHAPER_LICENSE)
public class OmsVectorReshaper extends JGTModel {

    @Description(OMSVECTORRESHAPER_IN_VECTOR_DESCRIPTION)
    @In
    public SimpleFeatureCollection inVector;

    @Description(OMSVECTORRESHAPER_P_CQL_DESCRIPTION)
    @UI(JGTConstants.MULTILINE_UI_HINT + "5")
    @In
    public String pCql = null;

    @Description(OMSVECTORRESHAPER_P_REMOVE_DESCRIPTION)
    @In
    public String pRemove = null;

    @Description(OMSVECTORRESHAPER_OUT_VECTOR_DESCRIPTION)
    @Out
    public SimpleFeatureCollection outVector;

    private SimpleFeature sample = null;

    @Execute
    public void process() throws Exception {
        if (!concatOr(outVector == null, doReset)) {
            return;
        }
        checkNull(inVector, pCql);

        List removeNames = new ArrayList();
        if (pRemove != null) {
            String[] split = pRemove.split(",");
            for( String string : split ) {
                removeNames.add(string.trim());
            }
        }

        final SimpleFeatureType originalFeatureType = inVector.getSchema();
        List attributeDescriptors = originalFeatureType.getAttributeDescriptors();

        LinkedHashMap functionMap = new LinkedHashMap();
        for( AttributeDescriptor attributeDescriptor : attributeDescriptors ) {
            String name = attributeDescriptor.getLocalName();
            if (removeNames.contains(name.trim())) {
                continue;
            }
            functionMap.put(name, name);
        }
        if (pCql != null && pCql.length() > 0) {
            String[] split = pCql.trim().split("\n");
            if (split != null && split.length > 0) {
                for( String line : split ) {
                    int indexOfEquals = line.indexOf('=');
                    if (indexOfEquals != -1) {
                        String key = line.substring(0, indexOfEquals);
                        String value = line.substring(indexOfEquals + 1);

                        functionMap.put(key.trim(), value.trim());
                    } else {
                        pm.errorMessage("Ignoring expression: " + line);
                    }
                }
            }
        } else {
            throw new ModelsIllegalargumentException("No CQL function has been provided.", this, pm);
        }
        StringBuilder sB = new StringBuilder();
        Set> entrySet = functionMap.entrySet();
        for( Entry entry : entrySet ) {
            sB.append("\n").append(entry.getKey()).append("=").append(entry.getValue());
        }

        String expressionString = sB.substring(1);

        sample = getSample();

        List names = createNameList(expressionString);
        final List expressions = createExpressionList(expressionString);
        SimpleFeatureType newFeatureType = createFeatureType(expressionString, originalFeatureType, names, expressions);

        outVector = new DefaultFeatureCollection();

        final SimpleFeatureBuilder build = new SimpleFeatureBuilder(newFeatureType);
        inVector.accepts(new FeatureVisitor(){
            public void visit( Feature rawFeature ) {
                SimpleFeature feature = (SimpleFeature) rawFeature;
                for( int i = 0; i < expressions.size(); i++ ) {
                    build.add(expressions.get(i).evaluate(feature));
                }
                SimpleFeature created = build.buildFeature(feature.getID());
                ((DefaultFeatureCollection) outVector).add(created);
            }
        }, null);

    }

    private SimpleFeature getSample() {
        FeatureIterator iterator = inVector.features();
        try {
            if (!iterator.hasNext()) {
                throw new ModelsRuntimeException("Input featurecollection is empty.", this.getClass().getSimpleName());
            }
            return iterator.next();
        } finally {
            iterator.close();
        }
    }

    /**
     * You cannot call this once the dialog is closed, see the okPressed method.
     * @param originalFeatureType 
     * @param expressions 
     * @param names 
     * @return a SimpleFeatureType created based on the contents of Text
     */
    private SimpleFeatureType createFeatureType( String expressionString, SimpleFeatureType originalFeatureType,
            List names, List expressions ) throws SchemaException {

        SimpleFeatureTypeBuilder build = new SimpleFeatureTypeBuilder();

        for( int i = 0; i < names.size(); i++ ) {
            String name = names.get(i);

            Expression expression = expressions.get(i);

            Object value = expression.evaluate(sample);

            // hack because sometimes expression returns null. I think the real bug is with
            // AttributeExpression
            Class< ? > binding = null;
            if (value == null) {
                if (expression instanceof PropertyName) {
                    String path = ((PropertyName) expression).getPropertyName();
                    AttributeType attributeType = sample.getFeatureType().getType(path);
                    if (attributeType == null) {
                        throw new ModelsIllegalargumentException("Attribute type is null", this.getClass().getSimpleName(), pm);
                    }
                    binding = attributeType.getClass();
                }
            } else {
                binding = value.getClass();
            }

            if (binding == null) {
                throw new ModelsIllegalargumentException("Binding is null", this.getClass().getSimpleName(), pm);
            }

            if (Geometry.class.isAssignableFrom(binding)) {
                CoordinateReferenceSystem crs;
                AttributeType originalAttributeType = originalFeatureType.getType(name);
                if (originalAttributeType instanceof GeometryType) {
                    crs = ((GeometryType) originalAttributeType).getCoordinateReferenceSystem();
                } else {
                    crs = originalFeatureType.getCoordinateReferenceSystem();
                }
                build.crs(crs);

                build.add(name, binding);
            } else {
                build.add(name, binding);
            }
        }
        build.setName(getNewTypeName(originalFeatureType.getTypeName()));

        return build.buildFeatureType();
    }

    /**
     * You cannot call this once the dialog is closed, see the okPressed method.
     * @param expressionString 
     * 
     * @return a SimpleFeatureType created based on the contents of Text
     */
    private List createNameList( String expressionString ) {
        List list = new ArrayList();

        String definition = expressionString.replaceAll("\r", "\n").replaceAll("[\n\r][\n\r]", "\n");
        for( String line : definition.split("\n") ) {
            int mark = line.indexOf("=");
            if (mark != -1) {
                String name = line.substring(0, mark).trim();
                if (list.contains(name)) {
                    System.out.println("Name already existing");
                    continue;
                }
                list.add(name);
            }
        }
        return list;
    }

    private List createExpressionList( String expressionString ) {
        List list = new ArrayList();

        String definition = expressionString.replaceAll("\r", "\n").replaceAll("[\n\r][\n\r]", "\n");
        for( String line : definition.split("\n") ) {
            int mark = line.indexOf("=");
            if (mark != -1) {
                String expressionDefinition = line.substring(mark + 1).trim();

                Expression expression;
                try {
                    expression = CQL.toExpression(expressionDefinition);
                } catch (CQLException e) {
                    throw new ModelsRuntimeException(e.toString(), this);
                }
                list.add(expression);
            }
        }
        return list;
    }

    static int count = 0;
    public String getNewTypeName( String typeName ) {
        return typeName + (count++);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy