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 java.io.InputStream;
024import java.util.Date;
025import java.util.List;
026
027import org.apache.commons.lang3.StringUtils;
028import org.hl7.fhir.dstu2016may.hapi.rest.server.Dstu2_1BundleFactory;
029import org.hl7.fhir.dstu2016may.model.*;
030import org.hl7.fhir.instance.model.api.*;
031
032import ca.uhn.fhir.context.*;
033import ca.uhn.fhir.context.support.IContextValidationSupport;
034import ca.uhn.fhir.fluentpath.IFluentPath;
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 IFluentPath createFluentPathExecutor(FhirContext theFhirContext) {
046                throw new UnsupportedOperationException("FluentPath is not supported in DSTU2 contexts");
047        }
048
049        @Override
050        public IContextValidationSupport<?, ?, ?, ?, ?, ?> createValidationSupport() {
051                throw new UnsupportedOperationException("Validation is not supported in DSTU2.1 contexts");
052        }
053
054        @Override
055        public IBaseResource generateProfile(RuntimeResourceDefinition theRuntimeResourceDefinition, String theServerBase) {
056                StructureDefinition retVal = new StructureDefinition();
057
058                RuntimeResourceDefinition def = theRuntimeResourceDefinition;
059
060                myId = def.getId();
061                if (StringUtils.isBlank(myId)) {
062                        myId = theRuntimeResourceDefinition.getName().toLowerCase();
063                }
064
065                retVal.setId(new IdDt(myId));
066                return retVal;
067        }
068
069        @SuppressWarnings("rawtypes")
070        @Override
071        public Class<List> getContainedType() {
072                return List.class;
073        }
074
075        @Override
076        public InputStream getFhirVersionPropertiesFile() {
077                InputStream str = FhirDstu2_1.class.getResourceAsStream("/org/hl7/fhir/dstu2016may/model/fhirversion.properties");
078                if (str == null) {
079                        str = FhirDstu2_1.class.getResourceAsStream("/org/hl7/fhir/dstu2016may/model/fhirversion.properties");
080                }
081                if (str == null) {
082                        throw new ConfigurationException("Can not find model property file on classpath: " + "/ca/uhn/fhir/model/dstu2016may/fhirversion.properties");
083                }
084                return str;
085        }
086
087        @Override
088        public IPrimitiveType<Date> getLastUpdated(IBaseResource theResource) {
089                return ((Resource) theResource).getMeta().getLastUpdatedElement();
090        }
091
092        @Override
093        public String getPathToSchemaDefinitions() {
094                return "/org/hl7/fhir/dstu2016may/model/schema";
095        }
096
097        @Override
098        public Class<? extends IBaseReference> getResourceReferenceType() {
099                return Reference.class;
100        }
101
102        @Override
103        public FhirVersionEnum getVersion() {
104                return FhirVersionEnum.DSTU2_1;
105        }
106
107        @Override
108        public IVersionSpecificBundleFactory newBundleFactory(FhirContext theContext) {
109                return new Dstu2_1BundleFactory(theContext);
110        }
111
112        @Override
113        public IBaseCoding newCodingDt() {
114                return new Coding();
115        }
116
117        @Override
118        public IIdType newIdType() {
119                return new IdType();
120        }
121
122        @Override
123        public Object getServerVersion() {
124                return ReflectionUtil.newInstanceOfFhirServerType("org.hl7.fhir.dstu2016may.hapi.ctx.FhirServerDstu2_1");
125        }
126
127}