blob: 81afd6db0b25576ee4caf8fd274ca9c005abe984 [file] [log] [blame]
#include <string>
#include <phosphor-logging/log.hpp>
#include "config.h"
#include "item_updater.hpp"
#include "xyz/openbmc_project/Software/Version/server.hpp"
namespace phosphor
{
namespace software
{
namespace updater
{
// When you see server:: you know we're referencing our base class
namespace server = sdbusplus::xyz::openbmc_project::Software::server;
using namespace phosphor::logging;
void ItemUpdater::createActivation(sdbusplus::message::message& msg)
{
sdbusplus::message::object_path objPath;
std::map<std::string,
std::map<std::string,
sdbusplus::message::variant<std::string>>> interfaces;
msg.read(objPath, interfaces);
std::string path(std::move(objPath));
for (const auto& intf : interfaces)
{
if (intf.first.compare(VERSION_IFACE))
{
continue;
}
for (const auto& property : intf.second)
{
if (!property.first.compare("Purpose"))
{
// Only process the BMC images
auto value = sdbusplus::message::variant_ns::get<std::string>(
property.second);
if (value !=
convertForMessage(server::Version::VersionPurpose::BMC) &&
value !=
convertForMessage(server::Version::VersionPurpose::System))
{
return;
}
}
}
}
// Version id is the last item in the path
auto pos = path.rfind("/");
if (pos == std::string::npos)
{
log<level::ERR>("No version id found in object path",
entry("OBJPATH=%s", path));
return;
}
auto versionId = path.substr(pos + 1);
if (activations.find(versionId) == activations.end())
{
// For now set all BMC code versions to active
constexpr auto activationState =
server::Activation::Activations::Active;
activations.insert(
std::make_pair(
versionId,
std::make_unique<Activation>(
bus, path, versionId, activationState)));
}
return;
}
} // namespace updater
} // namespace software
} // namespace phosphor