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

com.ibm.fhir.persistence.jdbc.domain.MissingSearchParam 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 java.util.logging.Level;
import java.util.logging.Logger;

import com.ibm.fhir.persistence.exception.FHIRPersistenceException;
import com.ibm.fhir.search.SearchConstants.Type;
import com.ibm.fhir.search.parameters.QueryParameter;
import com.ibm.fhir.search.parameters.QueryParameterValue;


/**
 * Handles search for the missing param
 */
public class MissingSearchParam extends SearchParam {
    private static final Logger logger = Logger.getLogger(MissingSearchParam.class.getName());

    /**
     * @param rootResourceType
     * @param name
     * @param queryParameter
     */
    public MissingSearchParam(String rootResourceType, String name, QueryParameter queryParameter) {
        super(rootResourceType, name, queryParameter);
    }

    @Override
    public  T visit(T query, SearchQueryVisitor visitor) throws FHIRPersistenceException {
        QueryParameter queryParm = getQueryParameter();

        if (logger.isLoggable(Level.FINE)) {
            logger.fine("MissingSearchParam::visit: " + getName() + ", type=" + queryParm.getType());
        }

        // boolean to track whether the user has requested the resources missing this parameter (true) or not missing it
        // (false)
        Boolean missing = null;
        for (QueryParameterValue parameterValue : queryParm.getValues()) {
            if (missing == null) {
                missing = Boolean.parseBoolean(parameterValue.getValueCode());
            } else {
                // multiple values would be very unusual, but I suppose we should handle it like an "or"
                if (missing != Boolean.parseBoolean(parameterValue.getValueCode())) {
                    // user has requested both missing and not missing values for this field which makes no sense
                    logger.warning("Processing query with conflicting values for query param with 'missing' modifier");
                    throw new FHIRPersistenceException("Processing query with conflicting values for query param with 'missing' modifier");
                }
            }
        }

        // Delegate the actual query building to the visitor
        if (Type.COMPOSITE.equals(queryParm.getType())) {
            return visitor.addCompositeParam(query, queryParm, missing == null || missing);
        } else {
            return visitor.addMissingParam(query, queryParm, missing == null || missing);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy