1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 package org.dbunit.ext.postgresql;
22
23 import java.lang.reflect.Constructor;
24 import java.lang.reflect.InvocationTargetException;
25 import java.lang.reflect.Method;
26 import java.sql.Connection;
27 import java.sql.PreparedStatement;
28 import java.sql.ResultSet;
29 import java.sql.SQLException;
30 import java.sql.Types;
31
32 import org.dbunit.dataset.datatype.AbstractDataType;
33 import org.dbunit.dataset.datatype.TypeCastException;
34 import org.slf4j.Logger;
35 import org.slf4j.LoggerFactory;
36
37
38
39
40
41
42
43
44
45 public class CitextType
46 extends AbstractDataType {
47
48
49
50
51 private static final Logger logger = LoggerFactory.getLogger(CitextType.class);
52
53 public CitextType() {
54 super("citext", Types.OTHER, String.class, false);
55 }
56
57 public Object getSqlValue(int column, ResultSet resultSet) throws SQLException, TypeCastException {
58 return resultSet.getString(column);
59 }
60
61 public void setSqlValue(Object uuid, int column,
62 PreparedStatement statement) throws SQLException, TypeCastException {
63 statement.setObject(column, getCitext(uuid, statement.getConnection()));
64 }
65
66 public Object typeCast(Object arg0) throws TypeCastException {
67 return arg0.toString();
68 }
69
70 private Object getCitext(Object value, Connection connection) throws TypeCastException {
71
72 logger.debug("getCitext(value={}, connection={}) - start", value, connection);
73
74 Object tempCitext = null;
75
76 try {
77 Class aPGObjectClass = super.loadClass("org.postgresql.util.PGobject", connection);
78 Constructor ct = aPGObjectClass.getConstructor(null);
79 tempCitext = ct.newInstance(null);
80
81 Method setTypeMethod = aPGObjectClass.getMethod("setType", new Class[]{String.class});
82 setTypeMethod.invoke(tempCitext, new Object[]{"citext"});
83
84 Method setValueMethod = aPGObjectClass.getMethod("setValue", new Class[]{String.class});
85 setValueMethod.invoke(tempCitext, new Object[]{value.toString()});
86
87 } catch (ClassNotFoundException e) {
88 throw new TypeCastException(value, this, e);
89 } catch (InvocationTargetException e) {
90 throw new TypeCastException(value, this, e);
91 } catch (NoSuchMethodException e) {
92 throw new TypeCastException(value, this, e);
93 } catch (IllegalAccessException e) {
94 throw new TypeCastException(value, this, e);
95 } catch (InstantiationException e) {
96 throw new TypeCastException(value, this, e);
97 }
98
99 return tempCitext;
100 }
101 }