Search in sources :

Example 6 with GraphDefinitionLinkComponent

use of org.hl7.fhir.r5.model.GraphDefinition.GraphDefinitionLinkComponent in project org.hl7.fhir.core by hapifhir.

the class GraphDefinitionEngine method processLinkTarget.

private void processLinkTarget(String focusPath, Resource focus, GraphDefinitionLinkComponent link, int depth) {
    check(link.getTarget().size() == 1, "If there is no path, there must be one and only one target at " + focusPath);
    check(link.getTarget().get(0).hasType(), "If there is no path, there must be type on the target at " + focusPath);
    check(link.getTarget().get(0).getParams().contains("{ref}"), "If there is no path, the target must have parameters that include a parameter using {ref} at " + focusPath);
    String path = focusPath + " -> " + link.getTarget().get(0).getType() + "?" + link.getTarget().get(0).getParams();
    List<IBaseResource> list = new ArrayList<>();
    List<Argument> params = new ArrayList<>();
    parseParams(params, link.getTarget().get(0).getParams(), focus);
    services.listResources(appInfo, link.getTarget().get(0).getType(), params, list);
    check(!validating || (list.size() >= (link.hasMin() ? link.getMin() : 0)), "Link at path " + path + " requires at least " + link.getMin() + " matches, but only found " + list.size());
    check(!validating || (list.size() <= (link.hasMax() && !link.getMax().equals("*") ? Integer.parseInt(link.getMax()) : Integer.MAX_VALUE)), "Link at path " + path + " requires at most " + link.getMax() + " matches, but found " + list.size());
    for (IBaseResource res : list) {
        Resource r = (Resource) res;
        if (!isInBundle(r)) {
            addToBundle(r);
            // Grahame Grieve 17-06-2020: this seems wrong to me - why restart?
            for (GraphDefinitionLinkComponent l : graphDefinition.getLink()) {
                processLink(start.fhirType(), start, l, depth + 1);
            }
        }
    }
}
Also used : GraphDefinitionLinkComponent(org.hl7.fhir.r5.model.GraphDefinition.GraphDefinitionLinkComponent) Argument(org.hl7.fhir.utilities.graphql.Argument) ArrayList(java.util.ArrayList) IBaseResource(org.hl7.fhir.instance.model.api.IBaseResource) Resource(org.hl7.fhir.r5.model.Resource) IBaseResource(org.hl7.fhir.instance.model.api.IBaseResource)

Aggregations

IBaseResource (org.hl7.fhir.instance.model.api.IBaseResource)4 GraphDefinitionLinkComponent (org.hl7.fhir.r4b.model.GraphDefinition.GraphDefinitionLinkComponent)3 GraphDefinitionLinkComponent (org.hl7.fhir.r5.model.GraphDefinition.GraphDefinitionLinkComponent)3 ArrayList (java.util.ArrayList)2 Resource (org.hl7.fhir.r4b.model.Resource)2 Resource (org.hl7.fhir.r5.model.Resource)2 Argument (org.hl7.fhir.utilities.graphql.Argument)2 ReferenceResolution (org.hl7.fhir.utilities.graphql.IGraphQLStorageServices.ReferenceResolution)2 Base (org.hl7.fhir.r4b.model.Base)1 ExpressionNode (org.hl7.fhir.r4b.model.ExpressionNode)1 GraphDefinitionLinkTargetComponent (org.hl7.fhir.r4b.model.GraphDefinition.GraphDefinitionLinkTargetComponent)1 Base (org.hl7.fhir.r5.model.Base)1 ExpressionNode (org.hl7.fhir.r5.model.ExpressionNode)1 GraphDefinitionLinkTargetComponent (org.hl7.fhir.r5.model.GraphDefinition.GraphDefinitionLinkTargetComponent)1