Exemplo n.º 1
0
  /** {@inheritDoc} */
  @Override
  public void setResult(
      SqlRuntimeContext runtimeCtx,
      Object resultInstance,
      String attributeName,
      Object resultValue,
      boolean ingoreError)
      throws SqlRuntimeException {
    if (logger.isTraceEnabled()) {
      logger.trace(
          ">>> setResult for META type "
              + this
              + ": resultInstance="
              + resultInstance
              + ", attributeName="
              + attributeName
              + ", resultValue="
              + resultValue
              + ", resultType"
              + ((resultValue != null) ? resultValue.getClass() : null));
    }

    Class<?> attributeType = runtimeCtx.getAttributeType(resultInstance.getClass(), attributeName);
    Object enumInstance = runtimeCtx.getValueToEnum(attributeType, resultValue);
    if (runtimeCtx.simpleSetAttribute(resultInstance, attributeName, enumInstance, attributeType))
      return;
    error(
        ingoreError,
        "There's no getter for "
            + attributeName
            + " in "
            + resultInstance
            + ", META type is "
            + getMetaTypes()[0]);
  }
Exemplo n.º 2
0
 /** {@inheritDoc} */
 @Override
 public void setResult(
     SqlRuntimeContext runtimeCtx,
     Object resultInstance,
     String attributeName,
     Object resultValue,
     boolean ingoreError)
     throws SqlRuntimeException {
   if (logger.isTraceEnabled()) {
     logger.trace(
         ">>> setResult "
             + getMetaTypes()[0]
             + ": resultInstance="
             + resultInstance
             + ", attributeName="
             + attributeName
             + ", resultValue="
             + resultValue
             + ", resultType"
             + ((resultValue != null) ? resultValue.getClass() : null));
   }
   if (runtimeCtx.simpleSetAttribute(
       resultInstance, attributeName, resultValue, java.sql.Date.class, java.util.Date.class))
     return;
   if (ingoreError) {
     logger.error(
         "There's no setter for "
             + attributeName
             + " in "
             + resultInstance
             + ", META type is "
             + getMetaTypes()[0]);
   } else {
     throw new SqlRuntimeException(
         "There's no setter for "
             + attributeName
             + " in "
             + resultInstance
             + ", META type is "
             + getMetaTypes()[0]);
   }
 }
Exemplo n.º 3
0
  /** {@inheritDoc} */
  @Override
  public void setParameter(
      SqlRuntimeContext runtimeCtx,
      SqlQuery query,
      String paramName,
      final Object inputValue,
      boolean ingoreError,
      Class<?>... inputTypes)
      throws SqlRuntimeException {
    if (logger.isTraceEnabled()) {
      logger.trace(
          ">>> setParameter for META type "
              + this
              + ": paramName="
              + paramName
              + ", inputValue="
              + inputValue
              + ", inputTypes="
              + inputTypes);
    }

    if (inputValue == null) {
      query.setParameter(paramName, inputValue, getProviderSqlType());
    } else if (!inputValue.getClass().isEnum()) {
      if (!(inputValue instanceof Collection)) {
        if (inputValue instanceof OutValueSetter) {
          query.setParameter(paramName, inputValue, getProviderSqlType());
        } else {
          error(ingoreError, "Incorrect string based enum " + inputValue + " for " + paramName);
          return;
        }
      } else {
        List<String> vals = new ArrayList<String>();
        for (Iterator iter = ((Collection) inputValue).iterator(); iter.hasNext(); ) {
          Object val = iter.next();
          if (!val.getClass().isEnum()) {
            error(ingoreError, "Incorrect string based enum item " + val + " for " + paramName);
            return;
          } else {
            Object o = runtimeCtx.getEnumToValue(val);
            if (o != null && o instanceof String) {
              vals.add((String) o);
            } else {
              error(
                  ingoreError, "Incorrect string based enum item value " + o + " for " + paramName);
              return;
            }
          }
        }
        query.setParameterList(paramName, vals.toArray());
      }
    } else {
      Object o = runtimeCtx.getEnumToValue(inputValue);
      if (o != null && o instanceof String) {
        query.setParameter(paramName, (String) o, getProviderSqlType());
      } else
        error(
            ingoreError,
            "ENUM_STRING parameter "
                + paramName
                + " "
                + inputValue
                + " "
                + inputValue.getClass()
                + " "
                + o);
    }
  }