com.mysema.query.jpa.JPAQueryBase Maven / Gradle / Ivy
/*
* Copyright 2011, Mysema Ltd
*
* 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.mysema.query.jpa;
import com.mysema.query.QueryMetadata;
import com.mysema.query.Tuple;
import com.mysema.query.support.ProjectableQuery;
import com.mysema.query.types.CollectionExpression;
import com.mysema.query.types.EntityPath;
import com.mysema.query.types.Expression;
import com.mysema.query.types.MapExpression;
import com.mysema.query.types.Path;
import com.mysema.query.types.Predicate;
import com.mysema.query.types.template.NumberTemplate;
/**
* JPAQueryBase is a base Query class for JPA queries
*
* @author tiwe
*/
public abstract class JPAQueryBase> extends ProjectableQuery implements JPQLQuery {
protected final JPAQueryMixin queryMixin;
private final JPQLTemplates templates;
@SuppressWarnings("unchecked")
public JPAQueryBase(QueryMetadata md, JPQLTemplates templates) {
super(new JPAQueryMixin(md));
super.queryMixin.setSelf((Q) this);
this.queryMixin = (JPAQueryMixin) super.queryMixin;
this.templates = templates;
}
protected JPQLTemplates getTemplates() {
return templates;
}
protected abstract JPQLSerializer createSerializer();
protected JPQLSerializer serialize(boolean forCountRow) {
if (queryMixin.getMetadata().getJoins().isEmpty()) {
throw new IllegalArgumentException("No joins given");
}
JPQLSerializer serializer = createSerializer();
serializer.serialize(queryMixin.getMetadata(), forCountRow, null);
return serializer;
}
protected void reset() {
queryMixin.getMetadata().reset();
}
@Override
public boolean exists() {
if (templates.isSelect1Supported()) {
return singleResult(NumberTemplate.ONE) != null;
} else {
EntityPath> entityPath = (EntityPath>) queryMixin.getMetadata().getJoins().get(0).getTarget();
return !limit(1).list(entityPath).isEmpty();
}
}
public Q fetch() {
return queryMixin.fetch();
}
public Q fetchAll() {
return queryMixin.fetchAll();
}
public Q from(EntityPath> arg) {
return queryMixin.from(arg);
}
public Q from(EntityPath>... args) {
return queryMixin.from(args);
}
@Deprecated
public Q fullJoin(CollectionExpression,P> target) {
return queryMixin.fullJoin(target);
}
@Deprecated
public
Q fullJoin(CollectionExpression,P> target, Path
alias) {
return queryMixin.fullJoin(target, alias);
}
@Deprecated
public
Q fullJoin(EntityPath
target) {
return queryMixin.fullJoin(target);
}
@Deprecated
public
Q fullJoin(EntityPath
target, Path
alias) {
return queryMixin.fullJoin(target, alias);
}
@Deprecated
public
Q fullJoin(MapExpression,P> target) {
return queryMixin.fullJoin(target);
}
@Deprecated
public
Q fullJoin(MapExpression,P> target, Path
alias) {
return queryMixin.fullJoin(target, alias);
}
public
Q innerJoin(CollectionExpression,P> target) {
return queryMixin.innerJoin(target);
}
public
Q innerJoin(CollectionExpression,P>target, Path
alias) {
return queryMixin.innerJoin(target, alias);
}
public
Q innerJoin(EntityPath
target) {
return queryMixin.innerJoin(target);
}
public
Q innerJoin(EntityPath
target, Path
alias) {
return queryMixin.innerJoin(target, alias);
}
public
Q innerJoin(MapExpression,P> target) {
return queryMixin.innerJoin(target);
}
public
Q innerJoin(MapExpression,P> target, Path
alias) {
return queryMixin.innerJoin(target, alias);
}
public
Q join(CollectionExpression,P> target) {
return queryMixin.join(target);
}
public
Q join(CollectionExpression,P> target, Path
alias) {
return queryMixin.join(target, alias);
}
public
Q join(EntityPath
target) {
return queryMixin.join(target);
}
public
Q join(EntityPath
target, Path
alias) {
return queryMixin.join(target, alias);
}
public
Q join(MapExpression,P> target) {
return queryMixin.join(target);
}
public
Q join(MapExpression,P> target, Path
alias) {
return queryMixin.join(target, alias);
}
public
Q leftJoin(CollectionExpression,P> target) {
return queryMixin.leftJoin(target);
}
public
Q leftJoin(CollectionExpression,P> target, Path
alias) {
return queryMixin.leftJoin(target, alias);
}
public
Q leftJoin(EntityPath
target) {
return queryMixin.leftJoin(target);
}
public
Q leftJoin(EntityPath
target, Path
alias) {
return queryMixin.leftJoin(target, alias);
}
public
Q leftJoin(MapExpression,P> target) {
return queryMixin.leftJoin(target);
}
public
Q leftJoin(MapExpression,P> target, Path
alias) {
return queryMixin.leftJoin(target, alias);
}
public
Q rightJoin(CollectionExpression,P> target) {
return queryMixin.rightJoin(target);
}
public
Q rightJoin(CollectionExpression,P> target, Path
alias) {
return queryMixin.rightJoin(target, alias);
}
public
Q rightJoin(EntityPath
target) {
return queryMixin.rightJoin(target);
}
public
Q rightJoin(EntityPath
target, Path
alias) {
return queryMixin.rightJoin(target, alias);
}
public
Q rightJoin(MapExpression,P> target) {
return queryMixin.rightJoin(target);
}
public
Q rightJoin(MapExpression,P> target, Path
alias) {
return queryMixin.rightJoin(target, alias);
}
public Q on(Predicate condition) {
return queryMixin.on(condition);
}
public Q on(Predicate... conditions) {
return queryMixin.on(conditions);
}
@Override
public Tuple uniqueResult(Expression>... args) {
return uniqueResult(queryMixin.createProjection(args));
}
@Override
public String toString() {
JPQLSerializer serializer = serialize(false);
return serializer.toString().trim();
}
public QueryMetadata getMetadata() {
return queryMixin.getMetadata();
}
public abstract Q clone();
}