Skip to content

Commit 0a5466d

Browse files
committed
completed contribution dto support for xml parser
1 parent 4b8f04a commit 0a5466d

File tree

5 files changed

+103
-13
lines changed

5 files changed

+103
-13
lines changed

src/main/groovy/com/cabolabs/openehr/formats/OpenEhrJsonParser.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ class OpenEhrJsonParser {
238238
throw new JsonCompositionParseException("Can't parse JSON if root node doesn't have a value for _type")
239239
}
240240

241-
method = 'parse'+ type // ORIGINAL_VERSION, IMPORTED_VERSION
241+
method = 'parse'+ type
242242
contribution.versions << this."$method"(version_map)
243243
}
244244

src/main/groovy/com/cabolabs/openehr/formats/OpenEhrXmlParser.groovy

+31-9
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import com.cabolabs.openehr.rm_1_0_2.data_types.quantity.date_time.*
2424
import com.cabolabs.openehr.rm_1_0_2.data_types.text.*
2525
import com.cabolabs.openehr.rm_1_0_2.data_types.uri.*
2626
import com.cabolabs.openehr.rm_1_0_2.support.identification.*
27+
import com.cabolabs.openehr.dto_1_0_2.common.change_control.ContributionDto
2728

2829
// Old Groovy
2930
import groovy.util.XmlSlurper
@@ -115,32 +116,53 @@ class OpenEhrXmlParser {
115116
return versions
116117
}
117118

