Search in sources :

Example 91 with Spatial

use of org.eclipse.persistence.testing.models.spatial.jgeometry.wrapped.Spatial in project eclipselink by eclipse-ee4j.

the class SpatialJPQLTestSuite method testSDOWithinDistanceRectangleUsingMaxResolution.

public void testSDOWithinDistanceRectangleUsingMaxResolution() throws Exception {
    String sql = "select ID, JGEOMETRY from JPA_JGEOMETRY where mdsys.sdo_within_distance(" + "jgeometry, mdsys.sdo_geometry(3,null,null, mdsys.sdo_elem_info_array(1,3,3), " + "mdsys.sdo_ordinate_array(1,1, 20, 20)), " + "'DISTANCE=10 MAX_RESOLUTION=5') = 'TRUE' ORDER BY ID";
    SQLReader reader = new SQLReader(getServerSession(STRUCT_CONVERTER_PU), sql);
    JGeometry rectangle = JGeometry.createLinearPolygon(new double[] { 1, 1, 1, 20, 10, 20, 20, 1, 1, 1 }, 2, 0);
    EntityManager em = createEntityManager(STRUCT_CONVERTER_PU);
    Query query = em.createQuery("SELECT ss FROM SimpleSpatial ss WHERE FUNC('mdsys.sdo_WITHIN_DISTANCE', ss.JGeometry, :otherGeometry, :params) = 'TRUE' ORDER BY ss.id ASC");
    query.setParameter("otherGeometry", rectangle);
    query.setParameter("params", "DISTANCE=10 MAX_RESOLUTION=5");
    List<Spatial> results = query.getResultList();
    String compareResult = reader.compare(results);
    assertNull(compareResult, compareResult);
}
Also used : EntityManager(jakarta.persistence.EntityManager) Query(jakarta.persistence.Query) Spatial(org.eclipse.persistence.testing.models.spatial.jgeometry.wrapped.Spatial) SimpleSpatial(org.eclipse.persistence.testing.models.jpa.structconverter.SimpleSpatial) JGeometry(oracle.spatial.geometry.JGeometry)

Example 92 with Spatial

use of org.eclipse.persistence.testing.models.spatial.jgeometry.wrapped.Spatial in project eclipselink by eclipse-ee4j.

the class SpatialJPQLTestSuite method testSDOFilterRectangle.

/**
 * SDO_Filter using a dynamic rectangular window with lower left
 * and upper right coordinates of {(1,1), (20,20)}
 */
public void testSDOFilterRectangle() throws Exception {
    String sql = "select ID, JGEOMETRY from JPA_JGEOMETRY where mdsys.sdo_filter(" + "jgeometry, mdsys.sdo_geometry(3,null,null, " + "mdsys.sdo_elem_info_array(1,3,3), " + "mdsys.sdo_ordinate_array(1,1, 20, 20)), " + "'QUERYTYPE=WINDOW') = 'TRUE' ORDER BY ID";
    SQLReader reader = new SQLReader(getServerSession(STRUCT_CONVERTER_PU), sql);
    JGeometry rectangle = JGeometry.createLinearPolygon(new double[] { 1, 1, 1, 20, 10, 20, 20, 1, 1, 1 }, 2, 0);
    EntityManager em = createEntityManager(STRUCT_CONVERTER_PU);
    Query query = em.createQuery("SELECT ss FROM SimpleSpatial ss WHERE FUNC('mdsys.sdo_FILTER', ss.JGeometry, :otherGeometry, :params) = 'TRUE' ORDER BY ss.id ASC");
    query.setParameter("otherGeometry", rectangle);
    query.setParameter("params", "QUERYTYPE=WINDOW");
    List<Spatial> results = query.getResultList();
    String compareResult = reader.compare(results);
    assertNull(compareResult, compareResult);
}
Also used : EntityManager(jakarta.persistence.EntityManager) Query(jakarta.persistence.Query) Spatial(org.eclipse.persistence.testing.models.spatial.jgeometry.wrapped.Spatial) SimpleSpatial(org.eclipse.persistence.testing.models.jpa.structconverter.SimpleSpatial) JGeometry(oracle.spatial.geometry.JGeometry)

Example 93 with Spatial

use of org.eclipse.persistence.testing.models.spatial.jgeometry.wrapped.Spatial in project eclipselink by eclipse-ee4j.

the class SpatialJPQLTestSuite method testSDOWithinDistanceNullParamsNotMatching.

/**
 * SDO_WITHIN_DISTANCE with NULL params not matching existing
 */
public void testSDOWithinDistanceNullParamsNotMatching() throws Exception {
    String sql = "select ID, JGEOMETRY from JPA_JGEOMETRY where " + "mdsys.sdo_within_distance(jgeometry, mdsys.sdo_geometry(3, " + "NULL, null, mdsys.sdo_elem_info_array(1,3,4), " + "mdsys.sdo_ordinate_array(10, 0, 0, 10, 0, -10)), " + "NULL) = 'TRUE' ORDER BY ID";
    SQLReader reader = new SQLReader(getServerSession(STRUCT_CONVERTER_PU), sql);
    JGeometry circle = JGeometry.createCircle(10, 0, 0, 10, 0, -10, 0);
    EntityManager em = createEntityManager(STRUCT_CONVERTER_PU);
    Query query = em.createQuery("SELECT ss FROM SimpleSpatial ss WHERE FUNC('mdsys.sdo_WITHIN_DISTANCE', ss.JGeometry, :otherGeometry, :params) = 'TRUE' ORDER BY ss.id ASC");
    query.setParameter("otherGeometry", circle);
    query.setParameter("params", null);
    List<Spatial> results = query.getResultList();
    String compareResult = reader.compare(results);
    assertNull(compareResult, compareResult);
}
Also used : EntityManager(jakarta.persistence.EntityManager) Query(jakarta.persistence.Query) Spatial(org.eclipse.persistence.testing.models.spatial.jgeometry.wrapped.Spatial) SimpleSpatial(org.eclipse.persistence.testing.models.jpa.structconverter.SimpleSpatial) JGeometry(oracle.spatial.geometry.JGeometry)

Example 94 with Spatial

use of org.eclipse.persistence.testing.models.spatial.jgeometry.wrapped.Spatial in project eclipselink by eclipse-ee4j.

the class SpatialJPQLTestSuite method testSDOWithinDistanceRectangle.

/**
 * SDO_WITHIN_DISTANCE using a dynamic rectangular window with lower left
 * and upper right coordinates of {(1,1), (20,20)}
 */
public void testSDOWithinDistanceRectangle() throws Exception {
    String sql = "select ID, JGEOMETRY from JPA_JGEOMETRY where mdsys.sdo_within_distance(" + "jgeometry, mdsys.sdo_geometry(3,null,null, mdsys.sdo_elem_info_array(1,3,3), " + "mdsys.sdo_ordinate_array(1,1, 20, 20)), " + "'DISTANCE=10') = 'TRUE' ORDER BY ID";
    SQLReader reader = new SQLReader(getServerSession(STRUCT_CONVERTER_PU), sql);
    JGeometry rectangle = JGeometry.createLinearPolygon(new double[] { 1, 1, 1, 20, 10, 20, 20, 1, 1, 1 }, 2, 0);
    EntityManager em = createEntityManager(STRUCT_CONVERTER_PU);
    Query query = em.createQuery("SELECT ss FROM SimpleSpatial ss WHERE FUNC('mdsys.sdo_WITHIN_DISTANCE', ss.JGeometry, :otherGeometry, :params) = 'TRUE' ORDER BY ss.id ASC");
    query.setParameter("otherGeometry", rectangle);
    query.setParameter("params", "DISTANCE=10");
    List<Spatial> results = query.getResultList();
    String compareResult = reader.compare(results);
    assertNull(compareResult, compareResult);
}
Also used : EntityManager(jakarta.persistence.EntityManager) Query(jakarta.persistence.Query) Spatial(org.eclipse.persistence.testing.models.spatial.jgeometry.wrapped.Spatial) SimpleSpatial(org.eclipse.persistence.testing.models.jpa.structconverter.SimpleSpatial) JGeometry(oracle.spatial.geometry.JGeometry)

Example 95 with Spatial

use of org.eclipse.persistence.testing.models.spatial.jgeometry.wrapped.Spatial in project eclipselink by eclipse-ee4j.

the class SpatialJPQLTestSuite method testSDOFilterCircle.

/**
 * SDO_FILTER using a with a circle of radius 10 around (0,0)
 */
public void testSDOFilterCircle() throws Exception {
    String sql = "select ID, JGEOMETRY from JPA_JGEOMETRY where mdsys.sdo_filter(" + "jgeometry, mdsys.sdo_geometry(3,null,null, " + "mdsys.sdo_elem_info_array(1,3,4), " + "mdsys.sdo_ordinate_array(-10,0, 0, 10, 10, 0)), " + "'QUERYTYPE=WINDOW') = 'TRUE' ORDER BY ID";
    SQLReader reader = new SQLReader(getServerSession(STRUCT_CONVERTER_PU), sql);
    JGeometry circle = JGeometry.createCircle(-10, 0, 0, 10, 10, 0, 0);
    EntityManager em = createEntityManager(STRUCT_CONVERTER_PU);
    Query query = em.createQuery("SELECT ss FROM SimpleSpatial ss WHERE FUNC('mdsys.sdo_FILTER', ss.JGeometry, :otherGeometry, :params) = 'TRUE' ORDER BY ss.id ASC");
    query.setParameter("otherGeometry", circle);
    query.setParameter("params", "QUERYTYPE=WINDOW");
    List<Spatial> results = query.getResultList();
    String compareResult = reader.compare(results);
    assertNull(compareResult, compareResult);
}
Also used : EntityManager(jakarta.persistence.EntityManager) Query(jakarta.persistence.Query) Spatial(org.eclipse.persistence.testing.models.spatial.jgeometry.wrapped.Spatial) SimpleSpatial(org.eclipse.persistence.testing.models.jpa.structconverter.SimpleSpatial) JGeometry(oracle.spatial.geometry.JGeometry)

Aggregations

Spatial (org.eclipse.persistence.testing.models.spatial.jgeometry.wrapped.Spatial)102 List (java.util.List)86 ReadAllQuery (org.eclipse.persistence.queries.ReadAllQuery)82 Expression (org.eclipse.persistence.expressions.Expression)78 ExpressionBuilder (org.eclipse.persistence.expressions.ExpressionBuilder)78 SpatialParameters (org.eclipse.persistence.expressions.spatial.SpatialParameters)76 SimpleSpatial (org.eclipse.persistence.testing.models.spatial.jgeometry.SimpleSpatial)46 WrappedSpatial (org.eclipse.persistence.testing.models.spatial.jgeometry.wrapped.WrappedSpatial)45 JGeometry (oracle.spatial.geometry.JGeometry)43 SQLReader (org.eclipse.persistence.testing.tests.spatial.jgeometry.SQLReader)43 ReportQuery (org.eclipse.persistence.queries.ReportQuery)26 EntityManager (jakarta.persistence.EntityManager)14 Query (jakarta.persistence.Query)14 SimpleSpatial (org.eclipse.persistence.testing.models.jpa.structconverter.SimpleSpatial)14 DataReadQuery (org.eclipse.persistence.queries.DataReadQuery)1