Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2015, The Querydsl Team (http://www.querydsl.com/team)
*
* 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.
*/
package com.querydsl.jpa.impl;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import javax.annotation.Nullable;
import javax.persistence.EntityManager;
import javax.persistence.FlushModeType;
import javax.persistence.LockModeType;
import javax.persistence.Query;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.slf4j.MDC;
import com.google.common.collect.HashMultimap;
import com.google.common.collect.Multimap;
import com.mysema.commons.lang.CloseableIterator;
import com.querydsl.core.*;
import com.querydsl.core.types.Expression;
import com.querydsl.core.types.FactoryExpression;
import com.querydsl.jpa.JPAQueryBase;
import com.querydsl.jpa.JPQLSerializer;
import com.querydsl.jpa.JPQLTemplates;
import com.querydsl.jpa.QueryHandler;
/**
* Abstract base class for JPA API based implementations of the JPQLQuery interface
*
* @param result type
* @param concrete subtype
*
* @author tiwe
*/
public abstract class AbstractJPAQuery> extends JPAQueryBase {
private static final Logger logger = LoggerFactory.getLogger(JPAQuery.class);
protected final Multimap hints = HashMultimap.create();
protected final EntityManager entityManager;
protected final QueryHandler queryHandler;
@Nullable
protected LockModeType lockMode;
@Nullable
protected FlushModeType flushMode;
@Nullable
protected FactoryExpression> projection;
public AbstractJPAQuery(EntityManager em) {
this(em, JPAProvider.getTemplates(em), new DefaultQueryMetadata());
}
public AbstractJPAQuery(EntityManager em, JPQLTemplates templates, QueryMetadata metadata) {
super(metadata, templates);
this.queryHandler = templates.getQueryHandler();
this.entityManager = em;
}
@Override
public long fetchCount() {
try {
Query query = createQuery(null, true);
return (Long) query.getSingleResult();
} finally {
reset();
}
}
/**
* Expose the original JPA query for the given projection
*
* @return query
*/
public Query createQuery() {
return createQuery(getMetadata().getModifiers(), false);
}
private Query createQuery(@Nullable QueryModifiers modifiers, boolean forCount) {
JPQLSerializer serializer = serialize(forCount);
String queryString = serializer.toString();
logQuery(queryString, serializer.getConstantToLabel());
Query query = entityManager.createQuery(queryString);
JPAUtil.setConstants(query, serializer.getConstantToLabel(), getMetadata().getParams());
if (modifiers != null && modifiers.isRestricting()) {
Integer limit = modifiers.getLimitAsInteger();
Integer offset = modifiers.getOffsetAsInteger();
if (limit != null) {
query.setMaxResults(limit);
}
if (offset != null) {
query.setFirstResult(offset);
}
}
if (lockMode != null) {
query.setLockMode(lockMode);
}
if (flushMode != null) {
query.setFlushMode(flushMode);
}
for (Map.Entry entry : hints.entries()) {
query.setHint(entry.getKey(), entry.getValue());
}
// set transformer, if necessary and possible
Expression> projection = getMetadata().getProjection();
this.projection = null; // necessary when query is reused
if (!forCount && projection instanceof FactoryExpression) {
if (!queryHandler.transform(query, (FactoryExpression>) projection)) {
this.projection = (FactoryExpression) projection;
}
}
return query;
}
/**
* Transforms results using FactoryExpression if ResultTransformer can't be used
*
* @param query query
* @return results
*/
private List> getResultList(Query query) {
// TODO : use lazy fetch here?
if (projection != null) {
List> results = query.getResultList();
List