blob: 0ea6cc9244381369b1a65662d775605257c3a354 [file] [log] [blame]
#include "version.hpp"
#include "item_updater.hpp"
#include <fstream>
#include <iostream>
#include <phosphor-logging/elog-errors.hpp>
#include <phosphor-logging/log.hpp>
#include <sstream>
#include <stdexcept>
#include <string>
#include <xyz/openbmc_project/Common/error.hpp>
namespace phosphor
{
namespace software
{
namespace updater
{
using namespace sdbusplus::xyz::openbmc_project::Common::Error;
using namespace phosphor::logging;
using Argument = xyz::openbmc_project::Common::InvalidArgument;
std::map<std::string, std::string>
Version::getValues(const std::string& filePath,
const std::vector<std::string>& keys)
{
if (filePath.empty())
{
log<level::ERR>("Error filePath is empty");
elog<InvalidArgument>(Argument::ARGUMENT_NAME("FilePath"),
Argument::ARGUMENT_VALUE(filePath.c_str()));
}
std::ifstream efile(filePath);
std::string line;
std::map<std::string, std::string> ret;
while (getline(efile, line))
{
for (const auto& key : keys)
{
auto value = key + "=";
auto keySize = value.length();
if (line.compare(0, keySize, value) == 0)
{
ret.emplace(key, line.substr(keySize));
break;
}
}
}
return ret;
}
void Delete::delete_()
{
if (version.eraseCallback)
{
version.eraseCallback(version.getVersionId());
}
}
} // namespace updater
} // namespace software
} // namespace phosphor