/* * Copyright 2015, The Querydsl Team (http://www.querydsl.com/team) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.querydsl.sql.spatial; import java.sql.*; import javax.annotation.Nullable; import org.geolatte.geom.Geometry; import org.geolatte.geom.codec.Wkt; import com.querydsl.sql.types.AbstractType; class GeometryWktClobType extends AbstractType<Geometry> { public static final GeometryWktClobType DEFAULT = new GeometryWktClobType(); public GeometryWktClobType() { super(Types.CLOB); } @Override public Class<Geometry> getReturnedClass() { return Geometry.class; } @Override @Nullable public Geometry getValue(ResultSet rs, int startIndex) throws SQLException { Clob clob = rs.getClob(startIndex); String str = clob != null ? clob.getSubString(1, (int) clob.length()) : null; if (str != null) { return Wkt.newDecoder(Wkt.Dialect.POSTGIS_EWKT_1).decode(str); } else { return null; } } @Override public void setValue(PreparedStatement st, int startIndex, Geometry value) throws SQLException { String str = Wkt.newEncoder(Wkt.Dialect.POSTGIS_EWKT_1).encode(value); st.setString(startIndex, str); } @Override public String getLiteral(Geometry geometry) { return "'" + Wkt.newEncoder(Wkt.Dialect.POSTGIS_EWKT_1).encode(geometry) + "'"; } }