/* * GeoTools - The Open Source Java GIS Toolkit * http://geotools.org * * (C) 2002-2008, Open Source Geospatial Foundation (OSGeo) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotools.data.db2; import java.lang.reflect.Method; import org.geotools.factory.Hints; import org.geotools.util.Converter; import org.geotools.util.ConverterFactory; public class DB2BlobConverterFactory implements ConverterFactory { DB2BlobConverter converter = new DB2BlobConverter(); static final Class<?> DB2_BLOB; static final Method DB2_GET_BYTES; static final Method DB2_LENGTH; static { Class<?> db2BlobClass = null; try { db2BlobClass = Class.forName("com.ibm.db2.jcc.DB2Blob"); } catch (ClassNotFoundException e) { // db2jcc*.jar not on the path } if (db2BlobClass == null) { DB2_BLOB = null; DB2_GET_BYTES = null; DB2_LENGTH = null; } else { try { DB2_BLOB = db2BlobClass; DB2_LENGTH = DB2_BLOB.getMethod("length"); DB2_GET_BYTES = DB2_BLOB.getMethod("getBytes", long.class, int.class); } catch(Exception e) { throw new RuntimeException("Could not initialize the db2 blob converter", e); } } } public Converter createConverter(Class<?> source, Class<?> target, Hints hints) { // if the jdbc driver is not in the classpath don't bother trying to convert if(DB2_BLOB == null) return null; // can only convert towards byte[] if (!(byte[].class.equals(target))) return null; // can only deal with db2 specific blob classes if (!DB2_BLOB.isAssignableFrom(source)) return null; // converter is thread safe, so cache and return just one return converter; } class DB2BlobConverter implements Converter { public <T> T convert(Object source, Class<T> target) throws Exception { int length = ((Long) DB2_LENGTH.invoke(source)).intValue(); return (T) DB2_GET_BYTES.invoke(source, 1l, length); } } }