blob: 45d40087759bc807abb744db8b834fe675f48d08 [file] [log] [blame]
#include "fru_area.hpp"
#include "frup.hpp"
#include <cstdint>
#include <cstring>
#include <phosphor-logging/log.hpp>
using namespace phosphor::logging;
//----------------------------------------------------------------
// Constructor
//----------------------------------------------------------------
IPMIFruArea::IPMIFruArea(const uint8_t fruID, const ipmi_fru_area_type type,
bool bmcOnlyFru) :
fruID(fruID),
type(type), bmcOnlyFru(bmcOnlyFru)
{
if (type == IPMI_FRU_AREA_INTERNAL_USE)
{
name = "INTERNAL_";
}
else if (type == IPMI_FRU_AREA_CHASSIS_INFO)
{
name = "CHASSIS_";
}
else if (type == IPMI_FRU_AREA_BOARD_INFO)
{
name = "BOARD_";
}
else if (type == IPMI_FRU_AREA_PRODUCT_INFO)
{
name = "PRODUCT_";
}
else if (type == IPMI_FRU_AREA_MULTI_RECORD)
{
name = "MULTI_";
}
else
{
name = IPMI_FRU_AREA_TYPE_MAX;
log<level::ERR>("Invalid Area", entry("TYPE=%d", type));
}
}
//-----------------------------------------------------
// For a FRU area type, accepts the data and updates
// area specific data.
//-----------------------------------------------------
void IPMIFruArea::setData(const uint8_t* value, const size_t length)
{
data.reserve(length); // pre-allocate the space.
data.insert(data.begin(), value, value + length);
}
//-----------------------------------------------------
// Sets the dbus parameters
//-----------------------------------------------------
void IPMIFruArea::updateDbusPaths(const char* bus, const char* path,
const char* intf)
{
busName = bus;
objectPath = path;
interfaceName = intf;
}
//-------------------
// Destructor
//-------------------
IPMIFruArea::~IPMIFruArea()
{
}