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