blob: 9a9df098aa36fc0e60a464e0691e6f810f6538a7 [file] [log] [blame]
#pragma once
#include "config.h"
#include <experimental/filesystem>
namespace phosphor
{
namespace software
{
namespace updater
{
namespace fs = std::experimental::filesystem;
/** @brief Serialization function - stores priority information to file
* @param[in] versionId - The version for which to store information.
* @param[in] priority - RedundancyPriority value for that version.
**/
void storePriority(const std::string& versionId, uint8_t priority);
/** @brief Serialization function - restores priority information from file
* @param[in] versionId - The version for which to retrieve information.
* @param[in] priority - RedundancyPriority reference for that version.
* @return true if restore was successful, false if not
**/
bool restorePriority(const std::string& versionId, uint8_t& priority);
/** @brief Removes the serial directory for a given version.
* @param[in] versionId - The version for which to remove a file, if it exists.
**/
void removePersistDataDirectory(const std::string& versionId);
} // namespace updater
} // namespace software
} // namespace phosphor