1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
| public class Jdbc3KeyGenerator implements KeyGenerator { private static final String SECOND_GENERIC_PARAM_NAME = "param2"; public static final Jdbc3KeyGenerator INSTANCE = new Jdbc3KeyGenerator(); private static final String MSG_TOO_MANY_KEYS = "Too many keys are generated. There are only %d target objects. You either specified a wrong 'keyProperty' or encountered a driver bug like #1523.";
public Jdbc3KeyGenerator() { }
public void processBefore(Executor executor, MappedStatement ms, Statement stmt, Object parameter) { }
public void processAfter(Executor executor, MappedStatement ms, Statement stmt, Object parameter) { this.processBatch(ms, stmt, parameter); }
public void processBatch(MappedStatement ms, Statement stmt, Object parameter) { String[] keyProperties = ms.getKeyProperties(); if (keyProperties != null && keyProperties.length != 0) { try { ResultSet rs = stmt.getGeneratedKeys(); Throwable var6 = null;
try { ResultSetMetaData rsmd = rs.getMetaData(); Configuration configuration = ms.getConfiguration(); if (rsmd.getColumnCount() >= keyProperties.length) { this.assignKeys(configuration, rs, rsmd, keyProperties, parameter); } } catch (Throwable var17) { var6 = var17; throw var17; } finally { if (rs != null) { if (var6 != null) { try { rs.close(); } catch (Throwable var16) { var6.addSuppressed(var16); } } else { rs.close(); } }
}
} catch (Exception var19) { throw new ExecutorException("Error getting generated key or setting result to parameter object. Cause: " + var19, var19); } } }
private void assignKeys(Configuration configuration, ResultSet rs, ResultSetMetaData rsmd, String[] keyProperties, Object parameter) throws SQLException { if (!(parameter instanceof ParamMap) && !(parameter instanceof StrictMap)) { if (parameter instanceof ArrayList && !((ArrayList)parameter).isEmpty() && ((ArrayList)parameter).get(0) instanceof ParamMap) { this.assignKeysToParamMapList(configuration, rs, rsmd, keyProperties, (ArrayList)parameter); } else { this.assignKeysToParam(configuration, rs, rsmd, keyProperties, parameter); } } else { this.assignKeysToParamMap(configuration, rs, rsmd, keyProperties, (Map)parameter); }
}
private void assignKeysToParam(Configuration configuration, ResultSet rs, ResultSetMetaData rsmd, String[] keyProperties, Object parameter) throws SQLException { Collection<?> params = collectionize(parameter); if (!params.isEmpty()) { List<Jdbc3KeyGenerator.KeyAssigner> assignerList = new ArrayList();
for(int i = 0; i < keyProperties.length; ++i) { assignerList.add(new Jdbc3KeyGenerator.KeyAssigner(configuration, rsmd, i + 1, (String)null, keyProperties[i])); }
Iterator iterator = params.iterator();
while(rs.next()) { if (!iterator.hasNext()) { throw new ExecutorException(String.format("Too many keys are generated. There are only %d target objects. You either specified a wrong 'keyProperty' or encountered a driver bug like #1523.", params.size())); }
Object param = iterator.next(); assignerList.forEach((x) -> { x.assign(rs, param); }); }
} }
private void assignKeysToParamMapList(Configuration configuration, ResultSet rs, ResultSetMetaData rsmd, String[] keyProperties, ArrayList<ParamMap<?>> paramMapList) throws SQLException { Iterator<ParamMap<?>> iterator = paramMapList.iterator(); List<Jdbc3KeyGenerator.KeyAssigner> assignerList = new ArrayList();
for(long counter = 0L; rs.next(); ++counter) { if (!iterator.hasNext()) { throw new ExecutorException(String.format("Too many keys are generated. There are only %d target objects. You either specified a wrong 'keyProperty' or encountered a driver bug like #1523.", counter)); }
ParamMap<?> paramMap = (ParamMap)iterator.next(); if (assignerList.isEmpty()) { for(int i = 0; i < keyProperties.length; ++i) { assignerList.add(this.getAssignerForParamMap(configuration, rsmd, i + 1, paramMap, keyProperties[i], keyProperties, false).getValue()); } }
assignerList.forEach((x) -> { x.assign(rs, paramMap); }); }
}
private void assignKeysToParamMap(Configuration configuration, ResultSet rs, ResultSetMetaData rsmd, String[] keyProperties, Map<String, ?> paramMap) throws SQLException { if (!paramMap.isEmpty()) { Map<String, Entry<Iterator<?>, List<Jdbc3KeyGenerator.KeyAssigner>>> assignerMap = new HashMap();
for(int i = 0; i < keyProperties.length; ++i) { Entry<String, Jdbc3KeyGenerator.KeyAssigner> entry = this.getAssignerForParamMap(configuration, rsmd, i + 1, paramMap, keyProperties[i], keyProperties, true); Entry<Iterator<?>, List<Jdbc3KeyGenerator.KeyAssigner>> iteratorPair = (Entry)assignerMap.computeIfAbsent(entry.getKey(), (k) -> { return entry(collectionize(paramMap.get(k)).iterator(), new ArrayList()); }); ((List)iteratorPair.getValue()).add(entry.getValue()); }
for(long counter = 0L; rs.next(); ++counter) { Iterator var13 = assignerMap.values().iterator();
while(var13.hasNext()) { Entry<Iterator<?>, List<Jdbc3KeyGenerator.KeyAssigner>> pair = (Entry)var13.next(); if (!((Iterator)pair.getKey()).hasNext()) { throw new ExecutorException(String.format("Too many keys are generated. There are only %d target objects. You either specified a wrong 'keyProperty' or encountered a driver bug like #1523.", counter)); }
Object param = ((Iterator)pair.getKey()).next(); ((List)pair.getValue()).forEach((x) -> { x.assign(rs, param); }); } }
} }
private Entry<String, Jdbc3KeyGenerator.KeyAssigner> getAssignerForParamMap(Configuration config, ResultSetMetaData rsmd, int columnPosition, Map<String, ?> paramMap, String keyProperty, String[] keyProperties, boolean omitParamName) { Set<String> keySet = paramMap.keySet(); boolean singleParam = !keySet.contains("param2"); int firstDot = keyProperty.indexOf(46); if (firstDot == -1) { if (singleParam) { return this.getAssignerForSingleParam(config, rsmd, columnPosition, paramMap, keyProperty, omitParamName); } else { throw new ExecutorException("Could not determine which parameter to assign generated keys to. Note that when there are multiple parameters, 'keyProperty' must include the parameter name (e.g. 'param.id'). Specified key properties are " + ArrayUtil.toString(keyProperties) + " and available parameters are " + keySet); } } else { String paramName = keyProperty.substring(0, firstDot); if (keySet.contains(paramName)) { String argParamName = omitParamName ? null : paramName; String argKeyProperty = keyProperty.substring(firstDot + 1); return entry(paramName, new Jdbc3KeyGenerator.KeyAssigner(config, rsmd, columnPosition, argParamName, argKeyProperty)); } else if (singleParam) { return this.getAssignerForSingleParam(config, rsmd, columnPosition, paramMap, keyProperty, omitParamName); } else { throw new ExecutorException("Could not find parameter '" + paramName + "'. Note that when there are multiple parameters, 'keyProperty' must include the parameter name (e.g. 'param.id'). Specified key properties are " + ArrayUtil.toString(keyProperties) + " and available parameters are " + keySet); } } }
private Entry<String, Jdbc3KeyGenerator.KeyAssigner> getAssignerForSingleParam(Configuration config, ResultSetMetaData rsmd, int columnPosition, Map<String, ?> paramMap, String keyProperty, boolean omitParamName) { String singleParamName = nameOfSingleParam(paramMap); String argParamName = omitParamName ? null : singleParamName; return entry(singleParamName, new Jdbc3KeyGenerator.KeyAssigner(config, rsmd, columnPosition, argParamName, keyProperty)); }
private static String nameOfSingleParam(Map<String, ?> paramMap) { return (String)paramMap.keySet().iterator().next(); }
private static Collection<?> collectionize(Object param) { if (param instanceof Collection) { return (Collection)param; } else { return param instanceof Object[] ? Arrays.asList((Object[])((Object[])param)) : Arrays.asList(param); } }
private static <K, V> Entry<K, V> entry(K key, V value) { return new SimpleImmutableEntry(key, value); }
private class KeyAssigner { private final Configuration configuration; private final ResultSetMetaData rsmd; private final TypeHandlerRegistry typeHandlerRegistry; private final int columnPosition; private final String paramName; private final String propertyName; private TypeHandler<?> typeHandler;
protected KeyAssigner(Configuration configuration, ResultSetMetaData rsmd, int columnPosition, String paramName, String propertyName) { this.configuration = configuration; this.rsmd = rsmd; this.typeHandlerRegistry = configuration.getTypeHandlerRegistry(); this.columnPosition = columnPosition; this.paramName = paramName; this.propertyName = propertyName; }
protected void assign(ResultSet rs, Object param) { if (this.paramName != null) { param = ((ParamMap)param).get(this.paramName); } MetaObject metaParam = this.configuration.newMetaObject(param);
try { if (this.typeHandler == null) { if (!metaParam.hasSetter(this.propertyName)) { throw new ExecutorException("No setter found for the keyProperty '" + this.propertyName + "' in '" + metaParam.getOriginalObject().getClass().getName() + "'."); }
Class<?> propertyType = metaParam.getSetterType(this.propertyName); this.typeHandler = this.typeHandlerRegistry.getTypeHandler(propertyType, JdbcType.forCode(this.rsmd.getColumnType(this.columnPosition))); }
if (this.typeHandler != null) { Object value = this.typeHandler.getResult(rs, this.columnPosition); metaParam.setValue(this.propertyName, value); }
} catch (SQLException var5) { throw new ExecutorException("Error getting generated key or setting result to parameter object. Cause: " + var5, var5); } } } }
|