timetable-mgr/cif
Fred Boniface c9f894bbe6 Add RemoveOutdatedServices 2024-04-14 21:21:35 +01:00
..
check.go Log tidying 2024-04-14 20:07:56 +01:00
constants.go Add LastUpdateType to CIF Metadata 2024-04-11 20:59:02 +01:00
convert.go Reorganise logging 2024-04-14 19:03:13 +01:00
convert_test.go Writing full CIF data now works. Still need to work on updating CIF data. 2024-04-08 21:08:07 +01:00
helpers.go Reorganise logging 2024-04-14 19:03:13 +01:00
helpers_test.go Writing full CIF data now works. Still need to work on updating CIF data. 2024-04-08 21:08:07 +01:00
metadata.go Complete CIF Metadata parsing logic 2024-04-12 20:43:03 +01:00
parse.go Reorganise logging 2024-04-14 19:03:13 +01:00
process.go Reorganise logging 2024-04-14 19:03:13 +01:00
process_test.go Writing full CIF data now works. Still need to work on updating CIF data. 2024-04-08 21:08:07 +01:00
readme.md Disable parsing of JSONAssociations as they are not currently used within OwlBoard 2024-04-10 21:47:08 +01:00
types.go Add comment description to cif/types.go 2024-04-11 21:06:23 +01:00
update.go Add RemoveOutdatedServices 2024-04-14 21:21:35 +01:00

readme.md

package cif

This package follows a similar pattern to package corpus.

First, CheckCorpus() retreived cif metadata from the database and determines whether an update is required and what type of update.

Then, one of the update functions is called which run through the update process. There are two update types, 'full' and 'update'. A 'full' update drops the entire timetable collection and rebuilds with a full CIF download. 'update' downloads CIF updates from specified days and applies updates.

Downloads are handled by package nrod which returns an io.ReadCloser which is passed to the parsing function.

Currently the parsing function returns a parsedCif pointer, however this is using significant memory due to the size of a full CIF download (Often around 4.5GB). The intention is to instead use a worker pool to handle the data.