|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package org.geotools.referencing.factory.epsg; |
|
|
|
import static org.geotools.measure.Units.DEGREE_ANGLE; |
|
import static org.geotools.measure.Units.DEGREE_MINUTE_SECOND; |
|
import static org.geotools.measure.Units.FOOT; |
|
import static org.geotools.measure.Units.GRADE; |
|
import static org.geotools.measure.Units.KILOMETER; |
|
import static org.geotools.measure.Units.METRE; |
|
import static org.geotools.measure.Units.MICRORADIAN; |
|
import static org.geotools.measure.Units.MINUTE_ANGLE; |
|
import static org.geotools.measure.Units.NAUTICAL_MILE; |
|
import static org.geotools.measure.Units.ONE; |
|
import static org.geotools.measure.Units.PPM; |
|
import static org.geotools.measure.Units.RADIAN; |
|
import static org.geotools.measure.Units.SECOND_ANGLE; |
|
import static org.geotools.measure.Units.SEXAGESIMAL_DMS; |
|
|
|
import java.awt.RenderingHints; |
|
import java.io.File; |
|
import java.io.IOException; |
|
import java.io.ObjectStreamException; |
|
import java.io.Serializable; |
|
import java.net.URI; |
|
import java.net.URISyntaxException; |
|
import java.sql.Connection; |
|
import java.sql.DatabaseMetaData; |
|
import java.sql.Date; |
|
import java.sql.PreparedStatement; |
|
import java.sql.ResultSet; |
|
import java.sql.ResultSetMetaData; |
|
import java.sql.SQLException; |
|
import java.sql.Statement; |
|
import java.util.AbstractMap; |
|
import java.util.AbstractSet; |
|
import java.util.ArrayList; |
|
import java.util.Collections; |
|
import java.util.HashMap; |
|
import java.util.HashSet; |
|
import java.util.IdentityHashMap; |
|
import java.util.Iterator; |
|
import java.util.LinkedHashSet; |
|
import java.util.List; |
|
import java.util.Map; |
|
import java.util.NoSuchElementException; |
|
import java.util.Set; |
|
import java.util.logging.Level; |
|
import java.util.logging.LogRecord; |
|
import javax.measure.Unit; |
|
import javax.measure.quantity.Angle; |
|
import javax.measure.quantity.Length; |
|
import javax.naming.NamingException; |
|
import javax.sql.DataSource; |
|
import org.geotools.measure.Units; |
|
import org.geotools.metadata.i18n.ErrorKeys; |
|
import org.geotools.metadata.i18n.Errors; |
|
import org.geotools.metadata.i18n.LoggingKeys; |
|
import org.geotools.metadata.i18n.Loggings; |
|
import org.geotools.metadata.i18n.Vocabulary; |
|
import org.geotools.metadata.i18n.VocabularyKeys; |
|
import org.geotools.metadata.iso.citation.CitationImpl; |
|
import org.geotools.metadata.iso.citation.Citations; |
|
import org.geotools.metadata.iso.extent.ExtentImpl; |
|
import org.geotools.metadata.iso.extent.GeographicBoundingBoxImpl; |
|
import org.geotools.metadata.iso.quality.AbsoluteExternalPositionalAccuracyImpl; |
|
import org.geotools.metadata.iso.quality.QuantitativeResultImpl; |
|
import org.geotools.parameter.DefaultParameterDescriptor; |
|
import org.geotools.parameter.DefaultParameterDescriptorGroup; |
|
import org.geotools.referencing.AbstractIdentifiedObject; |
|
import org.geotools.referencing.NamedIdentifier; |
|
import org.geotools.referencing.cs.DefaultCoordinateSystemAxis; |
|
import org.geotools.referencing.datum.BursaWolfParameters; |
|
import org.geotools.referencing.datum.DefaultGeodeticDatum; |
|
import org.geotools.referencing.factory.AbstractCachedAuthorityFactory; |
|
import org.geotools.referencing.factory.BufferedAuthorityFactory; |
|
import org.geotools.referencing.factory.DirectAuthorityFactory; |
|
import org.geotools.referencing.factory.IdentifiedObjectFinder; |
|
import org.geotools.referencing.operation.DefaultConcatenatedOperation; |
|
import org.geotools.referencing.operation.DefaultOperation; |
|
import org.geotools.referencing.operation.DefaultOperationMethod; |
|
import org.geotools.referencing.operation.DefiningConversion; |
|
import org.geotools.referencing.util.CRSUtilities; |
|
import org.geotools.util.LocalName; |
|
import org.geotools.util.ObjectCache; |
|
import org.geotools.util.ScopedName; |
|
import org.geotools.util.SimpleInternationalString; |
|
import org.geotools.util.TableWriter; |
|
import org.geotools.util.Version; |
|
import org.geotools.util.factory.GeoTools; |
|
import org.geotools.util.factory.Hints; |
|
import org.geotools.util.logging.Logging; |
|
import org.opengis.metadata.Identifier; |
|
import org.opengis.metadata.citation.Citation; |
|
import org.opengis.metadata.extent.Extent; |
|
import org.opengis.metadata.quality.EvaluationMethodType; |
|
import org.opengis.metadata.quality.PositionalAccuracy; |
|
import org.opengis.parameter.InvalidParameterValueException; |
|
import org.opengis.parameter.ParameterDescriptor; |
|
import org.opengis.parameter.ParameterNotFoundException; |
|
import org.opengis.parameter.ParameterValue; |
|
import org.opengis.parameter.ParameterValueGroup; |
|
import org.opengis.referencing.FactoryException; |
|
import org.opengis.referencing.IdentifiedObject; |
|
import org.opengis.referencing.NoSuchAuthorityCodeException; |
|
import org.opengis.referencing.NoSuchIdentifierException; |
|
import org.opengis.referencing.crs.CRSFactory; |
|
import org.opengis.referencing.crs.CompoundCRS; |
|
import org.opengis.referencing.crs.CoordinateReferenceSystem; |
|
import org.opengis.referencing.crs.GeneralDerivedCRS; |
|
import org.opengis.referencing.crs.GeocentricCRS; |
|
import org.opengis.referencing.crs.GeographicCRS; |
|
import org.opengis.referencing.crs.ProjectedCRS; |
|
import org.opengis.referencing.crs.SingleCRS; |
|
import org.opengis.referencing.cs.AxisDirection; |
|
import org.opengis.referencing.cs.CSFactory; |
|
import org.opengis.referencing.cs.CartesianCS; |
|
import org.opengis.referencing.cs.CoordinateSystem; |
|
import org.opengis.referencing.cs.CoordinateSystemAxis; |
|
import org.opengis.referencing.cs.EllipsoidalCS; |
|
import org.opengis.referencing.cs.SphericalCS; |
|
import org.opengis.referencing.cs.VerticalCS; |
|
import org.opengis.referencing.datum.Datum; |
|
import org.opengis.referencing.datum.DatumFactory; |
|
import org.opengis.referencing.datum.Ellipsoid; |
|
import org.opengis.referencing.datum.EngineeringDatum; |
|
import org.opengis.referencing.datum.GeodeticDatum; |
|
import org.opengis.referencing.datum.PrimeMeridian; |
|
import org.opengis.referencing.datum.VerticalDatum; |
|
import org.opengis.referencing.datum.VerticalDatumType; |
|
import org.opengis.referencing.operation.ConcatenatedOperation; |
|
import org.opengis.referencing.operation.Conversion; |
|
import org.opengis.referencing.operation.CoordinateOperation; |
|
import org.opengis.referencing.operation.MathTransform; |
|
import org.opengis.referencing.operation.OperationMethod; |
|
import org.opengis.referencing.operation.Projection; |
|
import org.opengis.referencing.operation.Transformation; |
|
import org.opengis.util.GenericName; |
|
import org.opengis.util.InternationalString; |
|
import si.uom.NonSI; |
|
import si.uom.SI; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@SuppressWarnings("PMD.CloseResource") |
|
public abstract class AbstractEpsgFactory extends AbstractCachedAuthorityFactory { |
|
|
|
|
|
private static final int BURSA_WOLF_MIN_CODE = 9603; |
|
|
|
|
|
private static final int BURSA_WOLF_MAX_CODE = 9607; |
|
|
|
|
|
private static final int ROTATION_FRAME_CODE = 9607; |
|
|
|
|
|
private static final int DUMMY_OPERATION = 1; |
|
|
|
|
|
private static final InternationalString TRANSFORMATION_ACCURACY = |
|
Vocabulary.formatInternational(VocabularyKeys.TRANSFORMATION_ACCURACY); |
|
|
|
|
|
|
|
|
|
|
|
|
|
private transient Citation authority; |
|
|
|
|
|
protected javax.sql.DataSource dataSource; |
|
|
|
|
|
|
|
|
|
|
|
|
|
private Connection connection; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private final Map<String, PreparedStatement> statements = new IdentityHashMap<>(); |
|
|
|
|
|
|
|
|
|
|
|
private int lastObjectType = -1; |
|
|
|
|
|
|
|
|
|
|
|
private transient String lastTableForName; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private final Map<String, AxisName> axisNames = new HashMap<>(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private final Map<String, Short> axisCounts = new HashMap<>(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private final Map<String, Boolean> codeProjection = new HashMap<>(); |
|
|
|
|
|
private final Map<String, LocalName> scopes = new HashMap<>(); |
|
|
|
|
|
|
|
|
|
|
|
private final Map<String, Object> properties = new HashMap<>(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private final Set<String> safetyGuard = new HashSet<>(); |
|
|
|
public AbstractEpsgFactory(final Hints userHints) throws FactoryException { |
|
super(MAXIMUM_PRIORITY - 20); |
|
|
|
|
|
hints.put(Hints.FORCE_LONGITUDE_FIRST_AXIS_ORDER, Boolean.FALSE); |
|
hints.put(Hints.FORCE_STANDARD_AXIS_DIRECTIONS, Boolean.FALSE); |
|
hints.put(Hints.FORCE_STANDARD_AXIS_UNITS, Boolean.FALSE); |
|
|
|
|
|
|
|
if (userHints != null) { |
|
Object hint = userHints.get(Hints.EPSG_DATA_SOURCE); |
|
if (hint instanceof String) { |
|
String name = (String) hint; |
|
try { |
|
|
|
|
|
|
|
dataSource = (DataSource) GeoTools.jndiLookup(name); |
|
} catch (NamingException e) { |
|
throw new FactoryException("A EPSG_DATA_SOURCE hint is required:" + e); |
|
} |
|
hints.put(Hints.EPSG_DATA_SOURCE, dataSource); |
|
} else if (hint instanceof DataSource) { |
|
dataSource = (DataSource) hint; |
|
hints.put(Hints.EPSG_DATA_SOURCE, dataSource); |
|
} else { |
|
throw new FactoryException("A EPSG_DATA_SOURCE hint is required."); |
|
} |
|
} else { |
|
throw new FactoryException("A EPSG_DATA_SOURCE hint is required."); |
|
} |
|
} |
|
|
|
public AbstractEpsgFactory(final Hints userHints, final javax.sql.DataSource dataSource) { |
|
super(MAXIMUM_PRIORITY - 20); |
|
|
|
this.dataSource = dataSource; |
|
|
|
|
|
hints.put(Hints.FORCE_LONGITUDE_FIRST_AXIS_ORDER, Boolean.FALSE); |
|
hints.put(Hints.FORCE_STANDARD_AXIS_DIRECTIONS, Boolean.FALSE); |
|
hints.put(Hints.FORCE_STANDARD_AXIS_UNITS, Boolean.FALSE); |
|
hints.put(Hints.EPSG_DATA_SOURCE, dataSource); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
public AbstractEpsgFactory(final Hints userHints, final Connection connection) { |
|
super(MAXIMUM_PRIORITY - 20, userHints); |
|
|
|
|
|
hints.put(Hints.FORCE_LONGITUDE_FIRST_AXIS_ORDER, Boolean.FALSE); |
|
hints.put(Hints.FORCE_STANDARD_AXIS_DIRECTIONS, Boolean.FALSE); |
|
hints.put(Hints.FORCE_STANDARD_AXIS_UNITS, Boolean.FALSE); |
|
this.connection = connection; |
|
ensureNonNull("connection", connection); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
public synchronized Citation getAuthority() { |
|
if (authority == null) |
|
try { |
|
final String query = |
|
adaptSQL( |
|
"SELECT VERSION_NUMBER, VERSION_DATE FROM [Version History]" |
|
+ " ORDER BY VERSION_DATE DESC"); |
|
final DatabaseMetaData metadata = getConnection().getMetaData(); |
|
try (Statement statement = getConnection().createStatement(); |
|
ResultSet result = statement.executeQuery(query)) { |
|
if (result.next()) { |
|
final String version = result.getString(1); |
|
final Date date = result.getDate(2); |
|
final String engine = metadata.getDatabaseProductName(); |
|
final CitationImpl c = new CitationImpl(Citations.EPSG); |
|
c.getAlternateTitles() |
|
.add( |
|
Vocabulary.formatInternational( |
|
VocabularyKeys.DATA_BASE_$3, |
|
"EPSG", |
|
version, |
|
engine)); |
|
c.setEdition(new SimpleInternationalString(version)); |
|
c.setEditionDate(date); |
|
authority = (Citation) c.unmodifiable(); |
|
hints.put( |
|
Hints.VERSION, |
|
new Version(version)); |
|
} else { |
|
authority = Citations.EPSG; |
|
} |
|
} |
|
} catch (SQLException exception) { |
|
Logging.unexpectedException( |
|
LOGGER, AbstractEpsgFactory.class, "getAuthority", exception); |
|
return Citations.EPSG; |
|
} |
|
return authority; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
public synchronized String getBackingStoreDescription() throws FactoryException { |
|
final Citation authority = getAuthority(); |
|
try (TableWriter table = new TableWriter(null, " ")) { |
|
final Vocabulary resources = Vocabulary.getResources(null); |
|
CharSequence cs; |
|
if ((cs = authority.getEdition()) != null) { |
|
table.write(resources.getString(VocabularyKeys.VERSION_OF_$1, "EPSG")); |
|
table.write(':'); |
|
table.nextColumn(); |
|
table.write(cs.toString()); |
|
table.nextLine(); |
|
} |
|
try { |
|
String s; |
|
final DatabaseMetaData metadata = getConnection().getMetaData(); |
|
if ((s = metadata.getDatabaseProductName()) != null) { |
|
table.write(resources.getLabel(VocabularyKeys.DATABASE_ENGINE)); |
|
table.nextColumn(); |
|
table.write(s); |
|
if ((s = metadata.getDatabaseProductVersion()) != null) { |
|
table.write(' '); |
|
table.write(resources.getString(VocabularyKeys.VERSION_$1, s)); |
|
} |
|
table.nextLine(); |
|
} |
|
if ((s = metadata.getURL()) != null) { |
|
table.write(resources.getLabel(VocabularyKeys.DATABASE_URL)); |
|
table.nextColumn(); |
|
table.write(s); |
|
table.nextLine(); |
|
} |
|
} catch (SQLException exception) { |
|
throw new FactoryException(exception); |
|
} |
|
return table.toString(); |
|
} catch (IOException e) { |
|
throw new RuntimeException(e); |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
public Map<RenderingHints.Key, ?> getImplementationHints() { |
|
if (authority == null) { |
|
|
|
getAuthority(); |
|
} |
|
return super.getImplementationHints(); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
protected synchronized Set<String> generateAuthorityCodes(final Class type) |
|
throws FactoryException { |
|
Set<String> result = new HashSet<>(); |
|
for (final TableInfo table : TABLES_INFO) { |
|
if (table.isTypeOf(type)) { |
|
final AuthorityCodeSet codes = new AuthorityCodeSet(table, type); |
|
result.addAll(codes); |
|
} |
|
} |
|
return result; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
public InternationalString getDescriptionText(final String code) throws FactoryException { |
|
IdentifiedObject identifiedObject = createObject(code); |
|
final Identifier identifier = identifiedObject.getName(); |
|
if (identifier instanceof GenericName) { |
|
return ((GenericName) identifier).toInternationalString(); |
|
} |
|
return new SimpleInternationalString(identifier.getCode()); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private PreparedStatement prepareStatement(final String key, final String sql) |
|
throws SQLException { |
|
assert Thread.holdsLock(this); |
|
PreparedStatement stmt = statements.get(key); |
|
if (stmt == null) { |
|
stmt = getConnection().prepareStatement(adaptSQL(sql)); |
|
statements.put(key, stmt); |
|
} |
|
return stmt; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private static String getString( |
|
final ResultSet result, final int columnIndex, final String code) |
|
throws SQLException, FactoryException { |
|
final String value = result.getString(columnIndex); |
|
ensureNonNull(result, columnIndex, code); |
|
return value.trim(); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
private static String getString( |
|
final ResultSet result, final int columnIndex, final String code, final int columnFault) |
|
throws SQLException, FactoryException { |
|
final String str = result.getString(columnIndex); |
|
if (result.wasNull()) { |
|
final ResultSetMetaData metadata = result.getMetaData(); |
|
final String column = metadata.getColumnName(columnFault); |
|
final String table = metadata.getTableName(columnFault); |
|
result.close(); |
|
throw new FactoryException( |
|
Errors.format(ErrorKeys.NULL_VALUE_IN_TABLE_$3, code, column, table)); |
|
} |
|
return str.trim(); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private static double getDouble( |
|
final ResultSet result, final int columnIndex, final String code) |
|
throws SQLException, FactoryException { |
|
final double value = result.getDouble(columnIndex); |
|
ensureNonNull(result, columnIndex, code); |
|
return value; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private static int getInt(final ResultSet result, final int columnIndex, final String code) |
|
throws SQLException, FactoryException { |
|
final int value = result.getInt(columnIndex); |
|
ensureNonNull(result, columnIndex, code); |
|
return value; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
private static void ensureNonNull( |
|
final ResultSet result, final int columnIndex, final String code) |
|
throws SQLException, FactoryException { |
|
if (result.wasNull()) { |
|
final ResultSetMetaData metadata = result.getMetaData(); |
|
final String column = metadata.getColumnName(columnIndex); |
|
final String table = metadata.getTableName(columnIndex); |
|
result.close(); |
|
throw new FactoryException( |
|
Errors.format(ErrorKeys.NULL_VALUE_IN_TABLE_$3, code, column, table)); |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private String toPrimaryKey( |
|
final Class type, |
|
final String code, |
|
final String table, |
|
final String codeColumn, |
|
final String nameColumn) |
|
throws SQLException, FactoryException { |
|
assert Thread.holdsLock(this); |
|
String identifier = trimAuthority(code); |
|
if (!isPrimaryKey(identifier)) { |
|
|
|
|
|
|
|
|
|
|
|
final String KEY = "NumericalIdentifier"; |
|
PreparedStatement statement = statements.get(KEY); |
|
if (statement != null) { |
|
if (!table.equals(lastTableForName)) { |
|
statements.remove(KEY); |
|
statement.close(); |
|
statement = null; |
|
lastTableForName = null; |
|
} |
|
} |
|
if (statement == null) { |
|
final String query = |
|
"SELECT " + codeColumn + " FROM " + table + " WHERE " + nameColumn + " = ?"; |
|
statement = getConnection().prepareStatement(adaptSQL(query)); |
|
statements.put(KEY, statement); |
|
} |
|
statement.setString(1, identifier); |
|
identifier = null; |
|
try (ResultSet result = statement.executeQuery()) { |
|
while (result.next()) { |
|
identifier = ensureSingleton(result.getString(1), identifier, code); |
|
} |
|
} |
|
if (identifier == null) { |
|
throw noSuchAuthorityCode(type, code); |
|
} |
|
} |
|
return identifier; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private static <T> T ensureSingleton(final T newValue, final T oldValue, final String code) |
|
throws FactoryException { |
|
if (oldValue == null) { |
|
return newValue; |
|
} |
|
if (oldValue.equals(newValue)) { |
|
return oldValue; |
|
} |
|
throw new FactoryException(Errors.format(ErrorKeys.DUPLICATED_VALUES_$1, code)); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private Map<String, Object> generateProperties( |
|
final String name, final String code, String remarks) |
|
throws SQLException, FactoryException { |
|
properties.clear(); |
|
final Citation authority = getAuthority(); |
|
if (name != null) { |
|
properties.put(IdentifiedObject.NAME_KEY, new NamedIdentifier(authority, name.trim())); |
|
} |
|
if (code != null) { |
|
final InternationalString edition = authority.getEdition(); |
|
final String version = (edition != null) ? edition.toString() : null; |
|
properties.put( |
|
IdentifiedObject.IDENTIFIERS_KEY, |
|
new NamedIdentifier(authority, code.trim(), version)); |
|
} |
|
if (remarks != null && (remarks = remarks.trim()).length() != 0) { |
|
properties.put(IdentifiedObject.REMARKS_KEY, remarks); |
|
} |
|
|
|
|
|
|
|
List<GenericName> alias = null; |
|
final PreparedStatement stmt = |
|
prepareStatement( |
|
"Alias", |
|
"SELECT NAMING_SYSTEM_NAME, ALIAS" |
|
+ " FROM [Alias] INNER JOIN [Naming System]" |
|
+ " ON [Alias].NAMING_SYSTEM_CODE =" |
|
+ " [Naming System].NAMING_SYSTEM_CODE" |
|
+ " WHERE OBJECT_CODE = ?"); |
|
stmt.setString(1, code); |
|
try (ResultSet result = stmt.executeQuery()) { |
|
while (result.next()) { |
|
final String scope = result.getString(1); |
|
final String local = getString(result, 2, code); |
|
final GenericName generic; |
|
if (scope == null) { |
|
generic = new LocalName(local); |
|
} else { |
|
LocalName cached = scopes.get(scope); |
|
if (cached == null) { |
|
cached = new LocalName(scope); |
|
scopes.put(scope, cached); |
|
} |
|
generic = new ScopedName(cached, local); |
|
} |
|
if (alias == null) { |
|
alias = new ArrayList<>(); |
|
} |
|
alias.add(generic); |
|
} |
|
} |
|
if (alias != null) { |
|
properties.put( |
|
IdentifiedObject.ALIAS_KEY, alias.toArray(new GenericName[alias.size()])); |
|
} |
|
return properties; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private Map<String, Object> generateProperties( |
|
final String name, final String code, String area, String scope, String remarks) |
|
throws SQLException, FactoryException { |
|
final Map<String, Object> properties = generateProperties(name, code, remarks); |
|
if (area != null && (area = area.trim()).length() != 0) { |
|
final Extent extent = generateExtent(area); |
|
properties.put(Datum.DOMAIN_OF_VALIDITY_KEY, extent); |
|
} |
|
if (scope != null && (scope = scope.trim()).length() != 0) { |
|
properties.put(Datum.SCOPE_KEY, scope); |
|
} |
|
return properties; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
@SuppressWarnings("PMD.OverrideBothEqualsAndHashcode") |
|
public synchronized IdentifiedObject generateObject(final String code) throws FactoryException { |
|
ensureNonNull("code", code); |
|
final String KEY = "IdentifiedObject"; |
|
PreparedStatement stmt = statements.get(KEY); |
|
StringBuilder query = null; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
final String epsg = trimAuthority(code); |
|
final boolean isPrimaryKey = isPrimaryKey(epsg); |
|
final int tupleToSkip = isPrimaryKey ? lastObjectType : -1; |
|
int index = -1; |
|
for (int i = -1; i < TABLES_INFO.length; i++) { |
|
if (i == tupleToSkip) { |
|
|
|
|
|
|
|
continue; |
|
} |
|
try { |
|
if (i >= 0) { |
|
final TableInfo table = TABLES_INFO[i]; |
|
final String column = isPrimaryKey ? table.codeColumn : table.nameColumn; |
|
if (column == null) { |
|
continue; |
|
} |
|
if (query == null) { |
|
query = new StringBuilder("SELECT "); |
|
} |
|
query.setLength(7); |
|
query.append(table.codeColumn); |
|
query.append(" FROM "); |
|
query.append(table.table); |
|
query.append(" WHERE "); |
|
query.append(column); |
|
query.append(" = ?"); |
|
if (isPrimaryKey) { |
|
assert !statements.containsKey(KEY) : table; |
|
stmt = prepareStatement(KEY, query.toString()); |
|
} else { |
|
|
|
stmt = getConnection().prepareStatement(adaptSQL(query.toString())); |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
stmt.setString(1, epsg); |
|
try (final ResultSet result = stmt.executeQuery()) { |
|
final boolean present = result.next(); |
|
if (present) { |
|
if (index >= 0) { |
|
throw new FactoryException( |
|
Errors.format(ErrorKeys.DUPLICATED_VALUES_$1, code)); |
|
} |
|
index = (i < 0) ? lastObjectType : i; |
|
if (isPrimaryKey) { |
|
|
|
|
|
break; |
|
} |
|
} |
|
} |
|
if (isPrimaryKey) { |
|
if (statements.remove(KEY) == null) { |
|
throw new AssertionError(code); |
|
} |
|
} |
|
stmt.close(); |
|
} catch (SQLException exception) { |
|
throw databaseFailure(IdentifiedObject.class, code, exception); |
|
} |
|
} |
|
|
|
|
|
|
|
if (isPrimaryKey) { |
|
lastObjectType = index; |
|
} |
|
if (index >= 0) { |
|
switch (index) { |
|
case 0: |
|
return createCoordinateReferenceSystem(code); |
|
case 1: |
|
return createCoordinateSystem(code); |
|
case 2: |
|
return createCoordinateSystemAxis(code); |
|
case 3: |
|
return createDatum(code); |
|
case 4: |
|
return createEllipsoid(code); |
|
case 5: |
|
return createPrimeMeridian(code); |
|
case 6: |
|
return createCoordinateOperation(code); |
|
case 7: |
|
return generateOperationMethod(code); |
|
case 8: |
|
return generateParameterDescriptor(code); |
|
case 9: |
|
break; |
|
default: |
|
throw new AssertionError(index); |
|
} |
|
} |
|
return super.createObject(code); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
public synchronized Unit<?> generateUnit(final String code) throws FactoryException { |
|
ensureNonNull("code", code); |
|
Unit<?> returnValue = null; |
|
try { |
|
final String primaryKey = |
|
toPrimaryKey( |
|
Unit.class, code, "[Unit of Measure]", "UOM_CODE", "UNIT_OF_MEAS_NAME"); |
|
final PreparedStatement stmt = |
|
prepareStatement( |
|
"Unit", |
|
"SELECT UOM_CODE," |
|
+ " FACTOR_B," |
|
+ " FACTOR_C," |
|
+ " TARGET_UOM_CODE" |
|
+ " FROM [Unit of Measure]" |
|
+ " WHERE UOM_CODE = ?"); |
|
stmt.setString(1, primaryKey); |
|
try (ResultSet result = stmt.executeQuery()) { |
|
while (result.next()) { |
|
final int source = getInt(result, 1, code); |
|
final double b = result.getDouble(2); |
|
final double c = result.getDouble(3); |
|
final int target = getInt(result, 4, code); |
|
final Unit<?> base = getUnit(target); |
|
if (base == null) { |
|
throw noSuchAuthorityCode(Unit.class, String.valueOf(target)); |
|
} |
|
Unit unit = getUnit(source); |
|
if (unit == null) { |
|
|
|
if (b != 0 && c != 0) { |
|
unit = (b == c) ? base : base.multiply(b / c); |
|
} else { |
|
|
|
throw new FactoryException("Unsupported unit: " + code); |
|
} |
|
} |
|
returnValue = ensureSingleton(unit, returnValue, code); |
|
} |
|
} |
|
} catch (SQLException exception) { |
|
throw databaseFailure(Unit.class, code, exception); |
|
} |
|
if (returnValue == null) { |
|
throw noSuchAuthorityCode(Unit.class, code); |
|
} |
|
return returnValue; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
public synchronized Ellipsoid generateEllipsoid(final String code) throws FactoryException { |
|
ensureNonNull("code", code); |
|
Ellipsoid returnValue = null; |
|
try { |
|
final String primaryKey = |
|
toPrimaryKey( |
|
Ellipsoid.class, |
|
code, |
|
"[Ellipsoid]", |
|
"ELLIPSOID_CODE", |
|
"ELLIPSOID_NAME"); |
|
final PreparedStatement stmt = |
|
prepareStatement( |
|
"Ellipsoid", |
|
"SELECT ELLIPSOID_CODE," |
|
+ " ELLIPSOID_NAME," |
|
+ " SEMI_MAJOR_AXIS," |
|
+ " INV_FLATTENING," |
|
+ " SEMI_MINOR_AXIS," |
|
+ " UOM_CODE," |
|
+ " REMARKS" |
|
+ " FROM [Ellipsoid]" |
|
+ " WHERE ELLIPSOID_CODE = ?"); |
|
stmt.setString(1, primaryKey); |
|
try (ResultSet result = stmt.executeQuery()) { |
|
while (result.next()) { |
|
|
|
|
|
|
|
|
|
|
|
final String epsg = getString(result, 1, code); |
|
final String name = getString(result, 2, code); |
|
final double semiMajorAxis = getDouble(result, 3, code); |
|
final double inverseFlattening = result.getDouble(4); |
|
final double semiMinorAxis = result.getDouble(5); |
|
final String unitCode = getString(result, 6, code); |
|
final String remarks = result.getString(7); |
|
@SuppressWarnings("unchecked") |
|
final Unit<Length> unit = (Unit<Length>) createUnit(unitCode); |
|
final Map<String, Object> properties = generateProperties(name, epsg, remarks); |
|
final Ellipsoid ellipsoid; |
|
if (inverseFlattening == 0) { |
|
if (semiMinorAxis == 0) { |
|
|
|
final String column = result.getMetaData().getColumnName(3); |
|
result.close(); |
|
throw new FactoryException( |
|
Errors.format(ErrorKeys.NULL_VALUE_IN_TABLE_$3, code, column)); |
|
} else { |
|
|
|
ellipsoid = |
|
factories |
|
.getDatumFactory() |
|
.createEllipsoid( |
|
properties, semiMajorAxis, semiMinorAxis, unit); |
|
} |
|
} else { |
|
if (semiMinorAxis != 0) { |
|
|
|
|
|
final LogRecord record = |
|
Loggings.format( |
|
Level.WARNING, LoggingKeys.AMBIGUOUS_ELLIPSOID, code); |
|
record.setLoggerName(LOGGER.getName()); |
|
LOGGER.log(record); |
|
} |
|
ellipsoid = |
|
factories |
|
.getDatumFactory() |
|
.createFlattenedSphere( |
|
properties, semiMajorAxis, inverseFlattening, unit); |
|
} |
|
|
|
|
|
|
|
|
|
returnValue = ensureSingleton(ellipsoid, returnValue, code); |
|
} |
|
} |
|
} catch (SQLException exception) { |
|
throw databaseFailure(Ellipsoid.class, code, exception); |
|
} |
|
if (returnValue == null) { |
|
throw noSuchAuthorityCode(Ellipsoid.class, code); |
|
} |
|
return returnValue; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
public synchronized PrimeMeridian generatePrimeMeridian(final String code) |
|
throws FactoryException { |
|
ensureNonNull("code", code); |
|
PrimeMeridian returnValue = null; |
|
try { |
|
final String primaryKey = |
|
toPrimaryKey( |
|
PrimeMeridian.class, |
|
code, |
|
"[Prime Meridian]", |
|
"PRIME_MERIDIAN_CODE", |
|
"PRIME_MERIDIAN_NAME"); |
|
final PreparedStatement stmt = |
|
prepareStatement( |
|
"PrimeMeridian", |
|
"SELECT PRIME_MERIDIAN_CODE," |
|
+ " PRIME_MERIDIAN_NAME," |
|
+ " GREENWICH_LONGITUDE," |
|
+ " UOM_CODE," |
|
+ " REMARKS" |
|
+ " FROM [Prime Meridian]" |
|
+ " WHERE PRIME_MERIDIAN_CODE = ?"); |
|
stmt.setString(1, primaryKey); |
|
try (ResultSet result = stmt.executeQuery()) { |
|
while (result.next()) { |
|
final String epsg = getString(result, 1, code); |
|
final String name = getString(result, 2, code); |
|
final double longitude = getDouble(result, 3, code); |
|
final String unit_code = getString(result, 4, code); |
|
final String remarks = result.getString(5); |
|
@SuppressWarnings("unchecked") |
|
final Unit<javax.measure.quantity.Angle> unit = |
|
(Unit<Angle>) createUnit(unit_code); |
|
final Map<String, Object> properties = generateProperties(name, epsg, remarks); |
|
PrimeMeridian primeMeridian = |
|
factories |
|
.getDatumFactory() |
|
.createPrimeMeridian(properties, longitude, unit); |
|
returnValue = ensureSingleton(primeMeridian, returnValue, code); |
|
} |
|
} |
|
} catch (SQLException exception) { |
|
throw databaseFailure(PrimeMeridian.class, code, exception); |
|
} |
|
if (returnValue == null) { |
|
throw noSuchAuthorityCode(PrimeMeridian.class, code); |
|
} |
|
return returnValue; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public synchronized Extent generateExtent(final String code) throws FactoryException { |
|
ensureNonNull("code", code); |
|
Extent returnValue = null; |
|
try { |
|
final String primaryKey = |
|
toPrimaryKey(Extent.class, code, "[Area]", "AREA_CODE", "AREA_NAME"); |
|
final PreparedStatement stmt = |
|
prepareStatement( |
|
"Area", |
|
"SELECT AREA_OF_USE," |
|
+ " AREA_SOUTH_BOUND_LAT," |
|
+ " AREA_NORTH_BOUND_LAT," |
|
+ " AREA_WEST_BOUND_LON," |
|
+ " AREA_EAST_BOUND_LON" |
|
+ " FROM [Area]" |
|
+ " WHERE AREA_CODE = ?"); |
|
stmt.setString(1, primaryKey); |
|
try (ResultSet result = stmt.executeQuery()) { |
|
while (result.next()) { |
|
ExtentImpl extent = null; |
|
final String description = result.getString(1); |
|
if (description != null) { |
|
extent = new ExtentImpl(); |
|
extent.setDescription(new SimpleInternationalString(description)); |
|
} |
|
final double ymin = result.getDouble(2); |
|
if (!result.wasNull()) { |
|
final double ymax = result.getDouble(3); |
|
if (!result.wasNull()) { |
|
final double xmin = result.getDouble(4); |
|
if (!result.wasNull()) { |
|
final double xmax = result.getDouble(5); |
|
if (!result.wasNull()) { |
|
if (extent == null) { |
|
extent = new ExtentImpl(); |
|
} |
|
extent.setGeographicElements( |
|
Collections.singleton( |
|
new GeographicBoundingBoxImpl( |
|
xmin, xmax, ymin, ymax))); |
|
} |
|
} |
|
} |
|
} |
|
if (extent != null) { |
|
returnValue = |
|
(Extent) ensureSingleton(extent.unmodifiable(), returnValue, code); |
|
} |
|
} |
|
} |
|
} catch (SQLException exception) { |
|
throw databaseFailure(Extent.class, code, exception); |
|
} |
|
if (returnValue == null) { |
|
throw noSuchAuthorityCode(Extent.class, code); |
|
} |
|
return returnValue; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private BursaWolfParameters[] generateBursaWolfParameters( |
|
final String code, final ResultSet toClose) throws SQLException, FactoryException { |
|
if (safetyGuard.contains(code)) { |
|
|
|
|
|
|
|
|
|
|
|
return null; |
|
} |
|
PreparedStatement stmt = |
|
prepareStatement( |
|
"BursaWolfParametersSet", |
|
"SELECT CO.COORD_OP_CODE," |
|
+ " CO.COORD_OP_METHOD_CODE," |
|
+ " CRS2.DATUM_CODE" |
|
+ " FROM [Coordinate_Operation] AS CO" |
|
+ " INNER JOIN [Coordinate Reference System] AS CRS2" |
|
+ " ON CO.TARGET_CRS_CODE = CRS2.COORD_REF_SYS_CODE" |
|
+ " WHERE CO.COORD_OP_METHOD_CODE >= " |
|
+ BURSA_WOLF_MIN_CODE |
|
+ " AND CO.COORD_OP_METHOD_CODE <= " |
|
+ BURSA_WOLF_MAX_CODE |
|
+ " AND CO.COORD_OP_CODE <> " |
|
+ DUMMY_OPERATION |
|
+ " AND CO.SOURCE_CRS_CODE IN (" |
|
+ " SELECT CRS1.COORD_REF_SYS_CODE " |
|
+ " FROM [Coordinate Reference System] AS CRS1 " |
|
+ " WHERE CRS1.DATUM_CODE = ?)" |
|
+ " ORDER BY CRS2.DATUM_CODE," |
|
+ " ABS(CO.DEPRECATED), CO.COORD_OP_ACCURACY," |
|
+ " CO.COORD_OP_CODE DESC"); |
|
stmt.setString(1, code); |
|
List<Object> bwInfos = null; |
|
try (ResultSet result = stmt.executeQuery()) { |
|
while (result.next()) { |
|
final String operation = getString(result, 1, code); |
|
final int method = getInt(result, 2, code); |
|
final String datum = getString(result, 3, code); |
|
if (bwInfos == null) { |
|
bwInfos = new ArrayList<>(); |
|
} |
|
bwInfos.add(new BursaWolfInfo(operation, method, datum)); |
|
} |
|
} |
|
if (bwInfos == null) { |
|
|
|
return null; |
|
} |
|
toClose.close(); |
|
|
|
|
|
|
|
|
|
|
|
int size = bwInfos.size(); |
|
if (size > 1) { |
|
final BursaWolfInfo[] codes = bwInfos.toArray(new BursaWolfInfo[size]); |
|
sort(codes); |
|
bwInfos.clear(); |
|
final Set<String> added = new HashSet<>(); |
|
for (final BursaWolfInfo candidate : codes) { |
|
if (added.add(candidate.target)) { |
|
bwInfos.add(candidate); |
|
} |
|
} |
|
size = bwInfos.size(); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
stmt = |
|
prepareStatement( |
|
"BursaWolfParameters", |
|
"SELECT PARAMETER_CODE," |
|
+ " PARAMETER_VALUE," |
|
+ " UOM_CODE" |
|
+ " FROM [Coordinate_Operation Parameter Value]" |
|
+ " WHERE COORD_OP_CODE = ?" |
|
+ " AND COORD_OP_METHOD_CODE = ?"); |
|
for (int i = 0; i < size; i++) { |
|
final BursaWolfInfo info = (BursaWolfInfo) bwInfos.get(i); |
|
final GeodeticDatum datum; |
|
try { |
|
safetyGuard.add(code); |
|
datum = createGeodeticDatum(info.target); |
|
} finally { |
|
safetyGuard.remove(code); |
|
} |
|
final BursaWolfParameters parameters = new BursaWolfParameters(datum); |
|
stmt.setString(1, info.operation); |
|
stmt.setInt(2, info.method); |
|
try (ResultSet result = stmt.executeQuery()) { |
|
while (result.next()) { |
|
setBursaWolfParameter( |
|
parameters, |
|
getInt(result, 1, info.operation), |
|
getDouble(result, 2, info.operation), |
|
createUnit(getString(result, 3, info.operation))); |
|
} |
|
} |
|
if (info.method == ROTATION_FRAME_CODE) { |
|
|
|
|
|
parameters.ex = -parameters.ex; |
|
parameters.ey = -parameters.ey; |
|
parameters.ey = -parameters.ey; |
|
} |
|
bwInfos.set(i, parameters); |
|
} |
|
return bwInfos.toArray(new BursaWolfParameters[size]); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
public synchronized Datum generateDatum(final String code) throws FactoryException { |
|
ensureNonNull("code", code); |
|
Datum returnValue = null; |
|
try { |
|
final String primaryKey = |
|
toPrimaryKey(Datum.class, code, "[Datum]", "DATUM_CODE", "DATUM_NAME"); |
|
final PreparedStatement stmt = |
|
prepareStatement( |
|
"Datum", |
|
"SELECT DATUM_CODE," |
|
+ " DATUM_NAME," |
|
+ " DATUM_TYPE," |
|
+ " ORIGIN_DESCRIPTION," |
|
+ " REALIZATION_EPOCH," |
|
+ " AREA_OF_USE_CODE," |
|
+ " DATUM_SCOPE," |
|
+ " REMARKS," |
|
+ " ELLIPSOID_CODE," |
|
+ " PRIME_MERIDIAN_CODE" |
|
+ " FROM [Datum]" |
|
+ " WHERE DATUM_CODE = ?"); |
|
stmt.setString(1, primaryKey); |
|
try (ResultSet result = stmt.executeQuery()) { |
|
boolean exit = false; |
|
while (result.next()) { |
|
final String epsg = getString(result, 1, code); |
|
final String name = getString(result, 2, code); |
|
final String type = getString(result, 3, code).trim().toLowerCase(); |
|
final String anchor = result.getString(4); |
|
final Date epoch = result.getDate(5); |
|
final String area = result.getString(6); |
|
final String scope = result.getString(7); |
|
final String remarks = result.getString(8); |
|
Map<String, Object> properties = |
|
generateProperties(name, epsg, area, scope, remarks); |
|
if (anchor != null) { |
|
properties.put(Datum.ANCHOR_POINT_KEY, anchor); |
|
} |
|
if (epoch != null) |
|
try { |
|
properties.put(Datum.REALIZATION_EPOCH_KEY, epoch); |
|
} catch (NumberFormatException exception) { |
|
|
|
Logging.unexpectedException( |
|
LOGGER, AbstractEpsgFactory.class, "createDatum", exception); |
|
} |
|
final DatumFactory factory = factories.getDatumFactory(); |
|
final Datum datum; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (type.equals("geodetic")) { |
|
properties = new HashMap<>(properties); |
|
final Ellipsoid ellipsoid = createEllipsoid(getString(result, 9, code)); |
|
final PrimeMeridian meridian = |
|
createPrimeMeridian(getString(result, 10, code)); |
|
final BursaWolfParameters[] param = |
|
generateBursaWolfParameters(primaryKey, result); |
|
|
|
if (param != null) { |
|
exit = true; |
|
properties.put(DefaultGeodeticDatum.BURSA_WOLF_KEY, param); |
|
} |
|
datum = factory.createGeodeticDatum(properties, ellipsoid, meridian); |
|
} else if (type.equals("vertical")) { |
|
|
|
datum = factory.createVerticalDatum(properties, VerticalDatumType.GEOIDAL); |
|
} else if (type.equals("engineering")) { |
|
datum = factory.createEngineeringDatum(properties); |
|
} else { |
|
result.close(); |
|
throw new FactoryException(Errors.format(ErrorKeys.UNKNOW_TYPE_$1, type)); |
|
} |
|
returnValue = ensureSingleton(datum, returnValue, code); |
|
if (exit) { |
|
|
|
|
|
return returnValue; |
|
} |
|
} |
|
} |
|
} catch (SQLException exception) { |
|
throw databaseFailure(Datum.class, code, exception); |
|
} |
|
if (returnValue == null) { |
|
throw noSuchAuthorityCode(Datum.class, code); |
|
} |
|
return returnValue; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
private AxisName getAxisName(final String code) throws FactoryException { |
|
assert Thread.holdsLock(this); |
|
AxisName returnValue = axisNames.get(code); |
|
if (returnValue == null) |
|
try { |
|
final PreparedStatement stmt = |
|
prepareStatement( |
|
"AxisName", |
|
"SELECT COORD_AXIS_NAME, DESCRIPTION, REMARKS" |
|
+ " FROM [Coordinate Axis Name]" |
|
+ " WHERE COORD_AXIS_NAME_CODE = ?"); |
|
stmt.setString(1, code); |
|
try (ResultSet result = stmt.executeQuery()) { |
|
while (result.next()) { |
|
final String name = getString(result, 1, code); |
|
String description = result.getString(2); |
|
String remarks = result.getString(3); |
|
if (description == null) { |
|
description = remarks; |
|
} else if (remarks != null) { |
|
description += System.getProperty("line.separator", "\n") + remarks; |
|
} |
|
final AxisName axis = new AxisName(name, description); |
|
returnValue = ensureSingleton(axis, returnValue, code); |
|
} |
|
} |
|
if (returnValue == null) { |
|
throw noSuchAuthorityCode(AxisName.class, code); |
|
} |
|
axisNames.put(code, returnValue); |
|
} catch (SQLException exception) { |
|
throw databaseFailure(AxisName.class, code, exception); |
|
} |
|
return returnValue; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
public synchronized CoordinateSystemAxis generateCoordinateSystemAxis(final String code) |
|
throws FactoryException { |
|
ensureNonNull("code", code); |
|
CoordinateSystemAxis returnValue = null; |
|
try { |
|
final PreparedStatement stmt = |
|
prepareStatement( |
|
"Axis", |
|
"SELECT COORD_AXIS_CODE," |
|
+ " COORD_AXIS_NAME_CODE," |
|
+ " COORD_AXIS_ORIENTATION," |
|
+ " COORD_AXIS_ABBREVIATION," |
|
+ " UOM_CODE" |
|
+ " FROM [Coordinate Axis]" |
|
+ " WHERE COORD_AXIS_CODE = ?"); |
|
stmt.setString(1, code); |
|
try (ResultSet result = stmt.executeQuery()) { |
|
while (result.next()) { |
|
final String epsg = getString(result, 1, code); |
|
final String nameCode = getString(result, 2, code); |
|
final String orientation = getString(result, 3, code); |
|
final String abbreviation = getString(result, 4, code); |
|
final String unit = getString(result, 5, code); |
|
AxisDirection direction; |
|
try { |
|
direction = DefaultCoordinateSystemAxis.getDirection(orientation); |
|
} catch (NoSuchElementException exception) { |
|
if (orientation.equalsIgnoreCase("Geocentre > equator/PM")) { |
|
direction = AxisDirection.OTHER; |
|
|
|
} else if (orientation.equalsIgnoreCase("Geocentre > equator/90dE")) { |
|
direction = AxisDirection.EAST; |
|
} else if (orientation.equalsIgnoreCase("Geocentre > north pole")) { |
|
direction = AxisDirection.NORTH; |
|
} else { |
|
throw new FactoryException(exception); |
|
} |
|
} |
|
final AxisName an = getAxisName(nameCode); |
|
final Map<String, Object> properties = |
|
generateProperties(an.name, epsg, an.description); |
|
final CSFactory factory = factories.getCSFactory(); |
|
final CoordinateSystemAxis axis = |
|
factory.createCoordinateSystemAxis( |
|
properties, abbreviation, direction, createUnit(unit)); |
|
returnValue = ensureSingleton(axis, returnValue, code); |
|
} |
|
} |
|
} catch (SQLException exception) { |
|
throw databaseFailure(CoordinateSystemAxis.class, code, exception); |
|
} |
|
if (returnValue == null) { |
|
throw noSuchAuthorityCode(CoordinateSystemAxis.class, code); |
|
} |
|
return returnValue; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private CoordinateSystemAxis[] generateAxisForCoordinateSystem( |
|
final String code, final int dimension) throws SQLException, FactoryException { |
|
assert Thread.holdsLock(this); |
|
final CoordinateSystemAxis[] axis = new CoordinateSystemAxis[dimension]; |
|
final PreparedStatement stmt = |
|
prepareStatement( |
|
"AxisOrder", |
|
"SELECT COORD_AXIS_CODE" |
|
+ " FROM [Coordinate Axis]" |
|
+ " WHERE COORD_SYS_CODE = ?" |
|
+ " ORDER BY [ORDER]"); |
|
|
|
|
|
stmt.setString(1, code); |
|
int i = 0; |
|
try (ResultSet result = stmt.executeQuery()) { |
|
while (result.next()) { |
|
final String axisCode = getString(result, 1, code); |
|
if (i < axis.length) { |
|
|
|
|
|
axis[i] = createCoordinateSystemAxis(axisCode); |
|
} |
|
++i; |
|
} |
|
} |
|
if (i != axis.length) { |
|
throw new FactoryException( |
|
Errors.format(ErrorKeys.MISMATCHED_DIMENSION_$2, axis.length, i)); |
|
} |
|
return axis; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
public synchronized CoordinateSystem generateCoordinateSystem(final String code) |
|
throws FactoryException { |
|
ensureNonNull("code", code); |
|
CoordinateSystem returnValue = null; |
|
final PreparedStatement stmt; |
|
try { |
|
final String primaryKey = |
|
toPrimaryKey( |
|
CoordinateSystem.class, |
|
code, |
|
"[Coordinate System]", |
|
"COORD_SYS_CODE", |
|
"COORD_SYS_NAME"); |
|
stmt = |
|
prepareStatement( |
|
"CoordinateSystem", |
|
"SELECT COORD_SYS_CODE," |
|
+ " COORD_SYS_NAME," |
|
+ " COORD_SYS_TYPE," |
|
+ " DIMENSION," |
|
+ " REMARKS" |
|
+ " FROM [Coordinate System]" |
|
+ " WHERE COORD_SYS_CODE = ?"); |
|
stmt.setString(1, primaryKey); |
|
try (ResultSet result = stmt.executeQuery()) { |
|
while (result.next()) { |
|
final String epsg = getString(result, 1, code); |
|
final String name = getString(result, 2, code); |
|
final String type = getString(result, 3, code).trim().toLowerCase(); |
|
final int dimension = getInt(result, 4, code); |
|
final String remarks = result.getString(5); |
|
final CoordinateSystemAxis[] axis = |
|
generateAxisForCoordinateSystem(primaryKey, dimension); |
|
final Map<String, Object> properties = |
|
generateProperties(name, epsg, remarks); |
|
final CSFactory factory = factories.getCSFactory(); |
|
CoordinateSystem cs = null; |
|
if (type.equals("ellipsoidal")) { |
|
switch (dimension) { |
|
case 2: |
|
cs = factory.createEllipsoidalCS(properties, axis[0], axis[1]); |
|
break; |
|
case 3: |
|
cs = |
|
factory.createEllipsoidalCS( |
|
properties, axis[0], axis[1], axis[2]); |
|
break; |
|
} |
|
} else if (type.equals("cartesian")) { |
|
switch (dimension) { |
|
case 2: |
|
cs = factory.createCartesianCS(properties, axis[0], axis[1]); |
|
break; |
|
case 3: |
|
cs = |
|
factory.createCartesianCS( |
|
properties, axis[0], axis[1], axis[2]); |
|
break; |
|
} |
|
} else if (type.equals("spherical")) { |
|
switch (dimension) { |
|
case 3: |
|
cs = |
|
factory.createSphericalCS( |
|
properties, axis[0], axis[1], axis[2]); |
|
break; |
|
} |
|
} else if (type.equals("vertical") || type.equals("gravity-related")) { |
|
switch (dimension) { |
|
case 1: |
|
cs = factory.createVerticalCS(properties, axis[0]); |
|
break; |
|
} |
|
} else if (type.equals("linear")) { |
|
switch (dimension) { |
|
case 1: |
|
cs = factory.createLinearCS(properties, axis[0]); |
|
break; |
|
} |
|
} else if (type.equals("polar")) { |
|
switch (dimension) { |
|
case 2: |
|
cs = factory.createPolarCS(properties, axis[0], axis[1]); |
|
break; |
|
} |
|
} else if (type.equals("cylindrical")) { |
|
switch (dimension) { |
|
case 3: |
|
cs = |
|
factory.createCylindricalCS( |
|
properties, axis[0], axis[1], axis[2]); |
|
break; |
|
} |
|
} else if (type.equals("affine")) { |
|
switch (dimension) { |
|
case 2: |
|
cs = factory.createAffineCS(properties, axis[0], axis[1]); |
|
break; |
|
case 3: |
|
cs = factory.createAffineCS(properties, axis[0], axis[1], axis[2]); |
|
break; |
|
} |
|
} else { |
|
result.close(); |
|
throw new FactoryException(Errors.format(ErrorKeys.UNKNOW_TYPE_$1, type)); |
|
} |
|
if (cs == null) { |
|
result.close(); |
|
throw new FactoryException( |
|
Errors.format(ErrorKeys.UNEXPECTED_DIMENSION_FOR_CS_$1, type)); |
|
} |
|
returnValue = ensureSingleton(cs, returnValue, code); |
|
} |
|
} |
|
} catch (SQLException exception) { |
|
throw databaseFailure(CoordinateSystem.class, code, exception); |
|
} |
|
if (returnValue == null) { |
|
throw noSuchAuthorityCode(CoordinateSystem.class, code); |
|
} |
|
return returnValue; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
private String toPrimaryKeyCRS(final String code) throws SQLException, FactoryException { |
|
return toPrimaryKey( |
|
CoordinateReferenceSystem.class, |
|
code, |
|
"[Coordinate Reference System]", |
|
"COORD_REF_SYS_CODE", |
|
"COORD_REF_SYS_NAME"); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
public synchronized CoordinateReferenceSystem generateCoordinateReferenceSystem( |
|
final String code) throws FactoryException { |
|
ensureNonNull("code", code); |
|
CoordinateReferenceSystem returnValue = null; |
|
try { |
|
final String primaryKey = toPrimaryKeyCRS(code); |
|
final PreparedStatement stmt = |
|
prepareStatement( |
|
"CoordinateReferenceSystem", |
|
"SELECT COORD_REF_SYS_CODE," |
|
+ " COORD_REF_SYS_NAME," |
|
+ " AREA_OF_USE_CODE," |
|
+ " CRS_SCOPE," |
|
+ " REMARKS," |
|
+ " COORD_REF_SYS_KIND," |
|
+ " COORD_SYS_CODE," |
|
+ " DATUM_CODE," |
|
+ " SOURCE_GEOGCRS_CODE," |
|
+ " PROJECTION_CONV_CODE," |
|
+ " CMPD_HORIZCRS_CODE," |
|
+ " CMPD_VERTCRS_CODE" |
|
+ " FROM [Coordinate Reference System]" |
|
+ " WHERE COORD_REF_SYS_CODE = ?"); |
|
stmt.setString(1, primaryKey); |
|
boolean exit = false; |
|
try (ResultSet result = stmt.executeQuery()) { |
|
while (result.next()) { |
|
final String epsg = getString(result, 1, code); |
|
final String name = getString(result, 2, code); |
|
final String area = result.getString(3); |
|
final String scope = result.getString(4); |
|
final String remarks = result.getString(5); |
|
final String type = getString(result, 6, code); |
|
|
|
|
|
|
|
final CRSFactory factory = factories.getCRSFactory(); |
|
final CoordinateReferenceSystem crs; |
|
|
|
|
|
|
|
|
|
|
|
|
|
if (type.equalsIgnoreCase("geographic 2D") |
|
|| type.equalsIgnoreCase("geographic 3D")) { |
|
final String csCode = getString(result, 7, code); |
|
final String dmCode = result.getString(8); |
|
final EllipsoidalCS cs = createEllipsoidalCS(csCode); |
|
final GeodeticDatum datum; |
|
if (dmCode != null) { |
|
datum = createGeodeticDatum(dmCode); |
|
} else { |
|
final String geoCode = getString(result, 9, code, 8); |
|
result.close(); |
|
exit = true; |
|
final GeographicCRS baseCRS = createGeographicCRS(geoCode); |
|
datum = baseCRS.getDatum(); |
|
} |
|
final Map<String, Object> properties = |
|
generateProperties(name, epsg, area, scope, remarks); |
|
crs = factory.createGeographicCRS(properties, datum, cs); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
else if (type.equalsIgnoreCase("projected")) { |
|
final String csCode = getString(result, 7, code); |
|
final String geoCode = getString(result, 9, code); |
|
final String opCode = getString(result, 10, code); |
|
result.close(); |
|
exit = true; |
|
final CartesianCS cs = createCartesianCS(csCode); |
|
final GeographicCRS baseCRS = createGeographicCRS(geoCode); |
|
final CoordinateOperation op = createCoordinateOperation(opCode); |
|
if (op instanceof Conversion) { |
|
final Map<String, Object> properties = |
|
generateProperties(name, epsg, area, scope, remarks); |
|
crs = |
|
factory.createProjectedCRS( |
|
properties, baseCRS, (Conversion) op, cs); |
|
} else { |
|
throw noSuchAuthorityCode(Projection.class, opCode); |
|
} |
|
} |
|
|
|
|
|
|
|
else if (type.equalsIgnoreCase("vertical")) { |
|
final String csCode = getString(result, 7, code); |
|
final String dmCode = getString(result, 8, code); |
|
final VerticalCS cs = createVerticalCS(csCode); |
|
final VerticalDatum datum = createVerticalDatum(dmCode); |
|
final Map<String, Object> properties = |
|
generateProperties(name, epsg, area, scope, remarks); |
|
crs = factory.createVerticalCRS(properties, datum, cs); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
else if (type.equalsIgnoreCase("compound")) { |
|
final String code1 = getString(result, 11, code); |
|
final String code2 = getString(result, 12, code); |
|
result.close(); |
|
exit = true; |
|
final CoordinateReferenceSystem crs1, crs2; |
|
if (!safetyGuard.add(epsg)) { |
|
throw recursiveCall(CompoundCRS.class, epsg); |
|
} |
|
try { |
|
crs1 = createCoordinateReferenceSystem(code1); |
|
crs2 = createCoordinateReferenceSystem(code2); |
|
} finally { |
|
safetyGuard.remove(epsg); |
|
} |
|
|
|
final Map<String, Object> properties = |
|
generateProperties(name, epsg, area, scope, remarks); |
|
crs = factory.createCompoundCRS(properties, crs1, crs2); |
|
} |
|
|
|
|
|
|
|
else if (type.equalsIgnoreCase("geocentric")) { |
|
final String csCode = getString(result, 7, code); |
|
final String dmCode = getString(result, 8, code); |
|
final CoordinateSystem cs = createCoordinateSystem(csCode); |
|
final GeodeticDatum datum = createGeodeticDatum(dmCode); |
|
final Map<String, Object> properties = |
|
generateProperties(name, epsg, area, scope, remarks); |
|
if (cs instanceof CartesianCS) { |
|
crs = factory.createGeocentricCRS(properties, datum, (CartesianCS) cs); |
|
} else if (cs instanceof SphericalCS) { |
|
crs = factory.createGeocentricCRS(properties, datum, (SphericalCS) cs); |
|
} else { |
|
result.close(); |
|
throw new FactoryException( |
|
Errors.format( |
|
ErrorKeys.ILLEGAL_COORDINATE_SYSTEM_FOR_CRS_$2, |
|
cs.getClass(), |
|
GeocentricCRS.class)); |
|
} |
|
} |
|
|
|
|
|
|
|
else if (type.equalsIgnoreCase("engineering")) { |
|
final String csCode = getString(result, 7, code); |
|
final String dmCode = getString(result, 8, code); |
|
final CoordinateSystem cs = createCoordinateSystem(csCode); |
|
final EngineeringDatum datum = createEngineeringDatum(dmCode); |
|
final Map<String, Object> properties = |
|
generateProperties(name, epsg, area, scope, remarks); |
|
crs = factory.createEngineeringCRS(properties, datum, cs); |
|
} |
|
|
|
|
|
|
|
else { |
|
result.close(); |
|
throw new FactoryException(Errors.format(ErrorKeys.UNKNOW_TYPE_$1, type)); |
|
} |
|
returnValue = ensureSingleton(crs, returnValue, code); |
|
if (exit) { |
|
|
|
|
|
return returnValue; |
|
} |
|
} |
|
} |
|
} catch (SQLException exception) { |
|
throw databaseFailure(CoordinateReferenceSystem.class, code, exception); |
|
} |
|
if (returnValue == null) { |
|
throw noSuchAuthorityCode(CoordinateReferenceSystem.class, code); |
|
} |
|
return returnValue; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public synchronized ParameterDescriptor<?> generateParameterDescriptor(final String code) |
|
throws FactoryException { |
|
ensureNonNull("code", code); |
|
ParameterDescriptor<?> returnValue = null; |
|
final PreparedStatement stmt; |
|
try { |
|
final String primaryKey = |
|
toPrimaryKey( |
|
ParameterDescriptor.class, |
|
code, |
|
"[Coordinate_Operation Parameter]", |
|
"PARAMETER_CODE", |
|
"PARAMETER_NAME"); |
|
stmt = |
|
prepareStatement( |
|
"ParameterDescriptor", |
|
"SELECT PARAMETER_CODE," |
|
+ " PARAMETER_NAME," |
|
+ " DESCRIPTION" |
|
+ " FROM [Coordinate_Operation Parameter]" |
|
+ " WHERE PARAMETER_CODE = ?"); |
|
stmt.setString(1, primaryKey); |
|
try (ResultSet result = stmt.executeQuery()) { |
|
while (result.next()) { |
|
final String epsg = getString(result, 1, code); |
|
final String name = getString(result, 2, code); |
|
final String remarks = result.getString(3); |
|
final Unit<?> unit; |
|
final Class<?> type; |
|
|
|
|
|
|
|
|
|
|
|
|
|
final PreparedStatement units = |
|
prepareStatement( |
|
"ParameterUnit", |
|
"SELECT MIN(UOM_CODE) AS UOM," |
|
+ " MIN(PARAM_VALUE_FILE_REF) AS FILEREF" |
|
+ " FROM [Coordinate_Operation Parameter Value]" |
|
+ " WHERE (PARAMETER_CODE = ?)" |
|
+ " GROUP BY UOM_CODE" |
|
+ " ORDER BY COUNT(UOM_CODE) DESC"); |
|
units.setString(1, epsg); |
|
try (final ResultSet resultUnits = units.executeQuery()) { |
|
if (resultUnits.next()) { |
|
String element = resultUnits.getString(1); |
|
unit = (element != null) ? createUnit(element) : null; |
|
element = resultUnits.getString(2); |
|
type = |
|
(element != null && element.trim().length() != 0) |
|
? URI.class |
|
: double.class; |
|
} else { |
|
unit = null; |
|
type = double.class; |
|
} |
|
} |
|
|
|
|
|
|
|
final Map<String, Object> properties = generateProperties(name, epsg, remarks); |
|
@SuppressWarnings("unchecked") |
|
final ParameterDescriptor<?> descriptor = |
|
new DefaultParameterDescriptor( |
|
properties, type, null, null, null, null, unit, true); |
|
returnValue = ensureSingleton(descriptor, returnValue, code); |
|
} |
|
} |
|
} catch (SQLException exception) { |
|
throw databaseFailure(OperationMethod.class, code, exception); |
|
} |
|
if (returnValue == null) { |
|
throw noSuchAuthorityCode(OperationMethod.class, code); |
|
} |
|
return returnValue; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private ParameterDescriptor[] generateParameterDescriptors(final String method) |
|
throws FactoryException, SQLException { |
|
final PreparedStatement stmt = |
|
prepareStatement( |
|
"ParameterDescriptors", |
|
"SELECT PARAMETER_CODE" |
|
+ " FROM [Coordinate_Operation Parameter Usage]" |
|
+ " WHERE COORD_OP_METHOD_CODE = ?" |
|
+ " ORDER BY SORT_ORDER"); |
|
stmt.setString(1, method); |
|
try (ResultSet results = stmt.executeQuery()) { |
|
final List<ParameterDescriptor<? extends Object>> descriptors = new ArrayList<>(); |
|
while (results.next()) { |
|
final String param = getString(results, 1, method); |
|
descriptors.add(generateParameterDescriptor(param)); |
|
} |
|
return descriptors.toArray(new ParameterDescriptor[descriptors.size()]); |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void fillParameterValues( |
|
final String method, final String operation, final ParameterValueGroup parameters) |
|
throws FactoryException, SQLException { |
|
final PreparedStatement stmt = |
|
prepareStatement( |
|
"ParameterValues", |
|
"SELECT CP.PARAMETER_NAME," |
|
+ " CV.PARAMETER_VALUE," |
|
+ " CV.PARAM_VALUE_FILE_REF," |
|
+ " CV.UOM_CODE" |
|
+ " FROM ([Coordinate_Operation Parameter Value] AS CV" |
|
+ " INNER JOIN [Coordinate_Operation Parameter] AS CP" |
|
+ " ON CV.PARAMETER_CODE = CP.PARAMETER_CODE)" |
|
+ " INNER JOIN [Coordinate_Operation Parameter Usage] AS CU" |
|
+ " ON (CP.PARAMETER_CODE = CU.PARAMETER_CODE)" |
|
+ " AND (CV.COORD_OP_METHOD_CODE = CU.COORD_OP_METHOD_CODE)" |
|
+ " WHERE CV.COORD_OP_METHOD_CODE = ?" |
|
+ " AND CV.COORD_OP_CODE = ?" |
|
+ " ORDER BY CU.SORT_ORDER"); |
|
stmt.setString(1, method); |
|
stmt.setString(2, operation); |
|
try (ResultSet result = stmt.executeQuery()) { |
|
while (result.next()) { |
|
final String name = getString(result, 1, operation); |
|
final double value = result.getDouble(2); |
|
final Unit<?> unit; |
|
Object reference; |
|
if (result.wasNull()) { |
|
|
|
|
|
|
|
|
|
reference = getString(result, 3, operation); |
|
try { |
|
reference = new URI((String) reference); |
|
} catch (URISyntaxException exception) { |
|
|
|
reference = new File((String) reference); |
|
} |
|
unit = null; |
|
} else { |
|
reference = null; |
|
final String unitCode = result.getString(4); |
|
unit = (unitCode != null) ? createUnit(unitCode) : null; |
|
} |
|
final ParameterValue<?> param; |
|
try { |
|
param = parameters.parameter(name); |
|
} catch (ParameterNotFoundException exception) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
final NoSuchIdentifierException e = |
|
new NoSuchIdentifierException( |
|
Errors.format(ErrorKeys.CANT_SET_PARAMETER_VALUE_$1, name), |
|
name); |
|
e.initCause(exception); |
|
throw e; |
|
} |
|
try { |
|
if (reference != null) { |
|
param.setValue(reference); |
|
} else if (unit != null) { |
|
param.setValue(value, unit); |
|
} else { |
|
param.setValue(value); |
|
} |
|
} catch (InvalidParameterValueException exception) { |
|
throw new FactoryException( |
|
Errors.format(ErrorKeys.CANT_SET_PARAMETER_VALUE_$1, name), exception); |
|
} |
|
} |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public synchronized OperationMethod generateOperationMethod(final String code) |
|
throws FactoryException { |
|
ensureNonNull("code", code); |
|
OperationMethod returnValue = null; |
|
final PreparedStatement stmt; |
|
try { |
|
final String primaryKey = |
|
toPrimaryKey( |
|
OperationMethod.class, |
|
code, |
|
"[Coordinate_Operation Method]", |
|
"COORD_OP_METHOD_CODE", |
|
"COORD_OP_METHOD_NAME"); |
|
stmt = |
|
prepareStatement( |
|
"OperationMethod", |
|
"SELECT COORD_OP_METHOD_CODE," |
|
+ " COORD_OP_METHOD_NAME," |
|
+ " FORMULA," |
|
+ " REMARKS" |
|
+ " FROM [Coordinate_Operation Method]" |
|
+ " WHERE COORD_OP_METHOD_CODE = ?"); |
|
stmt.setString(1, primaryKey); |
|
try (ResultSet result = stmt.executeQuery()) { |
|
OperationMethod method = null; |
|
while (result.next()) { |
|
final String epsg = getString(result, 1, code); |
|
final String name = getString(result, 2, code); |
|
final String formula = result.getString(3); |
|
final String remarks = result.getString(4); |
|
final int encoded = getDimensionsForMethod(epsg); |
|
final int sourceDimensions = encoded >>> 16; |
|
final int targetDimensions = encoded & 0xFFFF; |
|
final ParameterDescriptor[] descriptors = generateParameterDescriptors(epsg); |
|
final Map<String, Object> properties = generateProperties(name, epsg, remarks); |
|
if (formula != null) { |
|
properties.put(OperationMethod.FORMULA_KEY, formula); |
|
} |
|
method = |
|
new DefaultOperationMethod( |
|
properties, |
|
sourceDimensions, |
|
targetDimensions, |
|
new DefaultParameterDescriptorGroup(properties, descriptors)); |
|
returnValue = ensureSingleton(method, returnValue, code); |
|
} |
|
} |
|
} catch (SQLException exception) { |
|
throw databaseFailure(OperationMethod.class, code, exception); |
|
} |
|
if (returnValue == null) { |
|
throw noSuchAuthorityCode(OperationMethod.class, code); |
|
} |
|
return returnValue; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private int getDimensionsForMethod(final String code) throws SQLException { |
|
final PreparedStatement stmt = |
|
prepareStatement( |
|
"MethodDimensions", |
|
"SELECT SOURCE_CRS_CODE," |
|
+ " TARGET_CRS_CODE" |
|
+ " FROM [Coordinate_Operation]" |
|
+ " WHERE COORD_OP_METHOD_CODE = ?" |
|
+ " AND SOURCE_CRS_CODE IS NOT NULL" |
|
+ " AND TARGET_CRS_CODE IS NOT NULL"); |
|
stmt.setString(1, code); |
|
final Map<Dimensions, Dimensions> dimensions = new HashMap<>(); |
|
final Dimensions temp = new Dimensions((2 << 16) | 2); |
|
Dimensions max = temp; |
|
try (ResultSet result = stmt.executeQuery()) { |
|
while (result.next()) { |
|
final short sourceDimensions = getDimensionForCRS(result.getString(1)); |
|
final short targetDimensions = getDimensionForCRS(result.getString(2)); |
|
temp.encoded = (sourceDimensions << 16) | (targetDimensions); |
|
Dimensions candidate = dimensions.get(temp); |
|
if (candidate == null) { |
|
candidate = new Dimensions(temp.encoded); |
|
dimensions.put(candidate, candidate); |
|
} |
|
if (++candidate.occurences > max.occurences) { |
|
max = candidate; |
|
} |
|
} |
|
} |
|
return max.encoded; |
|
} |
|
|
|
|
|
private static final class Dimensions { |
|
|
|
int encoded; |
|
|
|
int occurences; |
|
|
|
Dimensions(final int e) { |
|
encoded = e; |
|
} |
|
|
|
@Override |
|
public int hashCode() { |
|
return encoded; |
|
} |
|
|
|
@Override |
|
public boolean equals(final Object object) { |
|
return (object instanceof Dimensions) && ((Dimensions) object).encoded == encoded; |
|
} |
|
|
|
@Override |
|
public String toString() { |
|
return "[(" |
|
+ (encoded >>> 16) |
|
+ ',' |
|
+ (encoded & 0xFFFF) |
|
+ ")\u00D7" |
|
+ occurences |
|
+ ']'; |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
private short getDimensionForCRS(final String code) throws SQLException { |
|
final PreparedStatement stmt; |
|
final Short cached = axisCounts.get(code); |
|
final short dimension; |
|
if (cached == null) { |
|
stmt = |
|
prepareStatement( |
|
"Dimension", |
|
" SELECT COUNT(COORD_AXIS_CODE)" |
|
+ " FROM [Coordinate Axis]" |
|
+ " WHERE COORD_SYS_CODE = (SELECT COORD_SYS_CODE " |
|
+ " FROM [Coordinate Reference System]" |
|
+ " WHERE COORD_REF_SYS_CODE = ?)"); |
|
stmt.setString(1, code); |
|
try (ResultSet result = stmt.executeQuery()) { |
|
dimension = result.next() ? result.getShort(1) : 2; |
|
axisCounts.put(code, dimension); |
|
} |
|
} else { |
|
dimension = cached.shortValue(); |
|
} |
|
return dimension; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
final synchronized boolean isProjection(final String code) throws SQLException { |
|
final PreparedStatement stmt; |
|
Boolean projection = codeProjection.get(code); |
|
if (projection == null) { |
|
stmt = |
|
prepareStatement( |
|
"isProjection", |
|
"SELECT COORD_REF_SYS_CODE" |
|
+ " FROM [Coordinate Reference System]" |
|
+ " WHERE PROJECTION_CONV_CODE = ?" |
|
+ " AND COORD_REF_SYS_KIND LIKE 'projected%'"); |
|
stmt.setString(1, code); |
|
try (ResultSet result = stmt.executeQuery()) { |
|
final boolean found = result.next(); |
|
projection = Boolean.valueOf(found); |
|
codeProjection.put(code, projection); |
|
} |
|
} |
|
return projection.booleanValue(); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
public synchronized CoordinateOperation generateCoordinateOperation(final String code) |
|
throws FactoryException { |
|
ensureNonNull("code", code); |
|
CoordinateOperation returnValue = null; |
|
try { |
|
final String primaryKey = |
|
toPrimaryKey( |
|
CoordinateOperation.class, |
|
code, |
|
"[Coordinate_Operation]", |
|
"COORD_OP_CODE", |
|
"COORD_OP_NAME"); |
|
final PreparedStatement stmt = |
|
prepareStatement( |
|
"CoordinateOperation", |
|
"SELECT COORD_OP_CODE," |
|
+ " COORD_OP_NAME," |
|
+ " COORD_OP_TYPE," |
|
+ " SOURCE_CRS_CODE," |
|
+ " TARGET_CRS_CODE," |
|
+ " COORD_OP_METHOD_CODE," |
|
+ " COORD_TFM_VERSION," |
|
+ " COORD_OP_ACCURACY," |
|
+ " AREA_OF_USE_CODE," |
|
+ " COORD_OP_SCOPE," |
|
+ " REMARKS" |
|
+ " FROM [Coordinate_Operation]" |
|
+ " WHERE COORD_OP_CODE = ?"); |
|
stmt.setString(1, primaryKey); |
|
boolean exit = false; |
|
try (ResultSet result = stmt.executeQuery()) { |
|
while (result.next()) { |
|
final String epsg = getString(result, 1, code); |
|
final String name = getString(result, 2, code); |
|
final String type = getString(result, 3, code).trim().toLowerCase(); |
|
final boolean isTransformation = type.equals("transformation"); |
|
final boolean isConversion = type.equals("conversion"); |
|
final boolean isConcatenated = type.equals("concatenated operation"); |
|
final String sourceCode, targetCode, methodCode; |
|
if (isConversion) { |
|
|
|
sourceCode = result.getString(4); |
|
targetCode = result.getString(5); |
|
} else { |
|
sourceCode = getString(result, 4, code); |
|
targetCode = getString(result, 5, code); |
|
} |
|
if (isConcatenated) { |
|
|
|
methodCode = result.getString(6); |
|
} else { |
|
methodCode = getString(result, 6, code); |
|
} |
|
String version = result.getString(7); |
|
double accuracy = result.getDouble(8); |
|
if (result.wasNull()) accuracy = Double.NaN; |
|
String area = result.getString(9); |
|
String scope = result.getString(10); |
|
String remarks = result.getString(11); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
final int sourceDimensions, targetDimensions; |
|
final CoordinateReferenceSystem sourceCRS, targetCRS; |
|
if (sourceCode != null) { |
|
sourceCRS = createCoordinateReferenceSystem(sourceCode); |
|
sourceDimensions = sourceCRS.getCoordinateSystem().getDimension(); |
|
} else { |
|
sourceCRS = null; |
|
sourceDimensions = 2; |
|
} |
|
if (targetCode != null) { |
|
targetCRS = createCoordinateReferenceSystem(targetCode); |
|
targetDimensions = targetCRS.getCoordinateSystem().getDimension(); |
|
} else { |
|
targetCRS = null; |
|
targetDimensions = 2; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
final boolean isBursaWolf; |
|
OperationMethod method; |
|
final ParameterValueGroup parameters; |
|
if (methodCode == null) { |
|
isBursaWolf = false; |
|
method = null; |
|
parameters = null; |
|
} else { |
|
final int num; |
|
try { |
|
num = Integer.parseInt(methodCode); |
|
} catch (NumberFormatException exception) { |
|
result.close(); |
|
throw new FactoryException(exception); |
|
} |
|
isBursaWolf = (num >= BURSA_WOLF_MIN_CODE && num <= BURSA_WOLF_MAX_CODE); |
|
|
|
|
|
method = generateOperationMethod(methodCode); |
|
if (method.getSourceDimensions() != sourceDimensions |
|
|| method.getTargetDimensions() != targetDimensions) { |
|
method = |
|
new DefaultOperationMethod( |
|
method, sourceDimensions, targetDimensions); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
final String classe = method.getName().getCode(); |
|
parameters = |
|
factories.getMathTransformFactory().getDefaultParameters(classe); |
|
fillParameterValues(methodCode, epsg, parameters); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
final Map<String, Object> properties = |
|
generateProperties(name, epsg, area, scope, remarks); |
|
if (version != null && (version = version.trim()).length() != 0) { |
|
properties.put(CoordinateOperation.OPERATION_VERSION_KEY, version); |
|
} |
|
if (!Double.isNaN(accuracy)) { |
|
final QuantitativeResultImpl accuracyResult = |
|
new QuantitativeResultImpl(new double[] {accuracy}); |
|
|
|
|
|
|
|
accuracyResult.setValueUnit( |
|
SI.METRE); |
|
final AbsoluteExternalPositionalAccuracyImpl accuracyElement = |
|
new AbsoluteExternalPositionalAccuracyImpl(accuracyResult); |
|
accuracyElement.setMeasureDescription(TRANSFORMATION_ACCURACY); |
|
accuracyElement.setEvaluationMethodType( |
|
EvaluationMethodType.DIRECT_EXTERNAL); |
|
properties.put( |
|
CoordinateOperation.COORDINATE_OPERATION_ACCURACY_KEY, |
|
new PositionalAccuracy[] { |
|
(PositionalAccuracy) accuracyElement.unmodifiable() |
|
}); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
final CoordinateOperation operation; |
|
if (isConversion && (sourceCRS == null || targetCRS == null)) { |
|
|
|
|
|
operation = new DefiningConversion(properties, method, parameters); |
|
} else if (isConcatenated) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
result.close(); |
|
exit = true; |
|
final PreparedStatement cstmt = |
|
prepareStatement( |
|
"ConcatenatedOperation", |
|
"SELECT SINGLE_OPERATION_CODE" |
|
+ " FROM [Coordinate_Operation Path]" |
|
+ " WHERE (CONCAT_OPERATION_CODE = ?)" |
|
+ " ORDER BY OP_PATH_STEP"); |
|
cstmt.setString(1, epsg); |
|
final List<String> codes = new ArrayList<>(); |
|
try (ResultSet cr = cstmt.executeQuery()) { |
|
while (cr.next()) { |
|
codes.add(cr.getString(1)); |
|
} |
|
} |
|
final CoordinateOperation[] operations = |
|
new CoordinateOperation[codes.size()]; |
|
if (!safetyGuard.add(epsg)) { |
|
throw recursiveCall(ConcatenatedOperation.class, epsg); |
|
} |
|
try { |
|
for (int i = 0; i < operations.length; i++) { |
|
operations[i] = createCoordinateOperation(codes.get(i)); |
|
} |
|
} finally { |
|
safetyGuard.remove(epsg); |
|
} |
|
try { |
|
return new DefaultConcatenatedOperation(properties, operations); |
|
} catch (IllegalArgumentException exception) { |
|
|
|
|
|
throw new FactoryException(exception); |
|
} |
|
} else { |
|
|
|
|
|
|
|
|
|
|
|
|
|
if (isBursaWolf) |
|
try { |
|
Ellipsoid ellipsoid = CRSUtilities.getHeadGeoEllipsoid(sourceCRS); |
|
if (ellipsoid != null) { |
|
final Unit<Length> axisUnit = ellipsoid.getAxisUnit(); |
|
parameters |
|
.parameter("src_semi_major") |
|
.setValue(ellipsoid.getSemiMajorAxis(), axisUnit); |
|
parameters |
|
.parameter("src_semi_minor") |
|
.setValue(ellipsoid.getSemiMinorAxis(), axisUnit); |
|
parameters |
|
.parameter("src_dim") |
|
.setValue( |
|
sourceCRS.getCoordinateSystem().getDimension()); |
|
} |
|
ellipsoid = CRSUtilities.getHeadGeoEllipsoid(targetCRS); |
|
if (ellipsoid != null) { |
|
final Unit axisUnit = ellipsoid.getAxisUnit(); |
|
parameters |
|
.parameter("tgt_semi_major") |
|
.setValue(ellipsoid.getSemiMajorAxis(), axisUnit); |
|
parameters |
|
.parameter("tgt_semi_minor") |
|
.setValue(ellipsoid.getSemiMinorAxis(), axisUnit); |
|
parameters |
|
.parameter("tgt_dim") |
|
.setValue( |
|
targetCRS.getCoordinateSystem().getDimension()); |
|
} |
|
} catch (ParameterNotFoundException exception) { |
|
result.close(); |
|
throw new FactoryException( |
|
Errors.format( |
|
ErrorKeys.GEOTOOLS_EXTENSION_REQUIRED_$1, |
|
method.getName().getCode(), |
|
exception)); |
|
} |
|
|
|
|
|
|
|
|
|
final Class<? extends CoordinateOperation> expected; |
|
if (isTransformation) { |
|
expected = Transformation.class; |
|
} else if (isConversion) { |
|
expected = Conversion.class; |
|
} else { |
|
result.close(); |
|
throw new FactoryException( |
|
Errors.format(ErrorKeys.UNKNOW_TYPE_$1, type)); |
|
} |
|
final MathTransform mt = |
|
factories |
|
.getMathTransformFactory() |
|
.createBaseToDerived( |
|
sourceCRS, |
|
parameters, |
|
targetCRS.getCoordinateSystem()); |
|
|
|
operation = |
|
DefaultOperation.create( |
|
properties, sourceCRS, targetCRS, mt, method, expected); |
|
} |
|
returnValue = ensureSingleton(operation, returnValue, code); |
|
if (exit) { |
|
|
|
|
|
return returnValue; |
|
} |
|
} |
|
} |
|
} catch (SQLException exception) { |
|
throw databaseFailure(CoordinateOperation.class, code, exception); |
|
} |
|
if (returnValue == null) { |
|
throw noSuchAuthorityCode(CoordinateOperation.class, code); |
|
} |
|
return returnValue; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
public synchronized Set generateFromCoordinateReferenceSystemCodes( |
|
final String sourceCode, final String targetCode) throws FactoryException { |
|
ensureNonNull("sourceCode", sourceCode); |
|
ensureNonNull("targetCode", targetCode); |
|
final String pair = sourceCode + " \u21E8 " + targetCode; |
|
final CoordinateOperationSet set = new CoordinateOperationSet(this); |
|
try { |
|
final String sourceKey = toPrimaryKeyCRS(sourceCode); |
|
final String targetKey = toPrimaryKeyCRS(targetCode); |
|
boolean searchTransformations = false; |
|
do { |
|
|
|
|
|
|
|
|
|
|
|
|
|
final String key, sql; |
|
if (searchTransformations) { |
|
key = "TransformationFromCRS"; |
|
sql = |
|
"SELECT COORD_OP_CODE" |
|
+ " FROM [Coordinate_Operation]" |
|
+ " WHERE SOURCE_CRS_CODE = ?" |
|
+ " AND TARGET_CRS_CODE = ?" |
|
+ " ORDER BY ABS(DEPRECATED), COORD_OP_ACCURACY"; |
|
} else { |
|
key = "ConversionFromCRS"; |
|
sql = |
|
"SELECT PROJECTION_CONV_CODE" |
|
+ " FROM [Coordinate Reference System]" |
|
+ " WHERE SOURCE_GEOGCRS_CODE = ?" |
|
+ " AND COORD_REF_SYS_CODE = ?"; |
|
} |
|
final PreparedStatement stmt = prepareStatement(key, sql); |
|
stmt.setString(1, sourceKey); |
|
stmt.setString(2, targetKey); |
|
try (ResultSet result = stmt.executeQuery()) { |
|
while (result.next()) { |
|
final String code = getString(result, 1, pair); |
|
set.addAuthorityCode(code, searchTransformations ? null : targetKey); |
|
} |
|
} |
|
} while ((searchTransformations = !searchTransformations) == true); |
|
|
|
|
|
|
|
|
|
|
|
final String[] codes = set.getAuthorityCodes(); |
|
sort(codes); |
|
set.setAuthorityCodes(codes); |
|
} catch (SQLException exception) { |
|
throw databaseFailure(CoordinateOperation.class, pair, exception); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
set.resolve(1); |
|
return set; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void sort(final Object... codes) throws SQLException, FactoryException { |
|
if (codes.length <= 1) { |
|
return; |
|
} |
|
final PreparedStatement stmt = |
|
prepareStatement( |
|
"Supersession", |
|
"SELECT SUPERSEDED_BY" |
|
+ " FROM [Supersession]" |
|
+ " WHERE OBJECT_CODE = ?" |
|
+ " ORDER BY SUPERSESSION_YEAR DESC"); |
|
int maxIterations = 15; |
|
do { |
|
boolean changed = false; |
|
for (int i = 0; i < codes.length; i++) { |
|
final String code = codes[i].toString(); |
|
stmt.setString(1, code); |
|
try (ResultSet result = stmt.executeQuery()) { |
|
while (result.next()) { |
|
final String replacement = getString(result, 1, code); |
|
for (int j = i + 1; j < codes.length; j++) { |
|
final Object candidate = codes[j]; |
|
if (replacement.equals(candidate.toString())) { |
|
|
|
|
|
|
|
System.arraycopy(codes, i, codes, i + 1, j - i); |
|
codes[i++] = candidate; |
|
changed = true; |
|
} |
|
} |
|
} |
|
} |
|
} |
|
if (!changed) { |
|
return; |
|
} |
|
} while (--maxIterations != 0); |
|
LOGGER.finer("Possible recursivity in supersessions."); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private final class Finder extends IdentifiedObjectFinder { |
|
|
|
Finder(final Class<? extends IdentifiedObject> type) { |
|
super(AbstractEpsgFactory.this, type); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
protected Set<String> getCodeCandidates(final IdentifiedObject object) |
|
throws FactoryException { |
|
String select = "COORD_REF_SYS_CODE"; |
|
String from = "[Coordinate Reference System]"; |
|
String where, code; |
|
if (object instanceof Ellipsoid) { |
|
select = "ELLIPSOID_CODE"; |
|
from = "[Ellipsoid]"; |
|
where = "SEMI_MAJOR_AXIS"; |
|
code = Double.toString(((Ellipsoid) object).getSemiMajorAxis()); |
|
} else { |
|
IdentifiedObject dependency; |
|
if (object instanceof GeneralDerivedCRS) { |
|
dependency = ((GeneralDerivedCRS) object).getBaseCRS(); |
|
where = "SOURCE_GEOGCRS_CODE"; |
|
} else if (object instanceof SingleCRS) { |
|
dependency = ((SingleCRS) object).getDatum(); |
|
where = "DATUM_CODE"; |
|
} else if (object instanceof GeodeticDatum) { |
|
dependency = ((GeodeticDatum) object).getEllipsoid(); |
|
select = "DATUM_CODE"; |
|
from = "[Datum]"; |
|
where = "ELLIPSOID_CODE"; |
|
} else { |
|
return super.getCodeCandidates(object); |
|
} |
|
dependency = getIdentifiedObjectFinder(dependency.getClass()).find(dependency); |
|
Identifier id = AbstractIdentifiedObject.getIdentifier(dependency, getAuthority()); |
|
if (id == null || (code = id.getCode()) == null) { |
|
return super.getCodeCandidates(object); |
|
} |
|
} |
|
String sql = |
|
"SELECT " + select + " FROM " + from + " WHERE " + where + "='" + code + '\''; |
|
sql = adaptSQL(sql); |
|
final Set<String> result = new LinkedHashSet<>(); |
|
try (Statement s = getConnection().createStatement(); |
|
ResultSet r = s.executeQuery(sql)) { |
|
while (r.next()) { |
|
result.add(r.getString(1)); |
|
} |
|
} catch (SQLException exception) { |
|
throw databaseFailure(Identifier.class, code, exception); |
|
} |
|
return result; |
|
} |
|
} |
|
|
|
|
|
private static FactoryException recursiveCall( |
|
final Class<? extends IdentifiedObject> type, final String code) { |
|
return new FactoryException(Errors.format(ErrorKeys.RECURSIVE_CALL_$2, type, code)); |
|
} |
|
|
|
|
|
private static FactoryException databaseFailure( |
|
final Class<? extends Object> type, final String code, final SQLException cause) { |
|
return new FactoryException( |
|
Errors.format(ErrorKeys.DATABASE_FAILURE_$2, type, code), cause); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
protected abstract String adaptSQL(final String statement); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
protected boolean isPrimaryKey(final String code) throws FactoryException { |
|
final int length = code.length(); |
|
for (int i = 0; i < length; i++) { |
|
final char c = code.charAt(i); |
|
if (!Character.isDigit(c) && !Character.isSpaceChar(c)) { |
|
return false; |
|
} |
|
} |
|
return true; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
final synchronized boolean canDispose() { |
|
return true; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
public synchronized void dispose() throws FactoryException { |
|
disconnect(); |
|
super.dispose(); |
|
} |
|
|
|
|
|
public void connect() throws FactoryException { |
|
try { |
|
getConnection(); |
|
} catch (SQLException e) { |
|
throw new FactoryException(e); |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void disconnect() throws FactoryException { |
|
if (connection != null) { |
|
final boolean isClosed; |
|
try { |
|
isClosed = connection.isClosed(); |
|
for (final Iterator<PreparedStatement> it = statements.values().iterator(); |
|
it.hasNext(); ) { |
|
(it.next()).close(); |
|
it.remove(); |
|
} |
|
connection.close(); |
|
} catch (SQLException exception) { |
|
throw new FactoryException(exception); |
|
} |
|
if (!isClosed) { |
|
|
|
|
|
|
|
|
|
|
|
final LogRecord record = |
|
Loggings.format(Level.FINE, LoggingKeys.CLOSED_EPSG_DATABASE); |
|
record.setLoggerName(LOGGER.getName()); |
|
LOGGER.log(record); |
|
} |
|
connection = null; |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
protected synchronized Connection getConnection() throws SQLException { |
|
if (connection == null) { |
|
connection = dataSource.getConnection(); |
|
} |
|
return connection; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
protected void shutdown(final boolean active) throws SQLException {} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
@SuppressWarnings("deprecation") |
|
protected final void finalize() throws Throwable { |
|
dispose(); |
|
super.finalize(); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private static Unit<?> getUnit(final int code) { |
|
switch (code) { |
|
case 9001: |
|
return METRE; |
|
case 9002: |
|
return FOOT; |
|
case 9030: |
|
return NAUTICAL_MILE; |
|
case 9036: |
|
return KILOMETER; |
|
case 9101: |
|
return RADIAN; |
|
case 9122: |
|
case 9102: |
|
return DEGREE_ANGLE; |
|
case 9103: |
|
return MINUTE_ANGLE; |
|
case 9104: |
|
return SECOND_ANGLE; |
|
case 9105: |
|
return GRADE; |
|
case 9107: |
|
return DEGREE_MINUTE_SECOND; |
|
case 9108: |
|
return DEGREE_MINUTE_SECOND; |
|
case 9109: |
|
return MICRORADIAN; |
|
case 9110: |
|
return SEXAGESIMAL_DMS; |
|
|
|
case 9203: |
|
case 9201: |
|
return ONE; |
|
case 9202: |
|
return PPM; |
|
default: |
|
return null; |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private static void setBursaWolfParameter( |
|
final BursaWolfParameters parameters, final int code, double value, final Unit<?> unit) |
|
throws FactoryException { |
|
Unit<?> target = unit; |
|
if (code >= 8605) { |
|
if (code <= 8607) target = SI.METRE; |
|
else if (code == 8611) target = Units.PPM; |
|
else if (code <= 8710) target = NonSI.SECOND_ANGLE; |
|
} |
|
if (target != unit) { |
|
value = Units.getConverterToAny(unit, target).convert(value); |
|
} |
|
switch (code) { |
|
case 8605: |
|
parameters.dx = value; |
|
break; |
|
case 8606: |
|
parameters.dy = value; |
|
break; |
|
case 8607: |
|
parameters.dz = value; |
|
break; |
|
case 8608: |
|
parameters.ex = value; |
|
break; |
|
case 8609: |
|
parameters.ey = value; |
|
break; |
|
case 8610: |
|
parameters.ez = value; |
|
break; |
|
case 8611: |
|
parameters.ppm = value; |
|
break; |
|
default: |
|
throw new FactoryException(Errors.format(ErrorKeys.UNEXPECTED_PARAMETER_$1, code)); |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private static final TableInfo[] TABLES_INFO = { |
|
new TableInfo( |
|
CoordinateReferenceSystem.class, |
|
"[Coordinate Reference System]", |
|
"COORD_REF_SYS_CODE", |
|
"COORD_REF_SYS_NAME", |
|
"COORD_REF_SYS_KIND", |
|
new Class[] {ProjectedCRS.class, GeographicCRS.class, GeocentricCRS.class}, |
|
new String[] {"projected", "geographic", "geocentric"}), |
|
new TableInfo( |
|
CoordinateSystem.class, |
|
"[Coordinate System]", |
|
"COORD_SYS_CODE", |
|
"COORD_SYS_NAME", |
|
"COORD_SYS_TYPE", |
|
new Class[] { |
|
CartesianCS.class, EllipsoidalCS.class, SphericalCS.class, VerticalCS.class |
|
}, |
|
new String[] {"Cartesian", "ellipsoidal", "spherical", "vertical"}), |
|
new TableInfo( |
|
CoordinateSystemAxis.class, |
|
"[Coordinate Axis] AS CA INNER JOIN [Coordinate Axis Name] AS CAN" |
|
+ " ON CA.COORD_AXIS_NAME_CODE=CAN.COORD_AXIS_NAME_CODE", |
|
"COORD_AXIS_CODE", |
|
"COORD_AXIS_NAME"), |
|
new TableInfo( |
|
Datum.class, |
|
"[Datum]", |
|
"DATUM_CODE", |
|
"DATUM_NAME", |
|
"DATUM_TYPE", |
|
new Class[] {GeodeticDatum.class, VerticalDatum.class, EngineeringDatum.class}, |
|
new String[] {"geodetic", "vertical", "engineering"}), |
|
new TableInfo(Ellipsoid.class, "[Ellipsoid]", "ELLIPSOID_CODE", "ELLIPSOID_NAME"), |
|
new TableInfo( |
|
PrimeMeridian.class, |
|
"[Prime Meridian]", |
|
"PRIME_MERIDIAN_CODE", |
|
"PRIME_MERIDIAN_NAME"), |
|
new TableInfo( |
|
CoordinateOperation.class, |
|
"[Coordinate_Operation]", |
|
"COORD_OP_CODE", |
|
"COORD_OP_NAME", |
|
"COORD_OP_TYPE", |
|
new Class[] {Projection.class, Conversion.class, Transformation.class}, |
|
new String[] {"conversion", "conversion", "transformation"}), |
|
|
|
|
|
new TableInfo( |
|
OperationMethod.class, |
|
"[Coordinate_Operation Method]", |
|
"COORD_OP_METHOD_CODE", |
|
"COORD_OP_METHOD_NAME"), |
|
new TableInfo( |
|
ParameterDescriptor.class, |
|
"[Coordinate_Operation Parameter]", |
|
"PARAMETER_CODE", |
|
"PARAMETER_NAME"), |
|
new TableInfo(Unit.class, "[Unit of Measure]", "UOM_CODE", "UNIT_OF_MEAS_NAME") |
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
final class AuthorityCodeSet extends AbstractSet<String> implements Serializable { |
|
|
|
private static final long serialVersionUID = 7105664579449680562L; |
|
|
|
|
|
|
|
|
|
|
|
public final Class<?> type; |
|
|
|
|
|
private final boolean isProjection; |
|
|
|
|
|
|
|
|
|
|
|
private transient java.util.Map<String, String> asMap; |
|
|
|
|
|
|
|
|
|
|
|
final String sqlAll; |
|
|
|
|
|
|
|
|
|
|
|
private final String sqlSingle; |
|
|
|
|
|
private transient PreparedStatement queryAll; |
|
|
|
|
|
|
|
|
|
private transient PreparedStatement querySingle; |
|
|
|
|
|
|
|
|
|
|
|
|
|
private int size = -1; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public AuthorityCodeSet(final TableInfo table, final Class type) { |
|
final StringBuilder buffer = new StringBuilder("SELECT "); |
|
buffer.append(table.codeColumn); |
|
if (table.nameColumn != null) { |
|
buffer.append(", ").append(table.nameColumn); |
|
} |
|
buffer.append(" FROM ").append(table.table); |
|
boolean hasWhere = false; |
|
Class tableType = table.type; |
|
if (table.typeColumn != null) { |
|
for (int i = 0; i < table.subTypes.length; i++) { |
|
final Class<?> candidate = table.subTypes[i]; |
|
if (candidate.isAssignableFrom(type)) { |
|
buffer.append(" WHERE (") |
|
.append(table.typeColumn) |
|
.append(" LIKE '") |
|
.append(table.typeNames[i]) |
|
.append("%'"); |
|
hasWhere = true; |
|
tableType = candidate; |
|
break; |
|
} |
|
} |
|
if (hasWhere) { |
|
buffer.append(')'); |
|
} |
|
} |
|
this.type = tableType; |
|
isProjection = Projection.class.isAssignableFrom(tableType); |
|
final int length = buffer.length(); |
|
buffer.append(" ORDER BY ").append(table.codeColumn); |
|
sqlAll = adaptSQL(buffer.toString()); |
|
buffer.setLength(length); |
|
buffer.append(hasWhere ? " AND " : " WHERE ").append(table.codeColumn).append(" = ?"); |
|
sqlSingle = adaptSQL(buffer.toString()); |
|
} |
|
|
|
|
|
private ResultSet getAll() throws SQLException { |
|
assert Thread.holdsLock(this); |
|
if (queryAll != null) { |
|
try { |
|
return queryAll.executeQuery(); |
|
} catch (SQLException ignore) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
queryAll.close(); |
|
queryAll = null; |
|
recoverableException("getAll", ignore); |
|
} |
|
} |
|
queryAll = getConnection().prepareStatement(sqlAll); |
|
return queryAll.executeQuery(); |
|
} |
|
|
|
|
|
private ResultSet getSingle(final Object code) throws SQLException { |
|
assert Thread.holdsLock(this); |
|
if (querySingle == null) { |
|
querySingle = getConnection().prepareStatement(sqlSingle); |
|
} |
|
querySingle.setString(1, code.toString()); |
|
return querySingle.executeQuery(); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
private boolean isAcceptable(final ResultSet results) throws SQLException { |
|
if (!isProjection) { |
|
return true; |
|
} |
|
final String code = results.getString(1); |
|
return isProjection(code); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
private boolean isAcceptable(final String code) throws SQLException { |
|
if (!isProjection) { |
|
return true; |
|
} |
|
return isProjection(code); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
public synchronized boolean isEmpty() { |
|
if (size != -1) { |
|
return size == 0; |
|
} |
|
boolean empty = true; |
|
try { |
|
try (ResultSet results = getAll()) { |
|
while (results.next()) { |
|
if (isAcceptable(results)) { |
|
empty = false; |
|
break; |
|
} |
|
} |
|
} |
|
} catch (SQLException exception) { |
|
unexpectedException("isEmpty", exception); |
|
} |
|
size = empty ? 0 : -2; |
|
return empty; |
|
} |
|
|
|
|
|
@Override |
|
public synchronized int size() { |
|
if (size >= 0) { |
|
return size; |
|
} |
|
int count = 0; |
|
try { |
|
try (ResultSet results = getAll()) { |
|
while (results.next()) { |
|
if (isAcceptable(results)) { |
|
count++; |
|
} |
|
} |
|
} |
|
} catch (SQLException exception) { |
|
unexpectedException("size", exception); |
|
} |
|
size = count; |
|
return count; |
|
} |
|
|
|
|
|
@Override |
|
public synchronized boolean contains(final Object code) { |
|
boolean exists = false; |
|
if (code != null) |
|
try { |
|
try (ResultSet results = getSingle(code)) { |
|
while (results.next()) { |
|
if (isAcceptable(results)) { |
|
exists = true; |
|
break; |
|
} |
|
} |
|
} |
|
} catch (SQLException exception) { |
|
unexpectedException("contains", exception); |
|
} |
|
return exists; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
public synchronized java.util.Iterator<String> iterator() { |
|
try { |
|
final Iterator iterator = new Iterator(getAll()); |
|
|
|
|
|
|
|
|
|
|
|
queryAll = null; |
|
return iterator; |
|
} catch (SQLException exception) { |
|
unexpectedException("iterator", exception); |
|
final Set<String> empty = Collections.emptySet(); |
|
return empty.iterator(); |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
protected LinkedHashSet<String> writeReplace() throws ObjectStreamException { |
|
return new LinkedHashSet<>(this); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
@SuppressWarnings("deprecation") |
|
protected synchronized void finalize() throws SQLException { |
|
if (querySingle != null) { |
|
querySingle.close(); |
|
querySingle = null; |
|
} |
|
if (queryAll != null) { |
|
queryAll.close(); |
|
queryAll = null; |
|
} |
|
} |
|
|
|
|
|
private void unexpectedException(final String method, final SQLException exception) { |
|
unexpectedException(AuthorityCodes.class, method, exception); |
|
} |
|
|
|
|
|
void unexpectedException( |
|
final Class classe, final String method, final SQLException exception) { |
|
Logging.unexpectedException(LOGGER, classe, method, exception); |
|
} |
|
|
|
|
|
private void recoverableException(final String method, final SQLException exception) { |
|
|
|
LogRecord record = Loggings.format(Level.FINE, LoggingKeys.UNEXPECTED_EXCEPTION); |
|
record.setSourceClassName(AuthorityCodes.class.getName()); |
|
record.setSourceMethodName(method); |
|
record.setThrown(exception); |
|
record.setLoggerName(LOGGER.getName()); |
|
LOGGER.log(record); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
private final class Iterator implements java.util.Iterator<String> { |
|
|
|
private ResultSet results; |
|
|
|
|
|
private transient String next; |
|
|
|
|
|
Iterator(final ResultSet results) throws SQLException { |
|
assert Thread.holdsLock(AuthorityCodeSet.this); |
|
this.results = results; |
|
toNext(); |
|
} |
|
|
|
|
|
private void toNext() throws SQLException { |
|
while (results.next()) { |
|
next = results.getString(1); |
|
if (isAcceptable(next)) { |
|
return; |
|
} |
|
} |
|
finalize(); |
|
} |
|
|
|
|
|
@Override |
|
public boolean hasNext() { |
|
return results != null; |
|
} |
|
|
|
|
|
@Override |
|
public String next() { |
|
if (results == null) { |
|
throw new NoSuchElementException(); |
|
} |
|
final String current = next; |
|
try { |
|
toNext(); |
|
} catch (SQLException exception) { |
|
results = null; |
|
unexpectedException(Iterator.class, "next", exception); |
|
} |
|
return current; |
|
} |
|
|
|
|
|
@Override |
|
public void remove() { |
|
throw new UnsupportedOperationException(); |
|
} |
|
|
|
|
|
@Override |
|
@SuppressWarnings("deprecation") |
|
protected void finalize() throws SQLException { |
|
next = null; |
|
if (results != null) { |
|
final PreparedStatement owner = (PreparedStatement) results.getStatement(); |
|
results.close(); |
|
results = null; |
|
synchronized (AuthorityCodeSet.this) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
assert owner != queryAll; |
|
if (queryAll == null) { |
|
queryAll = owner; |
|
} else { |
|
owner.close(); |
|
} |
|
} |
|
} |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
final java.util.Map<String, String> asMap() { |
|
if (asMap == null) { |
|
asMap = new Map(); |
|
} |
|
return asMap; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
private final class Map extends AbstractMap<String, String> { |
|
|
|
@Override |
|
public int size() { |
|
return AuthorityCodeSet.this.size(); |
|
} |
|
|
|
|
|
@Override |
|
public boolean isEmpty() { |
|
return AuthorityCodeSet.this.isEmpty(); |
|
} |
|
|
|
|
|
@Override |
|
public String get(final Object code) { |
|
String value = null; |
|
if (code != null) |
|
try { |
|
synchronized (AuthorityCodeSet.this) { |
|
try (ResultSet results = getSingle(code)) { |
|
while (results.next()) { |
|
if (isAcceptable(results)) { |
|
value = results.getString(2); |
|
break; |
|
} |
|
} |
|
} |
|
} |
|
} catch (SQLException exception) { |
|
unexpectedException("get", exception); |
|
} |
|
return value; |
|
} |
|
|
|
|
|
@Override |
|
public boolean containsKey(final Object key) { |
|
return contains(key); |
|
} |
|
|
|
|
|
@Override |
|
public Set<String> keySet() { |
|
return AuthorityCodeSet.this; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
public Set<Map.Entry<String, String>> entrySet() { |
|
throw new UnsupportedOperationException(); |
|
} |
|
} |
|
} |
|
} |
|
|