118-
Contribution parseContribution(String xml)
119+
ContributionDto parseContributionDto(String xml)
119120
{
120121
def slurper = new XmlSlurper(false, false)
121122
def gpath = slurper.parseText(xml)
122123
String type, method
123124
Version version
124125

125-
def contribution = new Contribution(versions: new HashSet())
126-
127-
128-
// NOTE: POST /contribution doesn't have uid, so this will fail to parse that, might need to relax the schema
129-
contribution.uid = this.parseHIER_OBJECT_ID(gpath.uid)
126+
def contribution = new ContributionDto(versions: [])
130127

128+
// in the DTO the uid is optional
129+
if (!gpath.uid.isEmpty())
130+
{
131+
contribution.uid = this.parseHIER_OBJECT_ID(gpath.uid)
132+
}
131133

132134
gpath.versions.each { version_gpath ->
133135

134-
type = version_gpath.'@xsi:type'.text()
136+
type = version_gpath.'@xsi:type'.text() // ORIGINAL_VERSION, IMPORTED_VERSION
135137

136138
if (!type)
137139
{
138140
throw new XmlCompositionParseException("Can't parse XML if node doesn't have a xsi:type")
139141
}
140142

141143
method = 'parse'+ type
142-
version = this."$method"(version_gpath)
143-
contribution.versions << this.parseVersionToObjectRef(version) // contribiution has objectrefs
144+
contribution.versions << this."$method"(version_gpath)
145+
}
146+
147+
contribution.audit = this.parseAUDIT_DETAILS(gpath.audit)
148+
149+
return contribution
150+
}
151+
152+
Contribution parseContribution(String xml)
153+
{
154+
def slurper = new XmlSlurper(false, false)
155+
def gpath = slurper.parseText(xml)
156+
String type, method
157+
158+
def contribution = new Contribution(versions: new HashSet())
159+
160+
// note for the RM the uid is mandatory, in the DTO the uid is optional
161+
contribution.uid = this.parseHIER_OBJECT_ID(gpath.uid)
162+
163+
gpath.versions.each { version_gpath ->
164+
165+
contribution.versions << this.parseOBJECT_REF(version_gpath) // contribiution has objectrefs
144166
}
145167

146168
contribution.audit = this.parseAUDIT_DETAILS(gpath.audit)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<contribution xmlns="http://schemas.openehr.org/v1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2+
<uid xsi:type="HIER_OBJECT_ID">
3+
<value>44afee41-197b-aaaa-cccc-90bdcf29bc35</value>
4+
</uid>
5+
<versions xsi:type="OBJECT_REF">
6+
<id xsi:type="HIER_OBJECT_ID">
7+
<value>12345678-197b-4d3b-b567-90bdcf29bc35</value>
8+
</id>
9+
<namespace>EHR</namespace>
10+
<type>VERSION</type>
11+
</versions>
12+
<audit>
13+
<system_id>CABOLABS_EHR</system_id>
14+
<committer xsi:type="PARTY_IDENTIFIED">
15+
<external_ref>
16+
<id xsi:type="HIER_OBJECT_ID">
17+
<value>44afee41-197b-4d3b-b567-90bdcf29bc35</value>
18+
</id>
19+
<namespace>DEMOGRAPHIC</namespace>
20+
<type>PERSON</type>
21+
</external_ref>
22+
<name>Dr. House</name>
23+
</committer>
24+
<time_committed>
25+
<value>20210718T171614,212-0300</value>
26+
</time_committed>
27+
<change_type>
28+
<value>creation</value>
29+
<defining_code>
30+
<terminology_id>
31+
<value>openehr</value>
32+
</terminology_id>
33+
<code_string>249</code_string>
34+
</defining_code>
35+
</change_type>
36+
</audit>
37+
</contribution>

src/test/groovy/com/cabolabs/openehr/opt/OpenEhrJsonParserTest.groovy

+19-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ import com.fasterxml.jackson.databind.ObjectMapper
3131
import com.cabolabs.openehr.opt.instance_validation.JsonInstanceValidation
3232
import com.cabolabs.openehr.rm_1_0_2.ehr.EhrStatus
3333

34+
import com.cabolabs.openehr.dto_1_0_2.common.change_control.ContributionDto
35+
3436
import groovy.json.JsonSlurper
3537
import com.cedarsoftware.util.io.JsonWriter
3638

@@ -299,7 +301,8 @@ class OpenEhrJsonParserTest extends GroovyTestCase {
299301
//println out
300302
}
301303

302-
void testJsonParserApiContribution()
304+
// this is the contribution from the RM
305+
void testJsonParserContribution()
303306
{
304307
String path = PS +"canonical_json"+ PS +"contribution_test_all_datatypes_en.json"
305308
File file = new File(getClass().getResource(path).toURI())
@@ -312,6 +315,21 @@ class OpenEhrJsonParserTest extends GroovyTestCase {
312315
assert contribution.versions.size() == 1
313316
assert contribution.versions[0].id.value == 'fb458d9c-1323-42bc-b7f8-787f3660a0b5::CABOLABS::1'
314317
}
318+
319+
// this is the contribution used in the API
320+
void testJsonParserContributionDto()
321+
{
322+
String path = PS +"canonical_json"+ PS +"contribution_dto_test_all_datatypes_en.json"
323+
File file = new File(getClass().getResource(path).toURI())
324+
String json = file.text
325+
def parser = new OpenEhrJsonParser()
326+
ContributionDto contribution = parser.parseContributionDto(json)
327+
328+
// TODO: check internals
329+
330+
assert contribution.versions.size() == 1
331+
assert contribution.versions[0].uid.value == '93bbff8b-cdd5-43a3-8d71-194a735cc704::CABOLABS::1'
332+
}
315333

316334
// TODO: move to the XML test suite
317335
/*

src/test/groovy/com/cabolabs/openehr/opt/OpenEhrXmlParserTest.groovy

+15-2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import groovy.util.GroovyTestCase
1919
import groovy.xml.*
2020
import groovy.json.JsonOutput
2121
import com.cabolabs.openehr.rm_1_0_2.common.change_control.*
22+
import com.cabolabs.openehr.dto_1_0_2.common.change_control.ContributionDto
2223

2324
class OpenEhrXmlParserTest extends GroovyTestCase {
2425

@@ -133,15 +134,27 @@ class OpenEhrXmlParserTest extends GroovyTestCase {
133134
assert c.content[0].data.events[0].dataPath == '/content[0]/data/events[0]'
134135
}
135136

136-
void testXmlParserApiContribution()
137+
void testXmlParserContributionDto()
137138
{
138139
String path = PS +"canonical_xml"+ PS +"test_all_datatypes.api_contribution.en.xml"
139140
File file = new File(getClass().getResource(path).toURI())
140141
String xml = file.text
141142
def parser = new OpenEhrXmlParser()
143+
ContributionDto contribution = parser.parseContributionDto(xml)
144+
145+
assert contribution.versions.size() == 1
146+
assert contribution.versions[0].uid.value == '553c1d04-6d78-4f42-a07d-34a9344ca71d::CABOLABS::1'
147+
}
148+
149+
void testXmlParserContribution()
150+
{
151+
String path = PS +"canonical_xml"+ PS +"test_all_datatypes.contribution.en.xml"
152+
File file = new File(getClass().getResource(path).toURI())
153+
String xml = file.text
154+
def parser = new OpenEhrXmlParser()
142155
Contribution contribution = parser.parseContribution(xml)
143156

144157
assert contribution.versions.size() == 1
145-
assert contribution.versions[0].id.value == '553c1d04-6d78-4f42-a07d-34a9344ca71d::CABOLABS::1'
158+
assert contribution.versions[0].id.value == '12345678-197b-4d3b-b567-90bdcf29bc35'
146159
}
147160
}

0 commit comments

Comments
 (0)