ca.uhn.fhir.context.RuntimeChildExt Maven / Gradle / Ivy
/*-
* #%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 com.google.common.collect.Sets;
import org.apache.commons.lang3.Validate;
import org.hl7.fhir.instance.model.api.IBase;
import org.hl7.fhir.instance.model.api.IBaseExtension;
import org.hl7.fhir.instance.model.api.IBaseHasExtensions;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
public class RuntimeChildExt extends BaseRuntimeChildDefinition {
private Map> myNameToChild;
private Map, BaseRuntimeElementDefinition>> myDatatypeToChild;
private Map, String> myDatatypeToChildName;
@Override
public IAccessor getAccessor() {
return new IAccessor() {
@SuppressWarnings({"unchecked", "rawtypes"})
@Override
public List getValues(IBase theTarget) {
List extension = ((IBaseHasExtensions) theTarget).getExtension();
return Collections.unmodifiableList(extension);
}
};
}
@Override
public BaseRuntimeElementDefinition> getChildByName(String theName) {
return myNameToChild.get(theName);
}
@Override
public BaseRuntimeElementDefinition> getChildElementDefinitionByDatatype(Class extends IBase> theType) {
return myDatatypeToChild.get(theType);
}
@Override
public String getChildNameByDatatype(Class extends IBase> theDatatype) {
return myDatatypeToChildName.get(theDatatype);
}
@Override
public String getElementName() {
return "extension";
}
@Override
public int getMax() {
return -1;
}
@Override
public int getMin() {
return 0;
}
@Override
public IMutator getMutator() {
return new IMutator() {
@Override
public void addValue(IBase theTarget, IBase theValue) {
List extensions = ((IBaseHasExtensions) theTarget).getExtension();
IBaseExtension, ?> value = (IBaseExtension, ?>) theValue;
extensions.add(value);
}
@Override
public void setValue(IBase theTarget, IBase theValue) {
List extensions = ((IBaseHasExtensions) theTarget).getExtension();
extensions.clear();
if (theValue != null) {
IBaseExtension, ?> value = (IBaseExtension, ?>) theValue;
extensions.add(value);
}
}
};
}
@Override
public Set getValidChildNames() {
return Sets.newHashSet("extension");
}
@Override
public boolean isSummary() {
return false;
}
@Override
void sealAndInitialize(
FhirContext theContext,
Map, BaseRuntimeElementDefinition>> theClassToElementDefinitions) {
myNameToChild = new HashMap<>();
myDatatypeToChild = new HashMap<>();
myDatatypeToChildName = new HashMap<>();
for (BaseRuntimeElementDefinition> next : theClassToElementDefinitions.values()) {
if (next.getName().equals("Extension")) {
myNameToChild.put("extension", next);
myDatatypeToChild.put(next.getImplementingClass(), next);
myDatatypeToChildName.put(next.getImplementingClass(), "extension");
}
}
Validate.isTrue(!myNameToChild.isEmpty());
}
}