diff options
| author | Martin Desruisseaux <martin.desruisseaux@geomatys.fr> | 2011-08-27 18:46:06 +0000 |
|---|---|---|
| committer | Martin Desruisseaux <martin.desruisseaux@geomatys.fr> | 2011-08-27 18:46:06 +0000 |
| commit | b3c870ee6c48e1443292820999e7e658a805f10d (patch) | |
| tree | 54ff77b75e625e1e7be7cf736d99b2157872ebfa /jniwrap | |
| parent | 906c75ab4da905b584c8f3179d60d12fbdb75391 (diff) | |
| download | PROJ-b3c870ee6c48e1443292820999e7e658a805f10d.tar.gz PROJ-b3c870ee6c48e1443292820999e7e658a805f10d.zip | |
Initial commit of the new Java Native Interface (JNI) bindings.
The new binding defines all native methods in org.proj4.PJ class.
The previous binding (org.proj4.Projections) is still present.
A next commit will update the Ant build file, the documentation and maybe the code of the previous bindings.
git-svn-id: http://svn.osgeo.org/metacrs/proj/trunk@2091 4e78687f-474d-0410-85f9-8d5e500ac6b2
Diffstat (limited to 'jniwrap')
| -rw-r--r-- | jniwrap/org/proj4/PJ.java | 290 | ||||
| -rw-r--r-- | jniwrap/org/proj4/PJException.java | 58 | ||||
| -rw-r--r-- | jniwrap/org/proj4/package-info.java | 38 |
3 files changed, 386 insertions, 0 deletions
diff --git a/jniwrap/org/proj4/PJ.java b/jniwrap/org/proj4/PJ.java new file mode 100644 index 00000000..21bf7a5a --- /dev/null +++ b/jniwrap/org/proj4/PJ.java @@ -0,0 +1,290 @@ +/****************************************************************************** + * $Id$ + * + * Project: PROJ.4 + * Purpose: Java/JNI wrappers for PROJ.4 API. + * Author: Martin Desruisseaux + * + ****************************************************************************** + * Copyright (c) 2011, Open Geospatial Consortium, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + *****************************************************************************/ +package org.proj4; + + +/** + * Wraps the <a href="http://proj.osgeo.org/">Proj4</a> {@code PJ} native data structure. + * Almost every methods defined in this class are native methods delegating the work to the + * Proj.4 library. This class is the only place where such native methods are defined. + * <p> + * In the Proj.4 library, the {@code PJ} structure aggregates in a single place information usually + * splitted in many different ISO 19111 interfaces: {@link org.opengis.referencing.datum.Ellipsoid}, + * {@link org.opengis.referencing.datum.Datum}, {@link org.opengis.referencing.datum.PrimeMeridian}, + * {@link org.opengis.referencing.cs.CoordinateSystem}, {@link org.opengis.referencing.crs.CoordinateReferenceSystem} + * and their sub-interfaces. The relationship with the GeoAPI methods is indicated in the + * "See" tags when appropriate. + * + * @author Martin Desruisseaux (Geomatys) + */ +public class PJ { + /** + * The maximal number of dimension accepted by the {@link #transform(PJ, int, double[], int, int)} + * method. This upper limit is actually somewhat arbitrary. This limit exists mostly as a safety + * against potential misuse. + */ + public static final int DIMENSION_MAX = 100; + // IMPLEMENTATION NOTE: if the value is modified, edit also the native C file. + + /** + * Loads the Proj4 library. + */ + static { + System.loadLibrary("proj"); + } + + /** + * The pointer to {@code PJ} structure allocated in the C/C++ heap. This value has no + * meaning in Java code. <strong>Do not modify</strong>, since this value is used by Proj4. + * Do not rename neither, unless you update accordingly the C code in JNI wrappers. + */ + private final long ptr; + + /** + * Creates a new {@code PJ} structure from the given Proj4 definition string. + * + * @param definition The Proj.4 definition string. + * @throws IllegalArgumentException If the PJ structure can not be created from the given string. + */ + public PJ(final String definition) throws IllegalArgumentException { + ptr = allocatePJ(definition); + if (ptr == 0) { + throw new IllegalArgumentException(definition); + } + } + + /** + * Creates a new {@code PJ} structure derived from an existing {@code PJ} object. + * This constructor is usually for getting the + * {@linkplain org.opengis.referencing.crs.ProjectedCRS#getBaseCRS() base geographic CRS} + * from a {@linkplain org.opengis.referencing.crs.ProjectedCRS projected CRS}. + * + * @param crs The CRS (usually projected) from which to derive a new CRS. + * @param type The type of the new CRS. Currently, only {@link Type#GEOGRAPHIC} is supported. + * @throws IllegalArgumentException If the PJ structure can not be created. + */ + public PJ(final PJ crs, final Type type) throws IllegalArgumentException { + if (crs == null) { + // TODO: Use Objects with JDK 7. + throw new NullPointerException("The CRS must be non-null."); + } + if (type != Type.GEOGRAPHIC) { + throw new IllegalArgumentException("Can not derive the " + type + " type."); + } + ptr = allocateGeoPJ(crs); + if (ptr == 0) { + throw new IllegalArgumentException(crs.getLastError()); + } + } + + /** + * Allocates a PJ native data structure and returns the pointer to it. This method should be + * invoked by the constructor only, and the return value <strong>must</strong> be assigned + * to the {@link #ptr} field. The allocated structure is released by the {@link #finalize()} + * method. + * + * @param definition The Proj4 definition string. + * @return A pointer to the PJ native data structure, or 0 if the operation failed. + */ + private static native long allocatePJ(String definition); + + /** + * Allocates a PJ native data structure for the base geographic CRS of the given CRS, and + * returns the pointer to it. This method should be invoked by the constructor only, and + * the return value <strong>must</strong> be assigned to the {@link #ptr} field. + * The allocated structure is released by the {@link #finalize()} method. + * + * @param projected The CRS from which to derive the base geographic CRS. + * @return A pointer to the PJ native data structure, or 0 if the operation failed. + */ + private static native long allocateGeoPJ(PJ projected); + + /** + * Returns the version number of the Proj4 library. + * + * @return The Proj.4 release string. + */ + public static native String getVersion(); + + /** + * Returns the Proj4 definition string. This is the string given to the constructor, + * expanded with as much information as possible. + * + * @return The Proj4 definition string. + */ + public native String getDefinition(); + + /** + * Returns the Coordinate Reference System type. + * + * @return The CRS type. + */ + public native Type getType(); + + /** + * The coordinate reference system (CRS) type returned by {@link PJ#getType()}. + * In the Proj.4 library, a CRS can only be geographic, geocentric or projected, + * without distinction between 2D and 3D CRS. + * + * @author Martin Desruisseaux (Geomatys) + */ + public static enum Type { + /* + * IMPLEMENTATION NOTE: Do not rename those fields, unless you update the + * native C code accordingly. + */ + + /** + * The CRS is of type {@link org.opengis.referencing.crs.GeographicCRS}. + * The CRS can be two-dimensional or three-dimensional. + */ + GEOGRAPHIC, + + /** + * The CRS is of type {@link org.opengis.referencing.crs.GeocentricCRS}. + * The CRS can only be three-dimensional. + */ + GEOCENTRIC, + + /** + * The CRS is of type {@link org.opengis.referencing.crs.ProjectedCRS}. + * The CRS can be two-dimensional or three-dimensional. + */ + PROJECTED + } + + /** + * Returns the value stored in the {@code a_orig} PJ field. + * + * @return The axis length stored in {@code a_orig}. + * + * @see org.opengis.referencing.datum.Ellipsoid#getSemiMajorAxis() + */ + public native double getSemiMajorAxis(); + + /** + * Returns the value computed from PJ fields by {@code √((a_orig)² × (1 - es_orig))}. + * + * @return The axis length computed by {@code √((a_orig)² × (1 - es_orig))}. + * + * @see org.opengis.referencing.datum.Ellipsoid#getSemiMinorAxis() + */ + public native double getSemiMinorAxis(); + + /** + * Returns the square of the ellipsoid eccentricity (ε²). The eccentricity + * is related to axis length by ε=√(1-(<var>b</var>/<var>a</var>)²). The + * eccentricity of a sphere is zero. + * + * @return The eccentricity. + * + * @see org.opengis.referencing.datum.Ellipsoid#isSphere() + * @see org.opengis.referencing.datum.Ellipsoid#getInverseFlattening() + */ + public native double getEccentricitySquared(); + + /** + * Returns an array of character indicating the direction of each axis. Directions are + * characters like {@code 'e'} for East, {@code 'n'} for North and {@code 'u'} for Up. + * + * @return The axis directions. + * + * @see org.opengis.referencing.cs.CoordinateSystemAxis#getDirection() + */ + public native char[] getAxisDirections(); + + /** + * Longitude of the prime meridian measured from the Greenwich meridian, positive eastward. + * + * @return The prime meridian longitude, in degrees. + * + * @see org.opengis.referencing.datum.PrimeMeridian#getGreenwichLongitude() + */ + public native double getGreenwichLongitude(); + + /** + * Returns the conversion factor from the linear units to metres. + * + * @param vertical {@code false} for the conversion factor of horizontal axes, + * or {@code true} for the conversion factor of the vertical axis. + * @return The conversion factor to metres for the given axis. + */ + public native double getLinearUnitToMetre(boolean vertical); + + /** + * Transforms in-place the coordinates in the given array. The coordinates array shall contain + * (<var>x</var>,<var>y</var>,<var>z</var>,…) tuples, where the <var>z</var> and + * following dimensions are optional. Note that any dimension after the <var>z</var> value + * are ignored. + * <p> + * Input and output units: + * <p> + * <ul> + * <li>Angular units (as in longitude and latitudes) are decimal degrees.</li> + * <li>Linear units are usually metres, but this is actually projection-dependent.</li> + * </ul> + * + * @param target The target CRS. + * @param dimension The dimension of each coordinate value. Must be in the [2-{@value #DIMENSION_MAX}] range. + * @param coordinates The coordinates to transform, as a sequence of + * (<var>x</var>,<var>y</var>,<<var>z</var>>,…) tuples. + * @param offset Offset of the first coordinate in the given array. + * @param numPts Number of points to transform. + * @throws NullPointerException If the {@code target} or {@code coordinates} argument is null. + * @throws IndexOutOfBoundsException if the {@code offset} or {@code numPts} arguments are invalid. + * @throws PJException If the operation failed for an other reason (provided by Proj4). + * + * @see org.opengis.referencing.operation.MathTransform#transform(double[], int, double[], int, int) + */ + public native void transform(PJ target, int dimension, double[] coordinates, int offset, int numPts) + throws PJException; + + /** + * Returns a description of the last error that occurred, or {@code null} if none. + * + * @return The last error that occurred, or {@code null}. + */ + public native String getLastError(); + + /** + * Returns the string representation of the PJ structure. + * + * @return The string representation. + */ + @Override + public native String toString(); + + /** + * Deallocates the native PJ data structure. This method can be invoked only by the garbage + * collector, and must be invoked exactly once (no more, no less). + * <strong>NEVER INVOKE THIS METHOD EXPLICITELY, NEVER OVERRIDE</strong>. + */ + @Override + protected final native void finalize(); +} diff --git a/jniwrap/org/proj4/PJException.java b/jniwrap/org/proj4/PJException.java new file mode 100644 index 00000000..68897703 --- /dev/null +++ b/jniwrap/org/proj4/PJException.java @@ -0,0 +1,58 @@ +/****************************************************************************** + * $Id$ + * + * Project: PROJ.4 + * Purpose: Java/JNI wrappers for PROJ.4 API. + * Author: Martin Desruisseaux + * + ****************************************************************************** + * Copyright (c) 2011, Open Geospatial Consortium, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + *****************************************************************************/ +package org.proj4; + + +/** + * Exception thrown when a call to {@link PJ#transform(PJ, int, double[], int, int)} failed. + * + * @author Martin Desruisseaux (Geomatys) + */ +public class PJException extends Exception { + /** + * For cross-version compatibility. + */ + private static final long serialVersionUID = -2580747577812829763L; + + /** + * Constructs a new exception with no message. + */ + public PJException() { + super(); + } + + /** + * Constructs a new exception with the given message. + * + * @param message A message that describe the cause for the failure. + */ + public PJException(final String message) { + super(message); + } +} diff --git a/jniwrap/org/proj4/package-info.java b/jniwrap/org/proj4/package-info.java new file mode 100644 index 00000000..17a5767c --- /dev/null +++ b/jniwrap/org/proj4/package-info.java @@ -0,0 +1,38 @@ +/****************************************************************************** + * $Id$ + * + * Project: PROJ.4 + * Purpose: Java/JNI wrappers for PROJ.4 API. + * Author: Martin Desruisseaux + * + ****************************************************************************** + * Copyright (c) 2011, Open Geospatial Consortium, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + *****************************************************************************/ + +/** + * Wrappers for the <a href="http://proj.osgeo.org/">Proj4</a> library. The {@link org.proj4.PJ} + * class contains only native methods delegating their work to the Proj.4 library. + * For higher-level methods making use of those native methods, see for example the + * <a href="http://www.geoapi.org/geoapi-proj4/index.html">GeoAPI bindings for Proj.4</a>. + * + * @author Martin Desruisseaux (Geomatys) + */ +package org.proj4; |
