All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.rapidoid.jpa.JPQL Maven / Gradle / Ivy

/*-
 * #%L
 * rapidoid-jpa
 * %%
 * Copyright (C) 2014 - 2018 Nikolche Mihajlovski and contributors
 * %%
 * 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%
 */

package org.rapidoid.jpa;


import org.rapidoid.annotation.Authors;
import org.rapidoid.annotation.Since;
import org.rapidoid.datamodel.PageableData;
import org.rapidoid.datamodel.impl.ResultsImpl;
import org.rapidoid.u.U;

import javax.persistence.Query;
import java.util.List;
import java.util.Map;

@Authors("Nikolche Mihajlovski")
@Since("5.1.0")
public class JPQL extends ResultsImpl implements PageableData {

	private final String jpql;

	private final Map namedArgs;

	private final Object[] args;

	@SuppressWarnings("unchecked")
	public JPQL(String jpql, Map namedArgs, Object[] args) {
		super(null);
		this.jpql = jpql;
		this.namedArgs = namedArgs;
		this.args = args;
	}

	@Override
	protected PageableData data() {
		return this;
	}

	public JPQL(String jpql) {
		this(jpql, null, null);
	}

	public JPQL bind(Object... args) {
		return new JPQL(jpql, null, args);
	}

	public JPQL bind(Map args) {
		return new JPQL(jpql, args, null);
	}

	public int execute() {
		Query q = JPA.em().createQuery(jpql);
		JPA.bind(q, namedArgs, args);
		return q.executeUpdate();
	}

	@SuppressWarnings("unchecked")
	public  T getSingleResult() {
		Query q = JPA.em().createQuery(jpql);
		JPA.bind(q, namedArgs, args);
		return (T) q.getSingleResult();
	}

	public Query query() {
		Query q = JPA.em().createQuery(jpql);
		JPA.bind(q, namedArgs, args);
		return q;
	}

	public String jpql() {
		return jpql;
	}

	public Map namedArgs() {
		return U.cast(namedArgs);
	}

	public Object[] args() {
		return args;
	}

	@Override
	public List getPage(long skip, long limit) {
		return JPAUtil.getPage(query(), skip, limit);
	}

	@Override
	public long getCount() {
		// TODO find a better way
		return -1; // unknown
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy