FirmwareManagement.UpdateFirmwareRequest doesn't update DeviceFirmwareHistory
FirmwareManagement.UpdateFirmwareRequest operation should update DeviceFirmwareHistory (device_firmware_file table in osgp_core DB) after successful installation of new FW. There is a separate FirmwareManagement.SaveCurrentDeviceFirmware operation that can be used to manually update DeviceFirmwareHistory, but I assume that this operation should be used only if FW is not installed via GXF. Please let me know if you need any other info or assistance.
The operation UpdateFirmwareRequest sends an URL to an SSLD. Later, a GetFirmwareVersionRequest is executed to check if the new firmware version is installed. The database record is updated when the firmware version matches the new expected firmware version.
But, this process is not automated. My idea was the following:
- UpdateFirmwareRequest sent to SSLD
- after successful FW installation SSLD will send an event
- GXF receives events and updates DeviceFirmwareHistory
Actually the process is automated, albeit in a slightly different way. After an SSLD updates it's firmware, it will reboot and register itself. When a device registration is completed, osgp-adapter-domain-core receives a message that is handled by DeviceRegistrationCompletedMessageProcessor which in turn calls FirmwareManagementService.handleSsldPendingFirmwareUpdate which initiates a GetFirmwareVersionRequest.
The same FirmwareManagementService class will handle the response of this request and update the firmware version history when needed.