37bd0d546a
* Updater: UI rework initial * Updater: further updates to UI, added a temporary parrot * Updater: additional checks on radio stack type before update * Second iteration of updater UI: additional handling of resource unpacking errors * updater: removed extra logging, renamed some stages * Updater: Changed "back" button icon on error screen * Archive: signed/unsigned fix * Updater: cancelling update also cancels LFS+resources processing; restored /ext/update/ folder magic to 0 * Updater: root dir fix Co-authored-by: nminaylov <nm29719@gmail.com>
75 lines
2.2 KiB
C
75 lines
2.2 KiB
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <m-string.h>
|
|
#include <storage/storage.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define UPDATE_OPERATION_ROOT_DIR_PACKAGE_MAGIC 0
|
|
|
|
/*
|
|
* Checks if supplied full manifest path is valid
|
|
* @param full_path Full path to manifest file. Must be named UPDATE_MANIFEST_DEFAULT_NAME
|
|
* @param out_manifest_dir Directory to apply update from, if supplied path is valid.
|
|
* May be empty if update is in root update directory
|
|
* @return bool if supplied path is valid and out_manifest_dir contains dir to apply
|
|
*/
|
|
bool update_operation_get_package_dir_name(const char* full_path, string_t out_manifest_dir);
|
|
|
|
typedef enum {
|
|
UpdatePrepareResultOK,
|
|
UpdatePrepareResultManifestPathInvalid,
|
|
UpdatePrepareResultManifestFolderNotFound,
|
|
UpdatePrepareResultManifestInvalid,
|
|
UpdatePrepareResultStageMissing,
|
|
UpdatePrepareResultStageIntegrityError,
|
|
} UpdatePrepareResult;
|
|
|
|
const char* update_operation_describe_preparation_result(const UpdatePrepareResult value);
|
|
|
|
/*
|
|
* Validates next stage and sets up registers to apply update after restart
|
|
* @param manifest_dir_path Full path to manifest for update to apply
|
|
* @return UpdatePrepareResult validation & arm result
|
|
*/
|
|
UpdatePrepareResult update_operation_prepare(const char* manifest_file_path);
|
|
|
|
/*
|
|
* Gets update package index to pass in RTC registers
|
|
* @param storage Storage API
|
|
* @param update_package_dir Package directory name
|
|
* @return int32_t <=0 - error, >0 - update index value
|
|
*/
|
|
int32_t update_operation_get_package_index(Storage* storage, const char* update_package_dir);
|
|
|
|
/*
|
|
* Gets filesystem path for current update package
|
|
* @param storage Storage API
|
|
* @param out_path Path to directory with manifest & related files. Must be initialized
|
|
* @return true if path was restored successfully
|
|
*/
|
|
bool update_operation_get_current_package_path(Storage* storage, string_t out_path);
|
|
|
|
/*
|
|
* Stores given update index in RTC registers
|
|
* @param index Value to store
|
|
*/
|
|
void update_operation_persist_package_index(int32_t index);
|
|
|
|
/*
|
|
* Checks if an update operation step is pending after reset
|
|
*/
|
|
bool update_operation_is_armed();
|
|
|
|
/*
|
|
* Cancels pending update operation
|
|
*/
|
|
void update_operation_disarm();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|