Package org.geomajas.layer.geotools

Source Code of org.geomajas.layer.geotools.NonTypedFidMapperFactory

/*
* This is part of Geomajas, a GIS framework, http://www.geomajas.org/.
*
* Copyright 2008-2011 Geosparc nv, http://www.geosparc.com/, Belgium.
*
* The program is available in open source according to the GNU Affero
* General Public License. All contributions in this program are covered
* by the Geomajas Contributors License Agreement. For full licensing
* details, see LICENSE.txt in the project root.
*/
package org.geomajas.layer.geotools;

import java.io.IOException;
import java.sql.Connection;
import java.util.logging.Level;

import org.geotools.data.jdbc.fidmapper.DefaultFIDMapperFactory;
import org.geotools.data.jdbc.fidmapper.FIDMapper;

/**
* Improved fid mapper for gt-postgis.
*
* @author Jan De Moerloose
* @author Pieter De Graef
*/
public class NonTypedFidMapperFactory extends DefaultFIDMapperFactory {

  public NonTypedFidMapperFactory() {
    super();
  }

  public NonTypedFidMapperFactory(boolean returnFIDColumnsAsAttributes) {
    super(returnFIDColumnsAsAttributes);
  }

  /**
   * Get the appropriate FIDMapper for the specified table. Overridden to
   * return a non-typed mapper !!!!
   *
   * @param catalog catalog
   * @param schema schema
   * @param tableName table name
   * @param connection the active database connection to get table key information
   *
   * @return the appropriate FIDMapper for the specified table.
   *
   * @throws IOException if any error occurs.
   */
  public FIDMapper getMapper(String catalog, String schema, String tableName, Connection connection)
      throws IOException {
    ColumnInfo[] colInfos = getPkColumnInfo(catalog, schema, tableName, connection);
    FIDMapper mapper;

    if (colInfos.length == 0) {
      mapper = buildNoPKMapper(schema, tableName, connection);
    } else if (colInfos.length > 1) {
      mapper = buildMultiColumnFIDMapper(schema, tableName, connection, colInfos);
    } else {
      ColumnInfo ci = colInfos[0];
      mapper = buildSingleColumnFidMapper(schema, tableName, connection, ci);
    }

    if (mapper == null) {
      mapper = buildLastResortFidMapper(schema, tableName, connection, colInfos);

      if (mapper == null) {
        String msg = "Cannot map primary key to a FID mapper, primary key columns are:\n"
            + getColumnInfoList(colInfos);
        LOGGER.log(Level.SEVERE, msg);
        throw new IOException(msg);
      }
    }
    return mapper;
  }

}
TOP

Related Classes of org.geomajas.layer.geotools.NonTypedFidMapperFactory

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.