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

ca.uhn.fhir.context.BaseRuntimeChildDefinition Maven / Gradle / Ivy

There is a newer version: 7.4.5
Show newest version
/*
 * #%L
 * HAPI FHIR - Core Library
 * %%
 * 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.context;

import ca.uhn.fhir.i18n.Msg;
import ca.uhn.fhir.model.api.annotation.Child;
import org.hl7.fhir.instance.model.api.IBase;
import org.hl7.fhir.instance.model.api.IBaseReference;

import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Optional;
import java.util.Set;

public abstract class BaseRuntimeChildDefinition {

	private BaseRuntimeChildDefinition myReplacedParentDefinition;

	public abstract IAccessor getAccessor();

	public abstract BaseRuntimeElementDefinition getChildByName(String theName);

	public abstract BaseRuntimeElementDefinition getChildElementDefinitionByDatatype(Class theType);

	public abstract String getChildNameByDatatype(Class theDatatype);

	public abstract String getElementName();

	public String getExtensionUrl() {
		return null;
	}

	public Object getInstanceConstructorArguments() {
		return null;
	}

	public abstract int getMax();

	public abstract int getMin();

	public abstract IMutator getMutator();

	public abstract Set getValidChildNames();

	public abstract boolean isSummary();

	abstract void sealAndInitialize(
			FhirContext theContext,
			Map, BaseRuntimeElementDefinition> theClassToElementDefinitions);

	@Override
	public String toString() {
		return getClass().getSimpleName() + "[" + getElementName() + "]";
	}

	public BaseRuntimeChildDefinition getReplacedParentDefinition() {
		return myReplacedParentDefinition;
	}

	public void setReplacedParentDefinition(BaseRuntimeChildDefinition myReplacedParentDefinition) {
		this.myReplacedParentDefinition = myReplacedParentDefinition;
	}

	public boolean isMultipleCardinality() {
		return this.getMax() > 1 || this.getMax() == Child.MAX_UNLIMITED;
	}

	public interface IAccessor {
		List getValues(IBase theTarget);

		default  Optional getFirstValueOrNull(IBase theTarget) {
			return (Optional) getValues(theTarget).stream().findFirst();
		}
	}

	public interface IMutator {
		void addValue(IBase theTarget, IBase theValue);

		void setValue(IBase theTarget, IBase theValue);

		/**
		 * Remove an item from a list of values
		 * @param theTarget field to remove the item from (e.g. patient.name)
		 * @param theIndex the index of the item to be removed (e.g. 1 for patient.name[1])
		 */
		default void remove(IBase theTarget, int theIndex) {
			// implemented in subclasses
		}
	}

	BaseRuntimeElementDefinition findResourceReferenceDefinition(
			Map, BaseRuntimeElementDefinition> theClassToElementDefinitions) {
		for (Entry, BaseRuntimeElementDefinition> next :
				theClassToElementDefinitions.entrySet()) {
			if (IBaseReference.class.isAssignableFrom(next.getKey())) {
				return next.getValue();
			}
		}

		// Shouldn't happen
		throw new IllegalStateException(Msg.code(1692) + "Unable to find reference type");
	}

	// public String getExtensionUrl() {
	// return null;
	// }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy