pub fn parse_site_native_string(xml_str: &str) -> Result<SiteNative, Error>Expand description
Parse a string of Prelude native site XML into a SiteNative struct.
ยงExample
use chrono::{DateTime, Utc};
use prelude_xml_parser::parse_site_native_string;
use prelude_xml_parser::native::site_native::*;
let xml = r#"<?xml version="1.0" encoding="UTF-8"?>
<export_from_vision_EDC date="01-Jun-2024 18:17 -0500" createdBy="Paul Sanders" role="Project Manager" numberSubjectsProcessed="2">
<site name="Some Site" uniqueId="1681574834910" numberOfPatients="4" countOfRandomizedPatients="0" whenCreated="2023-04-15 12:08:19 -0400" creator="Paul Sanders" numberOfForms="1">
<form name="demographic.form.name.site.demographics" lastModified="2023-04-15 12:08:19 -0400" whoLastModifiedName="Paul Sanders" whoLastModifiedRole="Project Manager" whenCreated="1681574834930" hasErrors="false" hasWarnings="false" locked="false" user="" dateTimeChanged="" formTitle="Site Demographics" formIndex="1" formGroup="Demographic" formState="In-Work">
<state value="form.state.in.work" signer="Paul Sanders - Project Manager" signerUniqueId="1681162687395" dateSigned="2023-04-15 12:08:19 -0400" />
<category name="Demographics" type="normal" highestIndex="0">
<field name="address" type="text" dataType="string" errorCode="valid" whenCreated="2023-04-15 11:07:14 -0500" keepHistory="true" />
<field name="company" type="text" dataType="string" errorCode="valid" whenCreated="2023-04-15 11:07:14 -0500" keepHistory="true">
<entry id="1">
<value by="Paul Sanders" byUniqueId="1681162687395" role="Project Manager" when="2023-04-15 12:08:19 -0400" xml:space="preserve">Some Company</value>
</entry>
</field>
<field name="site_code_name" type="hidden" dataType="string" errorCode="valid" whenCreated="2023-04-15 11:07:14 -0500" keepHistory="true">
<entry id="1">
<value by="set from calculation" byUniqueId="" role="System" when="2023-04-15 12:08:19 -0400" xml:space="preserve">ABC-Some Site</value>
<reason by="set from calculation" byUniqueId="" role="System" when="2023-04-15 12:08:19 -0400" xml:space="preserve">calculated value</reason>
</entry>
<entry id="2">
<value by="set from calculation" byUniqueId="" role="System" when="2023-04-15 12:07:24 -0400" xml:space="preserve">Some Site</value>
<reason by="set from calculation" byUniqueId="" role="System" when="2023-04-15 12:07:24 -0400" xml:space="preserve">calculated value</reason>
</entry>
</field>
</category>
<category name="Enrollment" type="normal" highestIndex="0">
<field name="enrollment_closed_date" type="popUpCalendar" dataType="date" errorCode="valid" whenCreated="2023-04-15 11:07:14 -0500" keepHistory="true" />
<field name="enrollment_open" type="radio" dataType="string" errorCode="valid" whenCreated="2023-04-15 11:07:14 -0500" keepHistory="true">
<entry id="1">
<value by="Paul Sanders" byUniqueId="1681162687395" role="Project Manager" when="2023-04-15 12:08:19 -0400" xml:space="preserve">Yes</value>
</entry>
</field>
<field name="enrollment_open_date" type="popUpCalendar" dataType="date" errorCode="valid" whenCreated="2023-04-15 11:07:14 -0500" keepHistory="true" />
</category>
</form>
</site>
<site name="Artemis" uniqueId="1691420994591" numberOfPatients="0" countOfRandomizedPatients="0" whenCreated="2023-08-07 08:14:23 -0700" creator="Paul Sanders" numberOfForms="1">
<form name="demographic.form.name.site.demographics" lastModified="2023-08-07 08:14:23 -0700" whoLastModifiedName="Paul Sanders" whoLastModifiedRole="Project Manager" whenCreated="1691420994611" hasErrors="false" hasWarnings="false" locked="false" user="" dateTimeChanged="" formTitle="Site Demographics" formIndex="1" formGroup="Demographic" formState="In-Work">
<state value="form.state.in.work" signer="Paul Sanders - Project Manager" signerUniqueId="1681162687395" dateSigned="2023-08-07 08:14:23 -0700" />
<category name="Demographics" type="normal" highestIndex="0">
<field name="address" type="text" dataType="string" errorCode="valid" whenCreated="2023-08-07 10:09:54 -0500" keepHistory="true">
<entry id="1">
<value by="Paul Sanders" byUniqueId="1681162687395" role="Project Manager" when="2023-08-07 08:14:21 -0700" xml:space="preserve">1111 Moon Drive</value>
</entry>
<comment id="1">
<value by="Paul Sanders" byUniqueId="1681162687395" role="Project Manager" when="2023-08-07 08:14:21 -0700" xml:space="preserve">Some comment</value>
</comment>
</field>
</category>
</form>
</site>
</export_from_vision_EDC>
"#;
let expected = SiteNative {
sites: vec![
Site {
name: "Some Site".to_string(),
unique_id: "1681574834910".to_string(),
number_of_patients: 4,
count_of_randomized_patients: 0,
when_created: Some(DateTime::parse_from_rfc3339("2023-04-15T16:08:19Z")
.unwrap()
.with_timezone(&Utc)),
creator: "Paul Sanders".to_string(),
number_of_forms: 1,
forms: Some(vec![Form {
name: "demographic.form.name.site.demographics".to_string(),
last_modified: Some(
DateTime::parse_from_rfc3339("2023-04-15T16:08:19Z")
.unwrap()
.with_timezone(&Utc),
),
who_last_modified_name: Some("Paul Sanders".to_string()),
who_last_modified_role: Some("Project Manager".to_string()),
when_created: 1681574834930,
has_errors: false,
has_warnings: false,
locked: false,
user: None,
date_time_changed: None,
form_title: "Site Demographics".to_string(),
form_index: 1,
form_group: Some("Demographic".to_string()),
form_state: "In-Work".to_string(),
lock_state: None,
states: Some(vec![State {
value: "form.state.in.work".to_string(),
signer: "Paul Sanders - Project Manager".to_string(),
signer_unique_id: "1681162687395".to_string(),
date_signed: Some(
DateTime::parse_from_rfc3339("2023-04-15T16:08:19Z")
.unwrap()
.with_timezone(&Utc),
),
}]),
categories: Some(vec![
Category {
name: "Demographics".to_string(),
category_type: "normal".to_string(),
highest_index: 0,
fields: Some(vec![
Field {
name: "address".to_string(),
field_type: "text".to_string(),
data_type: Some("string".to_string()),
error_code: "valid".to_string(),
when_created: Some(DateTime::parse_from_rfc3339(
"2023-04-15T16:07:14Z",
)
.unwrap()
.with_timezone(&Utc)),
keep_history: true,
entries: None,
comments: None,
},
Field {
name: "company".to_string(),
field_type: "text".to_string(),
data_type: Some("string".to_string()),
error_code: "valid".to_string(),
when_created: Some(DateTime::parse_from_rfc3339(
"2023-04-15T16:07:14Z",
)
.unwrap()
.with_timezone(&Utc)),
keep_history: true,
entries: Some(vec![Entry {
entry_id: "1".to_string(),
reviewed_by: None,
reviewed_by_unique_id: None,
reviewed_by_when: None,
value: Some(Value {
by: "Paul Sanders".to_string(),
by_unique_id: Some("1681162687395".to_string()),
role: "Project Manager".to_string(),
when: Some(DateTime::parse_from_rfc3339(
"2023-04-15T16:08:19Z",
)
.unwrap()
.with_timezone(&Utc)),
value: "Some Company".to_string(),
}),
reason: None,
}]),
comments: None,
},
Field {
name: "site_code_name".to_string(),
field_type: "hidden".to_string(),
data_type: Some("string".to_string()),
error_code: "valid".to_string(),
when_created: Some(DateTime::parse_from_rfc3339(
"2023-04-15T16:07:14Z",
)
.unwrap()
.with_timezone(&Utc)),
keep_history: true,
entries: Some(vec![
Entry {
entry_id: "1".to_string(),
reviewed_by: None,
reviewed_by_unique_id: None,
reviewed_by_when: None,
value: Some(Value {
by: "set from calculation".to_string(),
by_unique_id: None,
role: "System".to_string(),
when: Some(DateTime::parse_from_rfc3339(
"2023-04-15T16:08:19Z",
)
.unwrap()
.with_timezone(&Utc)),
value: "ABC-Some Site".to_string(),
}),
reason: Some(Reason {
by: "set from calculation".to_string(),
by_unique_id: None,
role: "System".to_string(),
when: Some(DateTime::parse_from_rfc3339(
"2023-04-15T16:08:19Z",
)
.unwrap()
.with_timezone(&Utc)),
value: "calculated value".to_string(),
}),
},
Entry {
entry_id: "2".to_string(),
reviewed_by: None,
reviewed_by_unique_id: None,
reviewed_by_when: None,
value: Some(Value {
by: "set from calculation".to_string(),
by_unique_id: None,
role: "System".to_string(),
when: Some(DateTime::parse_from_rfc3339(
"2023-04-15T16:07:24Z",
)
.unwrap()
.with_timezone(&Utc)),
value: "Some Site".to_string(),
}),
reason: Some(Reason {
by: "set from calculation".to_string(),
by_unique_id: None,
role: "System".to_string(),
when: Some(DateTime::parse_from_rfc3339(
"2023-04-15T16:07:24Z",
)
.unwrap()
.with_timezone(&Utc)),
value: "calculated value".to_string(),
}),
},
]),
comments: None,
},
]),
},
Category {
name: "Enrollment".to_string(),
category_type: "normal".to_string(),
highest_index: 0,
fields: Some(vec![
Field {
name: "enrollment_closed_date".to_string(),
field_type: "popUpCalendar".to_string(),
data_type: Some("date".to_string()),
error_code: "valid".to_string(),
when_created: Some(DateTime::parse_from_rfc3339(
"2023-04-15T16:07:14Z",
)
.unwrap()
.with_timezone(&Utc)),
keep_history: true,
entries: None,
comments: None,
},
Field {
name: "enrollment_open".to_string(),
field_type: "radio".to_string(),
data_type: Some("string".to_string()),
error_code: "valid".to_string(),
when_created: Some(DateTime::parse_from_rfc3339(
"2023-04-15T16:07:14Z",
)
.unwrap()
.with_timezone(&Utc)),
keep_history: true,
entries: Some(vec![Entry {
entry_id: "1".to_string(),
reviewed_by: None,
reviewed_by_unique_id: None,
reviewed_by_when: None,
value: Some(Value {
by: "Paul Sanders".to_string(),
by_unique_id: Some("1681162687395".to_string()),
role: "Project Manager".to_string(),
when: Some(DateTime::parse_from_rfc3339(
"2023-04-15T16:08:19Z",
)
.unwrap()
.with_timezone(&Utc)),
value: "Yes".to_string(),
}),
reason: None,
}]),
comments: None,
},
Field {
name: "enrollment_open_date".to_string(),
field_type: "popUpCalendar".to_string(),
data_type: Some("date".to_string()),
error_code: "valid".to_string(),
when_created: Some(DateTime::parse_from_rfc3339(
"2023-04-15T16:07:14Z",
)
.unwrap()
.with_timezone(&Utc)),
keep_history: true,
entries: None,
comments: None,
},
]),
},
]),
}]),
},
Site {
name: "Artemis".to_string(),
unique_id: "1691420994591".to_string(),
number_of_patients: 0,
count_of_randomized_patients: 0,
when_created: Some(DateTime::parse_from_rfc3339("2023-08-07T15:14:23Z")
.unwrap()
.with_timezone(&Utc)),
creator: "Paul Sanders".to_string(),
number_of_forms: 1,
forms: Some(vec![Form {
name: "demographic.form.name.site.demographics".to_string(),
last_modified: Some(
DateTime::parse_from_rfc3339("2023-08-07T15:14:23Z")
.unwrap()
.with_timezone(&Utc),
),
who_last_modified_name: Some("Paul Sanders".to_string()),
who_last_modified_role: Some("Project Manager".to_string()),
when_created: 1691420994611,
has_errors: false,
has_warnings: false,
locked: false,
user: None,
date_time_changed: None,
form_title: "Site Demographics".to_string(),
form_index: 1,
form_group: Some("Demographic".to_string()),
form_state: "In-Work".to_string(),
lock_state: None,
states: Some(vec![State {
value: "form.state.in.work".to_string(),
signer: "Paul Sanders - Project Manager".to_string(),
signer_unique_id: "1681162687395".to_string(),
date_signed: Some(
DateTime::parse_from_rfc3339("2023-08-07T15:14:23Z")
.unwrap()
.with_timezone(&Utc),
),
}]),
categories: Some(vec![Category {
name: "Demographics".to_string(),
category_type: "normal".to_string(),
highest_index: 0,
fields: Some(vec![Field {
name: "address".to_string(),
field_type: "text".to_string(),
data_type: Some("string".to_string()),
error_code: "valid".to_string(),
when_created: Some(DateTime::parse_from_rfc3339("2023-08-07T15:09:54Z")
.unwrap()
.with_timezone(&Utc)),
keep_history: true,
entries: Some(vec![Entry {
entry_id: "1".to_string(),
reviewed_by: None,
reviewed_by_unique_id: None,
reviewed_by_when: None,
value: Some(Value {
by: "Paul Sanders".to_string(),
by_unique_id: Some("1681162687395".to_string()),
role: "Project Manager".to_string(),
when: Some(DateTime::parse_from_rfc3339("2023-08-07T15:14:21Z")
.unwrap()
.with_timezone(&Utc)),
value: "1111 Moon Drive".to_string(),
}),
reason: None,
}]),
comments: Some(vec![Comment {
comment_id: "1".to_string(),
value: Some(Value {
by: "Paul Sanders".to_string(),
by_unique_id: Some("1681162687395".to_string()),
role: "Project Manager".to_string(),
when: Some(DateTime::parse_from_rfc3339("2023-08-07T15:14:21Z")
.unwrap()
.with_timezone(&Utc)),
value: "Some comment".to_string(),
}),
}]),
}]),
}]),
}]),
},
],
};
let result = parse_site_native_string(xml).unwrap();
assert_eq!(result, expected);