edu.uiowa.icts.criterion.DateLike.java Source code

Java tutorial

Introduction

Here is the source code for edu.uiowa.icts.criterion.DateLike.java

Source

package edu.uiowa.icts.criterion;

/*
 * #%L
 * spring-utils
 * %%
 * Copyright (C) 2010 - 2015 University of Iowa Institute for Clinical and Translational Science (ICTS)
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * #L%
 */

import org.hibernate.Criteria;
import org.hibernate.HibernateException;
import org.hibernate.criterion.CriteriaQuery;
import org.hibernate.criterion.Criterion;
import org.hibernate.criterion.MatchMode;
import org.hibernate.dialect.Dialect;
import org.hibernate.engine.spi.TypedValue;

/**
 * <p>DateLike class.</p>
 *
 * @author rrlorent
 * @date March 20, 2014
 * @version $Id: $
 */
public class DateLike implements Criterion {

    private static final long serialVersionUID = -6772056160232172164L;

    private final String SQL_SERVER = "org.hibernate.dialect.SQLServerDialect";
    private final String POSTGRES = "org.hibernate.dialect.PostgreSQLDialect";
    // private final String HSQL = "org.hibernate.dialect.HSQLDialect";
    // private final String MYSQL = "org.hibernate.dialect.MySQL5Dialect";

    private String propertyName;
    private String value;
    private Dialect dialect;

    /**
     * <p>Constructor for DateLike.</p>
     *
     * @param propertyName a {@link java.lang.String} object.
     * @param value a {@link java.lang.String} object.
     * @param dialect a {@link org.hibernate.dialect.Dialect} object.
     */
    public DateLike(String propertyName, String value, Dialect dialect) {
        super();
        this.propertyName = propertyName;
        this.value = value;
        this.dialect = dialect;
    }

    /**
     * {@inheritDoc}
     *
     * (non-Javadoc)
     * @see org.hibernate.criterion.Criterion#toSqlString(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)
     */
    @Override
    public String toSqlString(Criteria criteria, CriteriaQuery criteriaQuery) throws HibernateException {
        String[] columns = criteriaQuery.getColumnsUsingProjection(criteria, propertyName);
        if (columns.length != 1) {
            throw new HibernateException("like may only be used with single-column properties");
        }
        if (SQL_SERVER.equalsIgnoreCase(dialect.toString())) {
            return " cast( convert( varchar( 10 ), " + columns[0] + ", 101 ) as varchar( 10 ) ) like lower( ? ) ";
        } else if (POSTGRES.equalsIgnoreCase(dialect.toString())) {
            return " cast( " + columns[0] + " as varchar ) like lower( ? ) ";
        } else {
            throw new HibernateException("dialect not supported [" + dialect.toString() + "}");
        }

    }

    /**
     * {@inheritDoc}
     *
     * (non-Javadoc)
     * @see org.hibernate.criterion.Criterion#getTypedValues(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)
     */
    @Override
    public TypedValue[] getTypedValues(Criteria criteria, CriteriaQuery criteriaQuery) throws HibernateException {
        return new TypedValue[] { new TypedValue(new org.hibernate.type.StringType(),
                MatchMode.START.toMatchString(value.toLowerCase())) };
    }

}