use of com.hartwig.hmftools.common.ecrf.formstatus.FormStatusData in project hmftools by hartwigmedical.
the class XMLPatientReader method readPatient.
@NotNull
private static EcrfPatient readPatient(@NotNull final XMLStreamReader reader, @NotNull final XMLEcrfDatamodel datamodel, @NotNull final FormStatusModel formStatusModel) throws XMLStreamException {
final String patientId = toCPCTPatientId(reader.getAttributeValue("", PATIENT_ID_ATTRIBUTE));
final Map<String, List<EcrfStudyEvent>> studyEventsPerOID = Maps.newHashMap();
final List<EcrfDataField> fields = Lists.newArrayList();
String currentStudyEventOID = Strings.EMPTY;
String currentStudyEventIdx = Strings.EMPTY;
String currentFormOID = Strings.EMPTY;
String currentFormIdx = Strings.EMPTY;
String currentItemGroupOID = Strings.EMPTY;
String currentItemGroupIdx = Strings.EMPTY;
EcrfStudyEvent currentStudy = new EcrfStudyEvent(patientId);
EcrfForm currentForm = new EcrfForm(patientId, FormStatusState.UNKNOWN, false);
EcrfItemGroup currentItemGroup = new EcrfItemGroup(patientId);
while (reader.hasNext() && !isPatientEnd(reader)) {
if (isStudyEventStart(reader)) {
currentStudyEventOID = reader.getAttributeValue("", STUDY_EVENT_OID_ATTRIBUTE);
currentStudyEventIdx = reader.getAttributeValue("", STUDY_EVENT_REPEAT_KEY_ATTRIBUTE);
currentStudy = new EcrfStudyEvent(patientId);
if (!studyEventsPerOID.containsKey(currentStudyEventOID)) {
studyEventsPerOID.put(currentStudyEventOID, Lists.newArrayList());
}
studyEventsPerOID.get(currentStudyEventOID).add(currentStudy);
} else if (isFormStart(reader)) {
currentFormOID = reader.getAttributeValue("", FORM_OID_ATTRIBUTE);
currentFormIdx = reader.getAttributeValue("", FORM_REPEAT_KEY_ATTRIBUTE);
final String formName = datamodel.forms().get(currentFormOID).name();
final String studyEventName = datamodel.studyEvents().get(currentStudyEventOID).name();
final FormStatusKey formKey = new ImmutableFormStatusKey(patientId, formName, currentFormIdx, studyEventName, currentStudyEventIdx);
final FormStatusData formStatus = formStatusModel.formStatuses().get(formKey);
if (formStatus != null) {
currentForm = new EcrfForm(patientId, formStatus.state(), formStatus.locked());
} else {
currentForm = new EcrfForm(patientId, FormStatusState.UNKNOWN, false);
}
currentStudy.addForm(currentFormOID, currentForm);
} else if (isItemGroupStart(reader)) {
currentItemGroupOID = reader.getAttributeValue("", ITEM_GROUP_OID_ATTRIBUTE);
currentItemGroupIdx = reader.getAttributeValue("", ITEM_GROUP_REPEAT_KEY);
currentItemGroup = new EcrfItemGroup(patientId);
currentForm.addItemGroup(currentItemGroupOID, currentItemGroup);
} else if (isFieldStart(reader)) {
String OID = reader.getAttributeValue("", ITEM_OID_ATTRIBUTE);
String value = Strings.EMPTY;
try {
value = datamodel.resolveValue(OID, reader.getAttributeValue("", ITEM_VALUE_ATTRIBUTE));
} catch (EcrfResolveException exception) {
LOGGER.warn("Resolve issue for " + patientId + ": " + exception.getMessage());
}
currentItemGroup.addItem(OID, value);
fields.add(EcrfDataField.of(patientId, currentStudyEventOID, currentStudyEventIdx, currentFormOID, currentFormIdx, currentItemGroupOID, currentItemGroupIdx, OID, value, currentForm.status().stateString(), Boolean.toString(currentForm.locked())));
}
reader.next();
}
return new EcrfPatient(patientId, studyEventsPerOID, fields);
}
Aggregations