Skip to content

nsip/sifxml2go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

83 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sifxml2go

Convert SIF XML specification to golang code for generating and populating SIF objects

Code consists of two packages, sifxml and populate

  • sifxml, code representing SIF objects for the full SIF-AU specification, allowing it to be ingested and output in XML and JSON
  • populate, using sifxml code to populate SIF objects with plausible values for all objects required in the NSIP HITS test harness

sifxml

GoDoc

The code in sifxml is autogenerated, and because of the lack of golang generics, it is extensive. The scripts in scripts/, executed by sh run.sh, download the SIF XML specification from https://github.com/nsip/specgen_input repository, and use it to generate the code in sifxml.

  • The structs are annotated to generate conformant SIF XML and SIF PESC JSON. (For more on SIF JSON, see https://github.com/nsip/sifxml2pescjson.)
  • The structs process the (very few) Russian Doll structures that are still in place in the Australian SIF Data model.
  • The structs have difficulty with XML elements that have both attributes and values; this is a difficulty shared with JSON. The structs use the solution of injecting a "Value" element to represent the value of the node itself, as distinct from the attributes; e.g.
OtherLEA        struct {
                SIF_RefObject string `xml:"SIF_RefObject,attr"`
                Value         string `xml:",chardata"`
        } `xml:"OtherLEA"

corresponding to

<OtherLEA SIF_RefObject="OtherLEA">xxxx-xxxx-xxxx-xxxx</OtherLEA>

The run.sh script also generates unit testing for the XML struct definitions, by round-tripping the generated XML against XML read in from all XML examples in the SIF-AU specification. To run the unit tests, cd sifxml; go test.

There is also currently code to generate GraphQL schemas (output to /sifgraphql). However those conversions do not currently deal with type extensions (for example, NameOfRecordType is an extension of BaseNameType, but is not populated in the GraphQL schema. So right now, no names work), and they have not been updated in line with the major refactoring of code undertaken late 2020. So it is not production-ready.

populate

GoDoc

The code for populating objects is invoked by the command line executable cmd/sif_populate. The executable is invoked with flags, to specify which use cases should be included in the output.

SchoolInfo objects are always created.

  • --enrolment: Enrollment --
  • --provisioning: Provisioning -- StudentPersonal, StudentSchoolEnrollment, StaffPersonal, StaffAssignment, TermInfo, TimeTableSubject, TeachingGroup
  • --dailyattendance: Daily Attendance -- StudentPersonal, StudentSchoolEnrollment, CalendarSummary, CalendarDate
  • --financial: Financial -- StudentPersonal, StudentSchoolEnrollment, StaffPersonal, StaffAssignment, StudentContactPersonal, StudentContactRelationship, VendorInfo, Debtor, ChargedLocationInfo, FinancialAccount
  • --gradebook: Gradebook -- StudentPersonal, StudentSchoolEnrollment, StaffPersonal, StaffAssignment, TermInfo, TimeTableSubject, TeachingGroup
  • --studentattendancetimelist: Student Attendance Time List -- StudentPersonal, StudentSchoolEnrollment, StaffPersonal, StaffAssignment, TermInfo, TimeTableSubject, TeachingGroup, RoomInfo, TimeTable, TimeTableCell, CalendarSummary, CalendarDate, ScheduledActivity, SessionInfo
  • --teacherjudgement: Teacher Judgement -- StudentPersonal, StudentSchoolEnrollment, StaffPersonal, StaffAssignment, TermInfo, TimeTableSubject, TeachingGroup
  • --timetable: Timetable -- StudentPersonal, StudentSchoolEnrollment, StaffPersonal, StaffAssignment, TermInfo, TimeTableSubject, RoomInfo, SchoolCourseInfo
  • --wellbeing: Wellbeing -- StudentPersonal, StudentSchoolEnrollment, StaffPersonal, StaffAssignment, StudentContactPersonal, StudentContactRelationship, TermInfo, TimeTableSubject, TeachingGroup, RoomInfo, TimeTable, TimeTableCell, ScheduledActivity
  • --agcollections: Australian Government Collections -- CollectionRound, CollectionStatus
  • --studentcount n: Count of StudentPersonal objects (default: 400 per school)
  • --staffcount n: Count of StaffPersonal objects (default: 40 per school)
  • --vendorcount: Count of VendorInfo objects (default: 10 per school)
  • --schoolcount: Count of SchoolInfo objects (default: 10)