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

com.ibm.fhir.persistence.jdbc.domain.SearchIncludeQuery Maven / Gradle / Ivy

There is a newer version: 4.11.1
Show newest version
/*
 * (C) Copyright IBM Corp. 2021
 *
 * SPDX-License-Identifier: Apache-2.0
 */

package com.ibm.fhir.persistence.jdbc.domain;

import com.ibm.fhir.persistence.exception.FHIRPersistenceException;

/**
 * Domain model of the FHIR search context representing the query used
 * to perform the search operation in the database. The query built by
 * this class fetches the data for the _include phase of searches.
 */
public class SearchIncludeQuery extends SearchQuery {

    /**
     * Public constructor
     * @param resourceType
     */
    public SearchIncludeQuery(String resourceType) {
        super(resourceType);
    }

    @Override
    public  T getRoot(SearchQueryVisitor visitor) {
        return visitor.includeRoot(getRootResourceType());
    }


    @Override
    public  T visit(SearchQueryVisitor visitor) throws FHIRPersistenceException {

        // Special case for the include query because we don't want to wrap
        // and join the xx_RESOURCES table...it is already part of the join.
        T query = getRoot(visitor);

        // include/revinclude queries only use extensions, not parameters
        visitExtensions(query, visitor);

        // Need to wrap the distinct include query as a sub-select so that we
        // can apply sorting
        query = visitor.wrapInclude(query);

        // now attach the requisite ordering and pagination clauses
        query = visitor.addSorting(query, "LR");
        query = visitor.addPagination(query);

        return query;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy