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

org.mycore.backend.hibernate.MCRHibernateQueryStream Maven / Gradle / Ivy

There is a newer version: 2024.05
Show newest version
/*
 * This file is part of ***  M y C o R e  ***
 * See http://www.mycore.de/ for details.
 *
 * MyCoRe is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * MyCoRe is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with MyCoRe.  If not, see .
 */

package org.mycore.backend.hibernate;

import java.util.HashMap;
import java.util.Map;
import java.util.stream.Stream;

import javax.persistence.EntityManager;

import org.hibernate.Session;
import org.hibernate.query.Query;
import org.mycore.backend.jpa.MCRStreamQuery;

/**
 * @author Thomas Scheffler (yagee)
 * @param  result type of query
 *
 */
public class MCRHibernateQueryStream extends MCRStreamQuery {
    private final Session session;

    private final String jql;

    private final Class type;

    private final Map parameters = new HashMap<>();

    private int fetchSize = -1;

    private int maxResults = -1;

    public MCRHibernateQueryStream(EntityManager em, String jql, Class resultType) {
        this.jql = jql;
        this.type = resultType;
        this.session = em.unwrap(Session.class);
    }

    @Override
    public Stream getResultStream() {
        Query query = session.createQuery(jql, type);
        if (fetchSize >= 0) {
            query.setFetchSize(fetchSize);
        }
        if (maxResults >= 0) {
            query.setMaxResults(maxResults);
        }
        query.setReadOnly(true);
        parameters.entrySet().stream().forEach(e -> query.setParameter(e.getKey(), e.getValue()));
        return query.stream();
    }

    @Override
    public MCRStreamQuery setParameter(String name, Object value) {
        parameters.put(name, value);
        return this;
    }

    @Override
    public MCRStreamQuery setFetchSize(int size) {
        this.fetchSize = size;
        return this;
    }

    @Override
    public MCRStreamQuery setMaxResults(int size) {
        this.maxResults = size;
        return this;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy