001package org.hl7.fhir.dstu2016may.hapi.ctx;
002
003/*
004 * #%L
005 * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0)
006 * %%
007 * Copyright (C) 2014 - 2015 University Health Network
008 * %%
009 * Licensed under the Apache License, Version 2.0 (the "License");
010 * you may not use this file except in compliance with the License.
011 * You may obtain a copy of the License at
012 * 
013 * http://www.apache.org/licenses/LICENSE-2.0
014 * 
015 * Unless required by applicable law or agreed to in writing, software
016 * distributed under the License is distributed on an "AS IS" BASIS,
017 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
018 * See the License for the specific language governing permissions and
019 * limitations under the License.
020 * #L%
021 */
022
023import ca.uhn.fhir.i18n.Msg;
024import java.io.InputStream;
025import java.util.Date;
026import java.util.List;
027
028import org.apache.commons.lang3.StringUtils;
029import org.hl7.fhir.dstu2016may.hapi.rest.server.Dstu2_1BundleFactory;
030import org.hl7.fhir.dstu2016may.model.*;
031import org.hl7.fhir.instance.model.api.*;
032
033import ca.uhn.fhir.context.*;
034import ca.uhn.fhir.fhirpath.IFhirPath;
035import ca.uhn.fhir.model.api.IFhirVersion;
036import ca.uhn.fhir.model.primitive.IdDt;
037import ca.uhn.fhir.rest.api.IVersionSpecificBundleFactory;
038import ca.uhn.fhir.util.ReflectionUtil;
039
040public class FhirDstu2_1 implements IFhirVersion {
041
042        private String myId;
043
044        @Override
045        public IFhirPath createFhirPathExecutor(FhirContext theFhirContext) {
046                throw new UnsupportedOperationException(Msg.code(466) + "FluentPath is not supported in DSTU2 contexts");
047        }
048
049        @Override
050        public IBaseResource generateProfile(RuntimeResourceDefinition theRuntimeResourceDefinition, String theServerBase) {
051                StructureDefinition retVal = new StructureDefinition();
052
053                RuntimeResourceDefinition def = theRuntimeResourceDefinition;
054
055                myId = def.getId();
056                if (StringUtils.isBlank(myId)) {
057                        myId = theRuntimeResourceDefinition.getName().toLowerCase();
058                }
059
060                retVal.setId(new IdDt(myId));
061                return retVal;
062        }
063
064        @SuppressWarnings("rawtypes")
065        @Override
066        public Class<List> getContainedType() {
067                return List.class;
068        }
069
070        @Override
071        public InputStream getFhirVersionPropertiesFile() {
072                InputStream str = FhirDstu2_1.class.getResourceAsStream("/org/hl7/fhir/dstu2016may/model/fhirversion.properties");
073                if (str == null) {
074                        str = FhirDstu2_1.class.getResourceAsStream("/org/hl7/fhir/dstu2016may/model/fhirversion.properties");
075                }
076                if (str == null) {
077                        throw new ConfigurationException(Msg.code(467) + "Can not find model property file on classpath: " + "/ca/uhn/fhir/model/dstu2016may/fhirversion.properties");
078                }
079                return str;
080        }
081
082        @Override
083        public IPrimitiveType<Date> getLastUpdated(IBaseResource theResource) {
084                return ((Resource) theResource).getMeta().getLastUpdatedElement();
085        }
086
087        @Override
088        public String getPathToSchemaDefinitions() {
089                return "/org/hl7/fhir/dstu2016may/model/schema";
090        }
091
092        @Override
093        public Class<? extends IBaseReference> getResourceReferenceType() {
094                return Reference.class;
095        }
096
097        @Override
098        public FhirVersionEnum getVersion() {
099                return FhirVersionEnum.DSTU2_1;
100        }
101
102        @Override
103        public IVersionSpecificBundleFactory newBundleFactory(FhirContext theContext) {
104                return new Dstu2_1BundleFactory(theContext);
105        }
106
107        @Override
108        public IBaseCoding newCodingDt() {
109                return new Coding();
110        }
111
112        @Override
113        public IIdType newIdType() {
114                return new IdType();
115        }
116
117        @Override
118        public Object getServerVersion() {
119                return ReflectionUtil.newInstanceOfFhirServerType("org.hl7.fhir.dstu2016may.hapi.ctx.FhirServerDstu2_1");
120        }
121
122}