提交 0da3e2b3 authored 作者: Thomas Mueller's avatar Thomas Mueller

Use a weak dependency to the JTS jar file (allow to use H2 without the JTS jar…

Use a weak dependency to the JTS jar file (allow to use H2 without the JTS jar file in the classpath)
上级 769193eb
......@@ -48,6 +48,14 @@ public class DataType {
*/
public static final int TYPE_RESULT_SET = -10;
/**
* The Geometry class. This object is null if the jts jar file is not in the
* classpath.
*/
public static final Class<?> GEOMETRY_CLASS;
private static final String GEOMETRY_CLASS_NAME = "com.vividsolutions.jts.geom.Geometry";
/**
* The list of types. An ArrayList so that Tomcat doesn't set it to null
* when clearing references.
......@@ -162,6 +170,17 @@ public class DataType {
*/
public int memory;
static {
Class<?> g;
try {
g = Utils.loadUserClass(GEOMETRY_CLASS_NAME);
} catch (Exception e) {
// class is not in the classpath - ignore
g = null;
}
GEOMETRY_CLASS = g;
}
static {
for (int i = 0; i < Value.TYPE_COUNT; i++) {
TYPES_BY_VALUE_TYPE.add(null);
......@@ -599,11 +618,11 @@ public class DataType {
return ValueResultSet.get(rs);
}
case Value.GEOMETRY: {
com.vividsolutions.jts.geom.Geometry x = (com.vividsolutions.jts.geom.Geometry) rs.getObject(columnIndex);
Object x = rs.getObject(columnIndex);
if (x == null) {
return ValueNull.INSTANCE;
}
return ValueGeometry.get(x);
return ValueGeometry.getFromGeometry(x);
}
default:
throw DbException.throwInternalError("type="+type);
......@@ -683,7 +702,7 @@ public class DataType {
case Value.RESULT_SET:
return ResultSet.class.getName();
case Value.GEOMETRY:
return com.vividsolutions.jts.geom.Geometry.class.getName();
return GEOMETRY_CLASS_NAME;
default:
throw DbException.throwInternalError("type="+type);
}
......@@ -845,7 +864,7 @@ public class DataType {
} else if (Object[].class.isAssignableFrom(x)) {
// this includes String[] and so on
return Value.ARRAY;
} else if (com.vividsolutions.jts.geom.Geometry.class.isAssignableFrom(x)) {
} else if (isGeometry(x)) {
return Value.GEOMETRY;
} else {
return Value.JAVA_OBJECT;
......@@ -935,13 +954,20 @@ public class DataType {
return ValueArray.get(x.getClass().getComponentType(), v);
} else if (x instanceof Character) {
return ValueStringFixed.get(((Character) x).toString());
} else if (x instanceof com.vividsolutions.jts.geom.Geometry) {
return ValueGeometry.get((com.vividsolutions.jts.geom.Geometry) x);
} else if (isGeometry(x)) {
return ValueGeometry.getFromGeometry(x);
} else {
return ValueJavaObject.getNoCopy(x, null);
}
}
private static boolean isGeometry(Object x) {
if (x == null || GEOMETRY_CLASS == null) {
return false;
}
return GEOMETRY_CLASS.isAssignableFrom(x.getClass());
}
/**
* Get a data type object from a type name.
*
......
......@@ -35,10 +35,14 @@ public class ValueGeometry extends Value {
/**
* Get or create a geometry value for the given geometry.
*
* @param g the geometry
* @param o the geometry object (of type com.vividsolutions.jts.geom.Geometry)
* @return the value
*/
public static ValueGeometry get(Geometry g) {
public static ValueGeometry getFromGeometry(Object o) {
return get((Geometry) o);
}
private static ValueGeometry get(Geometry g) {
return (ValueGeometry) Value.cache(new ValueGeometry(g));
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论