2022-04-13 20:50:25 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <storage/storage.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2022-05-06 16:26:25 +00:00
|
|
|
#define UPDATE_OPERATION_ROOT_DIR_PACKAGE_MAGIC 0
|
2022-05-11 09:45:01 +00:00
|
|
|
#define UPDATE_OPERATION_MAX_MANIFEST_PATH_LEN 255u
|
|
|
|
#define UPDATE_OPERATION_MIN_MANIFEST_VERSION 2
|
2022-05-06 16:26:25 +00:00
|
|
|
|
2022-04-13 20:50:25 +00:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
2022-10-05 15:15:23 +00:00
|
|
|
bool update_operation_get_package_dir_name(const char* full_path, FuriString* out_manifest_dir);
|
2022-04-13 20:50:25 +00:00
|
|
|
|
2022-05-11 09:45:01 +00:00
|
|
|
/* When updating this enum, also update assets/protobuf/system.proto */
|
2022-04-13 20:50:25 +00:00
|
|
|
typedef enum {
|
|
|
|
UpdatePrepareResultOK,
|
|
|
|
UpdatePrepareResultManifestPathInvalid,
|
|
|
|
UpdatePrepareResultManifestFolderNotFound,
|
|
|
|
UpdatePrepareResultManifestInvalid,
|
|
|
|
UpdatePrepareResultStageMissing,
|
|
|
|
UpdatePrepareResultStageIntegrityError,
|
2022-05-11 09:45:01 +00:00
|
|
|
UpdatePrepareResultManifestPointerError,
|
|
|
|
UpdatePrepareResultTargetMismatch,
|
|
|
|
UpdatePrepareResultOutdatedManifestVersion,
|
2022-07-04 13:36:12 +00:00
|
|
|
UpdatePrepareResultIntFull,
|
|
|
|
UpdatePrepareResultUnspecifiedError,
|
2022-04-13 20:50:25 +00:00
|
|
|
} 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 filesystem path for current update package
|
|
|
|
* @param storage Storage API
|
2022-05-11 09:45:01 +00:00
|
|
|
* @param out_path Path to manifest. Must be initialized
|
2022-04-13 20:50:25 +00:00
|
|
|
* @return true if path was restored successfully
|
|
|
|
*/
|
2022-10-05 15:15:23 +00:00
|
|
|
bool update_operation_get_current_package_manifest_path(Storage* storage, FuriString* out_path);
|
2022-04-13 20:50:25 +00:00
|
|
|
|
|
|
|
/*
|
2022-05-06 16:26:25 +00:00
|
|
|
* Checks if an update operation step is pending after reset
|
2022-04-13 20:50:25 +00:00
|
|
|
*/
|
|
|
|
bool update_operation_is_armed();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Cancels pending update operation
|
|
|
|
*/
|
|
|
|
void update_operation_disarm();
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
2022-05-06 13:37:10 +00:00
|
|
|
#endif
|