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

ca.uhn.fhir.mdm.rules.matcher.fieldmatchers.PhoneticEncoderMatcher 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.rules.matcher.fieldmatchers;

import ca.uhn.fhir.context.phonetic.IPhoneticEncoder;
import ca.uhn.fhir.context.phonetic.PhoneticEncoderEnum;
import ca.uhn.fhir.mdm.rules.json.MdmMatcherJson;
import ca.uhn.fhir.mdm.rules.matcher.models.IMdmFieldMatcher;
import ca.uhn.fhir.mdm.rules.matcher.util.StringMatcherUtils;
import ca.uhn.fhir.util.PhoneticEncoderUtil;
import org.hl7.fhir.instance.model.api.IBase;
import org.hl7.fhir.instance.model.api.IPrimitiveType;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class PhoneticEncoderMatcher implements IMdmFieldMatcher {
	private static final Logger ourLog = LoggerFactory.getLogger(PhoneticEncoderMatcher.class);

	private final IPhoneticEncoder myStringEncoder;

	public PhoneticEncoderMatcher(PhoneticEncoderEnum thePhoneticEnum) {
		myStringEncoder = PhoneticEncoderUtil.getEncoder(thePhoneticEnum.name());
	}

	public boolean matches(String theLeftString, String theRightString) {
		return myStringEncoder.encode(theLeftString).equals(myStringEncoder.encode(theRightString));
	}

	@Override
	public boolean matches(IBase theLeftBase, IBase theRightBase, MdmMatcherJson theParams) {
		if (theLeftBase instanceof IPrimitiveType && theRightBase instanceof IPrimitiveType) {
			String leftString = StringMatcherUtils.extractString((IPrimitiveType) theLeftBase, theParams.getExact());
			String rightString =
					StringMatcherUtils.extractString((IPrimitiveType) theRightBase, theParams.getExact());

			return matches(leftString, rightString);
		}
		ourLog.warn(
				"Unable to evaluate match between {} and {} because they are not an instance of PrimitiveType.",
				theLeftBase.getClass().getSimpleName(),
				theRightBase.getClass().getSimpleName());
		return false;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy