ca.uhn.fhir.mdm.util.EIDHelper Maven / Gradle / Ivy
/*-
* #%L
* HAPI FHIR - Master Data Management
* %%
* Copyright (C) 2014 - 2024 Smile CDR, Inc.
* %%
* 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 ca.uhn.fhir.mdm.util;
import ca.uhn.fhir.context.FhirContext;
import ca.uhn.fhir.mdm.api.IMdmSettings;
import ca.uhn.fhir.mdm.api.MdmConstants;
import ca.uhn.fhir.mdm.model.CanonicalEID;
import org.hl7.fhir.instance.model.api.IAnyResource;
import org.hl7.fhir.instance.model.api.IBaseResource;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.Collections;
import java.util.List;
import java.util.UUID;
import java.util.stream.Collectors;
@Service
public class EIDHelper {
private final FhirContext myFhirContext;
private final IMdmSettings myMdmSettings;
@Autowired
public EIDHelper(FhirContext theFhirContext, IMdmSettings theMdmSettings) {
myFhirContext = theFhirContext;
myMdmSettings = theMdmSettings;
}
public CanonicalEID createHapiEid() {
return new CanonicalEID(
MdmConstants.HAPI_ENTERPRISE_IDENTIFIER_SYSTEM,
UUID.randomUUID().toString(),
null);
}
/**
* Given an {@link IAnyResource} representing a type supported by MDM, retrieve their externally-assigned EID,
* represented as a {@link CanonicalEID}
*
* @param theResource the resource to extract the EID from.
*
* @return An optional {@link CanonicalEID} representing the external EID. Absent if the EID is not present.
*/
public List getExternalEid(IBaseResource theResource) {
String resourceType = myFhirContext.getResourceType(theResource);
return CanonicalEID.extractFromResource(
myFhirContext,
myMdmSettings.getMdmRules().getEnterpriseEIDSystemForResourceType(resourceType),
theResource);
}
/**
* Given an {@link IAnyResource} representing a type supported by MDM, retrieve their internally-assigned EID,
* represented as a {@link CanonicalEID}
*
* @param theResource the resource to extract the EID from.
*
* @return An optional {@link CanonicalEID} representing the internal EID. Absent if the EID is not present.
*/
public List getHapiEid(IAnyResource theResource) {
return CanonicalEID.extractFromResource(
myFhirContext, MdmConstants.HAPI_ENTERPRISE_IDENTIFIER_SYSTEM, theResource);
}
/**
* Determines whether two lists of {@link CanonicalEID} have any intersection. Two resources are considered a match if
* a single {@link CanonicalEID} matches between the two collections.
*
* @param theFirstResourceEids the first EID
* @param theSecondResourceEids the second EID
*
* @return a boolean indicating whether there is a match between these two identifier sets.
*/
public boolean eidMatchExists(List theFirstResourceEids, List theSecondResourceEids) {
List collect =
theFirstResourceEids.stream().map(CanonicalEID::getValue).collect(Collectors.toList());
List collect1 =
theSecondResourceEids.stream().map(CanonicalEID::getValue).collect(Collectors.toList());
return !Collections.disjoint(collect, collect1);
}
/**
* An incoming resource is a potential duplicate if it matches a source resource that has a golden resource with an
* official EID, but the incoming resource also has an EID that does not match.
*/
public boolean hasEidOverlap(IAnyResource theExistingGoldenResource, IAnyResource theComparingGoldenResource) {
List firstEids = this.getExternalEid(theExistingGoldenResource);
List secondEids = this.getExternalEid(theComparingGoldenResource);
if (firstEids.isEmpty() || secondEids.isEmpty()) {
return false;
}
return this.eidMatchExists(firstEids, secondEids);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy