com.querydsl.jpa.impl.JPAQueryFactory Maven / Gradle / Ivy
The newest version!
/*
* 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 org.jetbrains.annotations.Nullable;
import javax.persistence.EntityManager;
import com.querydsl.core.Tuple;
import com.querydsl.core.types.EntityPath;
import com.querydsl.core.types.Expression;
import com.querydsl.core.types.dsl.Expressions;
import com.querydsl.jpa.JPQLQueryFactory;
import com.querydsl.jpa.JPQLTemplates;
import java.util.function.Supplier;
/**
* Factory class for query and DML clause creation
*
* @author tiwe
*
*/
public class JPAQueryFactory implements JPQLQueryFactory {
@Nullable
private final JPQLTemplates templates;
private final Supplier entityManager;
public JPAQueryFactory(final EntityManager entityManager) {
this.entityManager = () -> entityManager;
this.templates = null;
}
public JPAQueryFactory(JPQLTemplates templates, final EntityManager entityManager) {
this.entityManager = () -> entityManager;
this.templates = templates;
}
public JPAQueryFactory(Supplier entityManager) {
this.entityManager = entityManager;
this.templates = null;
}
public JPAQueryFactory(JPQLTemplates templates, Supplier entityManager) {
this.entityManager = entityManager;
this.templates = templates;
}
@Override
public JPADeleteClause delete(EntityPath> path) {
if (templates != null) {
return new JPADeleteClause(entityManager.get(), path, templates);
} else {
return new JPADeleteClause(entityManager.get(), path);
}
}
@Override
public JPAQuery select(Expression expr) {
return query().select(expr);
}
@Override
public JPAQuery select(Expression>... exprs) {
return query().select(exprs);
}
@Override
public JPAQuery selectDistinct(Expression expr) {
return select(expr).distinct();
}
@Override
public JPAQuery selectDistinct(Expression>... exprs) {
return select(exprs).distinct();
}
@Override
public JPAQuery selectOne() {
return select(Expressions.ONE);
}
@Override
public JPAQuery selectZero() {
return select(Expressions.ZERO);
}
@Override
public JPAQuery selectFrom(EntityPath from) {
return select(from).from(from);
}
@Override
public JPAQuery> from(EntityPath> from) {
return query().from(from);
}
@Override
public JPAQuery> from(EntityPath>... from) {
return query().from(from);
}
@Override
public JPAUpdateClause update(EntityPath> path) {
if (templates != null) {
return new JPAUpdateClause(entityManager.get(), path, templates);
} else {
return new JPAUpdateClause(entityManager.get(), path);
}
}
@Override
public JPAInsertClause insert(EntityPath> path) {
if (templates != null) {
return new JPAInsertClause(entityManager.get(), path, templates);
} else {
return new JPAInsertClause(entityManager.get(), path);
}
}
@Override
public JPAQuery> query() {
if (templates != null) {
return new JPAQuery(entityManager.get(), templates);
} else {
return new JPAQuery(entityManager.get());
}
}
}