
ca.uhn.hapi.fhir.cdshooks.serializer.CdsServiceRequestContextDeserializer Maven / Gradle / Ivy
The newest version!
/*-
* #%L
* HAPI FHIR - CDS Hooks
* %%
* 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.hapi.fhir.cdshooks.serializer;
import ca.uhn.fhir.context.FhirContext;
import ca.uhn.fhir.parser.IParser;
import ca.uhn.hapi.fhir.cdshooks.api.json.CdsServiceRequestContextJson;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.deser.std.StdDeserializer;
import org.hl7.fhir.instance.model.api.IBaseResource;
import java.io.IOException;
import java.util.LinkedHashMap;
public class CdsServiceRequestContextDeserializer extends StdDeserializer {
private final IParser myParser;
private final ObjectMapper myObjectMapper;
public CdsServiceRequestContextDeserializer(FhirContext theFhirContext, ObjectMapper theObjectMapper) {
super(CdsServiceRequestContextJson.class);
myParser = theFhirContext.newJsonParser().setPrettyPrint(true);
myObjectMapper = theObjectMapper;
}
@Override
public CdsServiceRequestContextJson deserialize(JsonParser theJsonParser, DeserializationContext theContext)
throws IOException {
// First deserialize the context as a LinkedHashMap
LinkedHashMap map = myObjectMapper.readValue(
theJsonParser.getCodec().readTree(theJsonParser).toString(), LinkedHashMap.class);
CdsServiceRequestContextJson retval = new CdsServiceRequestContextJson();
for (String key : map.keySet()) {
Object value = map.get(key);
// Convert LinkedHashMap entries to Resources
if (value instanceof LinkedHashMap) {
String json = myObjectMapper.writeValueAsString(value);
IBaseResource resource = myParser.parseResource(json);
retval.put(key, resource);
} else {
retval.put(key, value);
}
}
return retval;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy