1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
|
/* -*- linux-c -*-
*
* (C) Copyright IBM Corp. 2005
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. This
* file and program are licensed under a BSD style license. See
* the Copying file included with the OpenHPI distribution for
* full licensing terms.
*
* Author(s):
* W. David Ashley <dashley@us.ibm.com>
*/
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
extern "C"
{
#include <SaHpi.h>
}
#include "oSaHpiTypesEnums.hpp"
#include "oSaHpiResourceEvent.hpp"
#include "oSaHpiDomainEvent.hpp"
#include "oSaHpiSensorEvent.hpp"
#include "oSaHpiSensorEnableChangeEvent.hpp"
#include "oSaHpiHotSwapEvent.hpp"
#include "oSaHpiWatchdogEvent.hpp"
#include "oSaHpiHpiSwEvent.hpp"
#include "oSaHpiOemEvent.hpp"
#include "oSaHpiUserEvent.hpp"
#include "oSaHpiEvent.hpp"
/**
* Default constructor.
*/
oSaHpiEvent::oSaHpiEvent() {
Source = 1;
EventType = SAHPI_ET_RESOURCE;
Timestamp = 0;
Severity = SAHPI_OK;
EventDataUnion.ResourceEvent.ResourceEventType = SAHPI_RESE_RESOURCE_ADDED;
};
/**
* Constructor.
*
* @param buf The reference to the class to be copied.
*/
oSaHpiEvent::oSaHpiEvent(const oSaHpiEvent& buf) {
memcpy(this, &buf, sizeof(SaHpiEventT));
}
/**
* Assign a field in the SaHpiEventT struct a value.
*
* @param field The pointer to the struct (class).
* @param field The field name as a text string (case sensitive).
* @param value The character string value to be assigned to the field. This
* value will be converted as necessary.
*
* @return True if there was an error, otherwise false.
*/
bool oSaHpiEvent::assignField(SaHpiEventT *ptr,
const char *field,
const char *value) {
if (ptr == NULL || field == NULL || value == NULL) {
return true;
}
if (strcmp(field, "Source") == 0) {
ptr->Source = strtoul(value, NULL, 10);
return false;
}
else if (strcmp(field, "EventType") == 0) {
ptr->EventType = oSaHpiTypesEnums::str2eventtype(value);
return false;
}
else if (strcmp(field, "Timestamp") == 0) {
ptr->Timestamp = strtoull(value, NULL, 10);
return false;
}
else if (strcmp(field, "Severity") == 0) {
ptr->Severity = oSaHpiTypesEnums::str2severity(value);
return false;
}
// Event
return true;
};
/**
* Print the contents of the buffer.
*
* @param stream Target stream.
* @param buffer Address of the SaHpiEventT struct.
*
* @return True if there was an error, otherwise false.
*/
bool oSaHpiEvent::fprint(FILE *stream,
const int indent,
const SaHpiEventT *buffer) {
int i, err;
char indent_buf[indent + 1];
if (stream == NULL || buffer == NULL) {
return true;
}
for (i = 0; i < indent; i++) {
indent_buf[i] = ' ';
}
indent_buf[indent] = '\0';
err = fprintf(stream, "%s", indent_buf);
if (err < 0) {
return true;
}
err = fprintf(stream, "Source = %u\n", buffer->Source);
if (err < 0) {
return true;
}
err = fprintf(stream, "%s", indent_buf);
if (err < 0) {
return true;
}
err = fprintf(stream, "EventType = %s\n", oSaHpiTypesEnums::eventtype2str(buffer->EventType));
if (err < 0) {
return true;
}
err = fprintf(stream, "%s", indent_buf);
if (err < 0) {
return true;
}
err = fprintf(stream, "Timestamp = %lld\n", buffer->Timestamp);
if (err < 0) {
return true;
}
err = fprintf(stream, "%s", indent_buf);
if (err < 0) {
return true;
}
err = fprintf(stream, "Severity = %s\n", oSaHpiTypesEnums::severity2str(buffer->Severity));
if (err < 0) {
return true;
}
err = fprintf(stream, "%s", indent_buf);
if (err < 0) {
return true;
}
err = fprintf(stream, "EventDataUnion\n");
if (err < 0) {
return true;
}
switch (buffer->EventType) {
case SAHPI_ET_RESOURCE: {
const SaHpiResourceEventT *re = (const SaHpiResourceEventT *)&buffer->EventDataUnion.ResourceEvent;
err = oSaHpiResourceEvent::fprint(stream, indent + 3, re);
if (err < 0) {
return true;
}
break;
}
case SAHPI_ET_DOMAIN: {
const SaHpiDomainEventT *de = (const SaHpiDomainEventT *)&buffer->EventDataUnion.DomainEvent;
err = oSaHpiDomainEvent::fprint(stream, indent + 3, de);
if (err < 0) {
return true;
}
break;
}
case SAHPI_ET_SENSOR: {
const SaHpiSensorEventT *se = (const SaHpiSensorEventT *)&buffer->EventDataUnion.SensorEvent;
err = oSaHpiSensorEvent::fprint(stream, indent + 3, se);
if (err < 0) {
return true;
}
break;
}
case SAHPI_ET_SENSOR_ENABLE_CHANGE: {
const SaHpiSensorEnableChangeEventT *sec = (const SaHpiSensorEnableChangeEventT *)&buffer->EventDataUnion.SensorEnableChangeEvent;
err = oSaHpiSensorEnableChangeEvent::fprint(stream, indent + 3, sec);
if (err < 0) {
return true;
}
break;
}
case SAHPI_ET_HOTSWAP: {
const SaHpiHotSwapEventT *hs = (const SaHpiHotSwapEventT *)&buffer->EventDataUnion.HotSwapEvent;
err = oSaHpiHotSwapEvent::fprint(stream, indent + 3, hs);
if (err < 0) {
return true;
}
break;
}
case SAHPI_ET_WATCHDOG: {
const SaHpiWatchdogEventT *we = (const SaHpiWatchdogEventT *)&buffer->EventDataUnion.WatchdogEvent;
err = oSaHpiWatchdogEvent::fprint(stream, indent + 3, we);
if (err < 0) {
return true;
}
break;
}
case SAHPI_ET_HPI_SW: {
const SaHpiHpiSwEventT *hpise = (const SaHpiHpiSwEventT *)&buffer->EventDataUnion.HpiSwEvent;
err = oSaHpiHpiSwEvent::fprint(stream, indent + 3, hpise);
if (err < 0) {
return true;
}
break;
}
case SAHPI_ET_OEM: {
const SaHpiOemEventT *oe = (const SaHpiOemEventT *)&buffer->EventDataUnion.OemEvent;
err = oSaHpiOemEvent::fprint(stream, indent + 3, oe);
if (err < 0) {
return true;
}
break;
}
case SAHPI_ET_USER: {
const SaHpiUserEventT *ue = (const SaHpiUserEventT *)&buffer->EventDataUnion.UserEvent;
err = oSaHpiUserEvent::fprint(stream, indent + 3, ue);
if (err < 0) {
return true;
}
break;
}
default:
err = fprintf(stream, "%s", indent_buf);
if (err < 0) {
return true;
}
err = fprintf(stream, " Unknown\n");
if (err < 0) {
return true;
}
}
return false;
}
|