use of org.ehrbase.client.aql.containment.Containment in project openEHR_SDK by ehrbase.
the class ContainmentBinder method handleContainmentDto.
public void handleContainmentDto(ContainmentDto dto, MutablePair<ContainmentExpression, Map<Integer, Containment>> result) {
ContainmentExpression containmentExpression;
Map<Integer, Containment> containmentMap = new HashMap<>();
ContainmentExpression containmentExpression1;
Containment containment = new Containment(dto.getArchetypeId());
containmentExpression1 = containment;
containmentMap.put(dto.getId(), containment);
if (dto.getContains() != null) {
Pair<ContainmentExpression, Map<Integer, Containment>> pair = buildContainment(dto.getContains());
containment.setContains(pair.getLeft());
containmentMap.putAll(pair.getRight());
}
containmentExpression = containmentExpression1;
result.setLeft(containmentExpression);
result.setRight(containmentMap);
}
use of org.ehrbase.client.aql.containment.Containment in project openEHR_SDK by ehrbase.
the class DefaultRestFolderDAO method find.
@Override
public <T> List<T> find(Class<T> clazz) {
Containment compositionContainment = new Containment("COMPOSITION");
EntityQuery<Record1<T>> query = Query.buildEntityQuery(compositionContainment, new NativeSelectAqlField<>(compositionContainment, "", clazz));
query.where(Condition.equal(EhrFields.EHR_ID(), directoryEndpoint.getEhrId()).and(Condition.equal(new NativeSelectAqlField<>(compositionContainment, "/template_id", String.class), extractTemplateId(clazz))).and(Condition.matches(new NativeSelectAqlField<>(compositionContainment, "/uid/value", String.class), getFolder().getItems().stream().map(ObjectRef::getId).map(Object::toString).toArray(String[]::new))));
List<Record1<T>> execute = directoryEndpoint.getDefaultRestClient().aqlEndpoint().execute(query);
return execute.stream().map(Record1::value1).collect(Collectors.toList());
}
use of org.ehrbase.client.aql.containment.Containment in project openEHR_SDK by ehrbase.
the class EntityQueryTest method buildAqlWithNativePath.
@Test
public void buildAqlWithNativePath() {
BefundObservationContainment befundObservationContainment = BefundObservationContainment.getInstance();
ProVirusClusterContainment proVirusClusterContainment = ProVirusClusterContainment.getInstance();
ProbeClusterContainment probeClusterContainment = ProbeClusterContainment.getInstance();
Containment compositionContainment = new Containment("COMPOSITION");
ContainmentExpression containment = compositionContainment.contains(befundObservationContainment).contains(proVirusClusterContainment.and(probeClusterContainment));
EntityQuery<Record3<String, TemporalAccessor, UUID>> entityQuery = Query.buildEntityQuery(containment, proVirusClusterContainment.VIRUS_VALUE, probeClusterContainment.ZEITPUNKT_DER_PROBENENTNAHME_VALUE, new NativeSelectAqlField<>(compositionContainment, "/uid/value", "uid", UUID.class));
entityQuery.where(Condition.equal(new NativeSelectAqlField<>(compositionContainment, "/name/value", String.class), "Mikrobiologischer Befund"));
assertThat(entityQuery.buildAql()).isEqualTo("Select c0/items[at0024]/value/value as virusValue, c1/items[at0015]/value/value as zeitpunktDerProbenentnahmeValue, c2/uid/value as uid " + "from EHR e " + "contains COMPOSITION c2 " + "contains OBSERVATION o3[openEHR-EHR-OBSERVATION.laboratory_test_result.v1] " + "contains (CLUSTER c0[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1] and CLUSTER c1[openEHR-EHR-CLUSTER.specimen.v1]) " + "where c2/name/value = 'Mikrobiologischer Befund'");
}
use of org.ehrbase.client.aql.containment.Containment in project openEHR_SDK by ehrbase.
the class AqlTestIT method testExecute12.
@Test
public void testExecute12() {
ehr = openEhrClient.ehrEndpoint().createEhr();
openEhrClient.compositionEndpoint(ehr).mergeCompositionEntity(TestData.buildEhrbaseBloodPressureSimpleDeV0());
EhrbaseBloodPressureSimpleDeV0Composition pressureSimple1 = TestData.buildEhrbaseBloodPressureSimpleDeV0();
pressureSimple1.getBloodPressureTrainingSample().get(0).setSystolicMagnitude(1.1);
openEhrClient.compositionEndpoint(ehr).mergeCompositionEntity(pressureSimple1);
EhrbaseBloodPressureSimpleDeV0Composition pressureSimple2 = TestData.buildEhrbaseBloodPressureSimpleDeV0();
pressureSimple2.getBloodPressureTrainingSample().get(0).setSystolicMagnitude(1.1);
openEhrClient.compositionEndpoint(ehr).mergeCompositionEntity(pressureSimple2);
Containment observationContainment = new Containment("OBSERVATION");
NativeSelectAqlField<Double> magnitudeField = new NativeSelectAqlField<>(observationContainment, "/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/magnitude", Double.class);
EntityQuery<Record2<UUID, Double>> entityQuery = Query.buildEntityQuery(observationContainment, EhrFields.EHR_ID(), magnitudeField);
Parameter<UUID> ehrIdParameter = entityQuery.buildParameter();
entityQuery.where(Condition.equal(EhrFields.EHR_ID(), ehrIdParameter).and(Condition.equal(magnitudeField, 1.1d)));
List<Record2<UUID, Double>> result = openEhrClient.aqlEndpoint().execute(entityQuery, ehrIdParameter.setValue(ehr));
assertThat(result).isNotNull().size().isEqualTo(1);
}
use of org.ehrbase.client.aql.containment.Containment in project openEHR_SDK by ehrbase.
the class CoronaTestIT method testNUMResearchCase_8.
/**
* see https://wiki.vitagroup.ag/display/NUM/Research+Repository
*
* Containment test UC 8:
*
* contains COMPOSITION c
* contains OBSERVATION v[openEHR-EHR-OBSERVATION.laboratory_test_result.v1]
* contains (
* CLUSTER h[openEHR-EHR-CLUSTER.laboratory_test_panel.v0] and
* CLUSTER x[openEHR-EHR-CLUSTER.specimen.v1] and
* CLUSTER q[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1])
*/
@Test
public void testNUMResearchCase_8() {
VirologischerBefundComposition virologischerBefundComposition = TestData.buildTestVirologischerBefundComposition();
assertThat(virologischerBefundComposition.getBefund()).isNotNull();
ehr = openEhrClient.ehrEndpoint().createEhr();
openEhrClient.compositionEndpoint(ehr).mergeCompositionEntity(virologischerBefundComposition);
// build AQL expression
Containment compositionContainment = new Containment("COMPOSITION");
BefundObservationContainment befundObservationContainment = BefundObservationContainment.getInstance();
ProbeClusterContainment probeClusterContainment = ProbeClusterContainment.getInstance();
KulturClusterContainment kulturClusterContainment = KulturClusterContainment.getInstance();
ProVirusClusterContainment proVirusClusterContainment = ProVirusClusterContainment.getInstance();
ContainmentExpression containmentExpression = compositionContainment.contains(befundObservationContainment.contains(kulturClusterContainment.and(probeClusterContainment.and(proVirusClusterContainment))));
EntityQuery<Record2<String, Long>> entityQuery = Query.buildEntityQuery(containmentExpression, proVirusClusterContainment.VIRUS_VALUE, proVirusClusterContainment.ANALYSEERGEBNIS_REIHENFOLGE_MAGNITUDE);
Parameter<UUID> ehrIdParameter = entityQuery.buildParameter();
entityQuery.where(Condition.equal(EhrFields.EHR_ID(), ehrIdParameter).and(Condition.equal(new NativeSelectAqlField<>(compositionContainment, "/name/value", String.class), "Virologischer Befund")));
List<Record2<String, Long>> actual = openEhrClient.aqlEndpoint().execute(entityQuery, ehrIdParameter.setValue(ehr));
// NB. At the moment, we cannot specify DISTINCT with SDK
assertThat(actual).extracting(Record2::value1, Record2::value2).containsExactlyInAnyOrder(new Tuple("SARS-Cov-2", 32L), new Tuple("SARS-Cov-2", 34L), new Tuple("SARS-Cov-2", 32L), new Tuple("SARS-Cov-2", 34L));
}
Aggregations