/sql-processor/src/main/java/org/sqlproc/engine/type/SqlDefaultType.java

http://github.com/hudec/sql-processor · Java · 185 lines · 144 code · 15 blank · 26 comment · 65 complexity · 5c416b43da625b9f74aeb48eda6c2200 MD5 · raw file

  1. package org.sqlproc.engine.type;
  2. import java.math.BigDecimal;
  3. import java.math.BigInteger;
  4. import java.util.ArrayList;
  5. import java.util.Collection;
  6. import java.util.Iterator;
  7. import java.util.List;
  8. import org.slf4j.Logger;
  9. import org.slf4j.LoggerFactory;
  10. import org.sqlproc.engine.SqlQuery;
  11. import org.sqlproc.engine.SqlRuntimeContext;
  12. import org.sqlproc.engine.SqlRuntimeException;
  13. /**
  14. * The default META type for the JDBC stack. It's used in the case there's no explicit META type declaration in the META
  15. * SQL statements.
  16. *
  17. * @author <a href="mailto:Vladimir.Hudec@gmail.com">Vladimir Hudec</a>
  18. */
  19. public abstract class SqlDefaultType implements SqlTaggedMetaType {
  20. /**
  21. * The internal slf4j logger.
  22. */
  23. protected final Logger logger = LoggerFactory.getLogger(getClass());
  24. /**
  25. * Returns the list of Java class types related to this META type for SqlDefaultType processing.
  26. *
  27. * @return the list of Java class types related to this META type for SqlDefaultType processing
  28. */
  29. public Class<?>[] getClassTypesForDefault() {
  30. return getClassTypes();
  31. }
  32. /**
  33. * {@inheritDoc}
  34. */
  35. public void addScalar(SqlTypeFactory typeFactory, SqlQuery query, String dbName, Class<?>... attributeTypes) {
  36. addScalarEntryLog(logger, this, typeFactory, query, dbName, attributeTypes);
  37. if (getProviderSqlType() != null) {
  38. query.addScalar(dbName, getProviderSqlType());
  39. } else {
  40. SqlMetaType type = (attributeTypes.length > 0) ? typeFactory.getMetaType(attributeTypes[0]) : null;
  41. if (type != null)
  42. query.addScalar(dbName, type);
  43. else
  44. query.addScalar(dbName);
  45. }
  46. }
  47. /**
  48. * {@inheritDoc}
  49. */
  50. @Override
  51. public void setResult(SqlRuntimeContext runtimeCtx, Object resultInstance, String attributeName, Object resultValue,
  52. boolean ingoreError) throws SqlRuntimeException {
  53. setResultEntryLog(logger, this, runtimeCtx, resultInstance, attributeName, resultValue, ingoreError);
  54. if (getClassTypesForDefault() != null && getClassTypesForDefault().length > 0) {
  55. if (runtimeCtx.simpleSetAttribute(resultInstance, attributeName, resultValue, getClassTypesForDefault()))
  56. return;
  57. error(logger, ingoreError, "There's no default setter for '" + attributeName + "' in " + resultInstance
  58. + ", META type is " + this);
  59. return;
  60. }
  61. Class<?> attributeType = runtimeCtx.getAttributeType(resultInstance.getClass(), attributeName);
  62. if (attributeType == null) {
  63. error(logger, ingoreError, "There's problem with attribute type for '" + attributeName + "' in "
  64. + resultInstance + ", META type is " + this);
  65. return;
  66. }
  67. if (resultValue != null && resultValue instanceof BigDecimal && attributeType != BigDecimal.class)
  68. resultValue = (Integer) ((BigDecimal) resultValue).intValue();
  69. else if (resultValue != null && resultValue instanceof BigInteger && attributeType != BigInteger.class)
  70. resultValue = (Integer) ((BigInteger) resultValue).intValue();
  71. if (attributeType.isEnum()) {
  72. Class enumType = runtimeCtx.getEnumToClass(attributeType);
  73. if (enumType == Integer.class || enumType == int.class)
  74. runtimeCtx.getTypeFactory().getEnumIntegerType().setResult(runtimeCtx, resultInstance, attributeName,
  75. resultValue, ingoreError);
  76. else if (enumType == String.class)
  77. runtimeCtx.getTypeFactory().getEnumStringType().setResult(runtimeCtx, resultInstance, attributeName,
  78. resultValue, ingoreError);
  79. else {
  80. error(logger, ingoreError, "There's no enum setter for '" + attributeName + "' in " + resultInstance
  81. + ", META type is " + this);
  82. return;
  83. }
  84. } else {
  85. if (getProviderSqlType() == null) {
  86. SqlMetaType type = runtimeCtx.getTypeFactory().getMetaType(attributeType);
  87. if (type != null) {
  88. type.setResult(runtimeCtx, resultInstance, attributeName, resultValue, ingoreError);
  89. return;
  90. }
  91. }
  92. // error(logger, ingoreError,
  93. // "There's no setter for '" + attributeName + "' in " + resultInstance + ", META type is " + this);
  94. // return;
  95. if (runtimeCtx.simpleSetAttribute(resultInstance, attributeName, resultValue, attributeType))
  96. return;
  97. else {
  98. error(logger, ingoreError, "There's no setter for '" + attributeName + "' in " + resultInstance
  99. + ", META type is " + this);
  100. return;
  101. }
  102. }
  103. }
  104. /**
  105. * {@inheritDoc}
  106. */
  107. @Override
  108. public void setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue,
  109. boolean ingoreError, Class<?>... inputTypes) throws SqlRuntimeException {
  110. setParameterEntryLog(logger, this, runtimeCtx, query, paramName, inputValue, ingoreError, inputTypes);
  111. if (getProviderSqlType() != null) {
  112. if (inputValue == null) {
  113. query.setParameter(paramName, inputValue, getProviderSqlType());
  114. } else if (inputValue instanceof Collection) {
  115. query.setParameterList(paramName, ((Collection) inputValue).toArray(), getProviderSqlType());
  116. } else {
  117. query.setParameter(paramName, inputValue, getProviderSqlType());
  118. }
  119. return;
  120. }
  121. if (!(inputValue instanceof Collection)) {
  122. if (inputTypes[0].isEnum()) {
  123. Class clazz = runtimeCtx.getEnumToClass(inputTypes[0]);
  124. if (clazz == String.class) {
  125. runtimeCtx.getTypeFactory().getEnumStringType().setParameter(runtimeCtx, query, paramName,
  126. inputValue, ingoreError, inputTypes);
  127. } else if (clazz == Integer.class) {
  128. runtimeCtx.getTypeFactory().getEnumIntegerType().setParameter(runtimeCtx, query, paramName,
  129. inputValue, ingoreError, inputTypes);
  130. } else {
  131. error(logger, ingoreError, "Incorrect enum type " + inputValue + " for " + paramName
  132. + ", META type is DEFAULT" + this);
  133. return;
  134. }
  135. } else {
  136. SqlMetaType type = runtimeCtx.getTypeFactory().getMetaType(inputTypes[0]);
  137. if (type != null) {
  138. type.setParameter(runtimeCtx, query, paramName, inputValue, ingoreError, inputTypes);
  139. } else {
  140. error(logger, ingoreError, "Incorrect default type " + inputValue + " for " + paramName
  141. + ", META type is DEFAULT" + this);
  142. return;
  143. }
  144. }
  145. } else {
  146. List<Object> vals = new ArrayList<Object>();
  147. boolean isEnum = false;
  148. for (Iterator iter = ((Collection) inputValue).iterator(); iter.hasNext();) {
  149. Object val = iter.next();
  150. if (!val.getClass().isEnum())
  151. break;
  152. else
  153. isEnum = true;
  154. Object o = runtimeCtx.getEnumToValue(val);
  155. if (o != null) {
  156. vals.add(o);
  157. } else {
  158. error(logger, ingoreError, "Incorrect enum type item value " + o + " for " + paramName
  159. + ", META type is DEFAULT" + this);
  160. return;
  161. }
  162. }
  163. if (isEnum) {
  164. query.setParameterList(paramName, vals.toArray());
  165. } else {
  166. query.setParameterList(paramName, ((Collection) inputValue).toArray());
  167. }
  168. }
  169. }
  170. }