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 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522
|
/**
* @file new_sim_hotswap.cpp
*
* The file includes a class for hotswap behaviour:\n
* NewSimulatorHotSwap
*
* @author Lars Wetzel <larswetzel@users.sourceforge.net>
* @version 0.1
* @date 2010
*
* 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.
*
*/
#include <oh_error.h>
#include "new_sim_hotswap.h"
#include "new_sim_utils.h"
#include "new_sim_domain.h"
#include "new_sim_timer_thread.h"
/**
* Constructor
**/
NewSimulatorHotSwap::NewSimulatorHotSwap( NewSimulatorResource *res )
: NewSimulatorTimerThread( 0 ),
m_insert_time( SAHPI_TIMEOUT_IMMEDIATE ),
m_extract_time( SAHPI_TIMEOUT_IMMEDIATE ),
m_running( false ),
m_state( SAHPI_HS_STATE_NOT_PRESENT ),
m_res( res ) {
}
/**
* Full qualified constructor to fill an object with the parsed data
**/
NewSimulatorHotSwap::NewSimulatorHotSwap( NewSimulatorResource *res,
SaHpiTimeoutT insertTime,
SaHpiTimeoutT extractTime,
SaHpiHsStateT startState )
: NewSimulatorTimerThread( 0 ),
m_insert_time( insertTime ),
m_extract_time( extractTime ),
m_running( false ),
m_state( startState ),
m_res( res ) {
}
/**
* Destructor
**/
NewSimulatorHotSwap::~NewSimulatorHotSwap() {
Stop();
}
/**
* Dump hotswap information
*
* @param dump address of the log
*
**/
void NewSimulatorHotSwap::Dump( NewSimulatorLog &dump ) const {
dump << "HotSwap data: \n";
dump << "InsertionTimeout: " << (long int) m_insert_time << "\n";
dump << "ExtractionTimeout: " << (long int) m_extract_time << "\n";
dump << "State: " << m_state << "\n";
}
/**
* Set both timeout values
**/
void NewSimulatorHotSwap::SetTimeouts( SaHpiTimeoutT insert, SaHpiTimeoutT extract ) {
m_insert_time = insert;
m_extract_time = extract;
}
/**
* Check if the hotswap policy is still valid and send event
*
* @return true if thread can exit, false if not
**/
bool NewSimulatorHotSwap::TriggerAction() {
SaHpiHsCauseOfStateChangeT cause = SAHPI_HS_CAUSE_AUTO_POLICY;
SaHpiSeverityT severity = SAHPI_INFORMATIONAL;
stdlog << "DBG: CheckHotSwapTimer\n";
if ( m_running == SAHPI_FALSE )
return true;
if ( ! m_start.IsSet() )
return true;
// Ok, we have a running hotswap policy
cTime now( cTime::Now() );
now -= m_start;
if ( m_state == SAHPI_HS_STATE_INSERTION_PENDING ) {
if ( now.GetMsec() >= m_insert_time / 1000000LL ) {
stdlog << "DBG: HotSwapTimer expires for Insertion.\n";
SendEvent( SAHPI_HS_STATE_ACTIVE, SAHPI_HS_STATE_INSERTION_PENDING,
cause, severity );
m_state = SAHPI_HS_STATE_ACTIVE;
m_running = false;
m_start.Clear();
return true;
}
}
if ( m_state == SAHPI_HS_STATE_EXTRACTION_PENDING ) {
if ( now.GetMsec() >= m_extract_time / 1000000LL ) {
stdlog << "DBG: HotSwapTimer expires for Extraction.\n";
SendEvent( SAHPI_HS_STATE_INACTIVE, SAHPI_HS_STATE_EXTRACTION_PENDING,
cause, severity );
m_state = SAHPI_HS_STATE_INACTIVE;
m_running = false;
m_start.Clear();
return true;
}
}
err(" Timer expires but now action was defined -> Stop Timer. \n");
return true;
}
/**
* Check if the hotswap policy timeouts and start actions
*
* @return true if thread can exit, false if not
**/
SaErrorT NewSimulatorHotSwap::TriggerTransition( SaHpiHsStateT state ) {
SaHpiTimeoutT timeout;
SaHpiHsCauseOfStateChangeT cause = SAHPI_HS_CAUSE_AUTO_POLICY;
SaHpiSeverityT severity = SAHPI_INFORMATIONAL;
switch ( state ) {
case SAHPI_HS_STATE_ACTIVE:
// First get the latest Insertion time value
m_insert_time = m_res->Domain()->InsertTimeout();
timeout = m_insert_time;
break;
case SAHPI_HS_STATE_INACTIVE:
timeout = m_extract_time;
break;
default:
err( "Invalid state for NewSimulatorHotSwap::TriggerTransition.");
return SA_ERR_HPI_INTERNAL_ERROR;
}
if ( timeout == SAHPI_TIMEOUT_IMMEDIATE ) {
stdlog << "DBG: Transition happens immediatly due to SAHPI_TIMEOUT_IMMEDIATE.\n";
SendEvent( state, m_state, cause, severity );
m_state = state;
} else if ( timeout == SAHPI_TIMEOUT_BLOCK ) {
stdlog << "DBG: Transition is blocked by timeout value SAHPI_TIMEOUT_BLOCK.\n";
} else if ( timeout > 0 ) {
stdlog << "DBG: Transition will happen after " << (long int) timeout << " ms.\n";
Reset( timeout / 1000000LL );
m_start = cTime::Now();
m_running = true;
Start();
} else {
err( "Invalid timeout value inside NewSimulatorHotSwap::TriggerTransition.");
return SA_ERR_HPI_INTERNAL_ERROR;
}
return SA_OK;
}
/**
* Start a resource from NOT_PRESENT
**/
SaErrorT NewSimulatorHotSwap::StartResource(oh_event *e) {
SaErrorT rv = SA_OK;
SaHpiHsCauseOfStateChangeT cause = SAHPI_HS_CAUSE_AUTO_POLICY;
SaHpiSeverityT severity = SAHPI_INFORMATIONAL;
if ( m_res->ResourceCapabilities() & SAHPI_CAPABILITY_FRU ) {
e->event.EventType = SAHPI_ET_HOTSWAP;
if ( m_res->ResourceCapabilities() & SAHPI_CAPABILITY_MANAGED_HOTSWAP ) {
e->event.EventDataUnion.HotSwapEvent.HotSwapState = SAHPI_HS_STATE_INACTIVE;
e->event.EventDataUnion.HotSwapEvent.PreviousHotSwapState = SAHPI_HS_STATE_NOT_PRESENT;
e->event.EventDataUnion.HotSwapEvent.CauseOfStateChange = cause;
m_state = SAHPI_HS_STATE_INACTIVE;
} else {
e->event.EventDataUnion.HotSwapEvent.HotSwapState = SAHPI_HS_STATE_ACTIVE;
e->event.EventDataUnion.HotSwapEvent.PreviousHotSwapState = SAHPI_HS_STATE_NOT_PRESENT;
e->event.EventDataUnion.HotSwapEvent.CauseOfStateChange = cause;
m_state = SAHPI_HS_STATE_ACTIVE;
}
} else {
// Send a Resource event
e->event.EventType = SAHPI_ET_RESOURCE;
e->event.EventDataUnion.ResourceEvent.ResourceEventType = SAHPI_RESE_RESOURCE_ADDED;
m_state = SAHPI_HS_STATE_ACTIVE;
}
e->event.Source = e->resource.ResourceId;
e->event.Severity = severity;
oh_gettimeofday(&e->event.Timestamp);
m_res->Domain()->AddHpiEvent( e );
if ( rv == SA_OK )
stdlog << "DBG: HotSwap::StartResource successfully.\n";
return rv;
}
/**
* Send a HotSwap event
*
* @param newState new HotSwap state
* @param prevState previous HotSwap state
* @param cause cause for the state transition
* @param severity severity of event to be set
**/
void NewSimulatorHotSwap::SendEvent( SaHpiHsStateT newState,
SaHpiHsStateT prevState,
SaHpiHsCauseOfStateChangeT cause,
SaHpiSeverityT severity ) {
NewSimulatorResource *res = m_res;
if( !res ) {
stdlog << "DBG: HotSwap::SendEvent: No resource !\n";
return;
}
oh_event *e = (oh_event *)g_malloc0( sizeof( struct oh_event ) );
e->event.EventType = SAHPI_ET_HOTSWAP;
SaHpiRptEntryT *rptentry = oh_get_resource_by_id( res->Domain()->GetHandler()->rptcache, res->ResourceId() );
if ( rptentry )
e->resource = *rptentry;
else
e->resource.ResourceCapabilities = 0;
// hpi events
e->event.Source = res->ResourceId();
e->event.EventType = SAHPI_ET_HOTSWAP;
e->event.Severity = severity;
oh_gettimeofday(&e->event.Timestamp);
SaHpiHotSwapEventT &he = e->event.EventDataUnion.HotSwapEvent;
he.HotSwapState = newState;
he.PreviousHotSwapState = prevState;
he.CauseOfStateChange = cause;
stdlog << "DBG: NewSimHotSwap::Send hotswap event for resource " << res->ResourceId() << "\n";
res->Domain()->AddHpiEvent( e );
}
// Official HPI functions
/**
* HPI function saHpiHotSwapPolicyCancel
*
* See also the description of the function inside the specification or header file.
* Copying the internal values and show the remaining time if the timer was started.
*
* @return HPI return code
**/
SaErrorT NewSimulatorHotSwap::CancelPolicy() {
if ( !( (m_state == SAHPI_HS_STATE_INSERTION_PENDING) ||
(m_state == SAHPI_HS_STATE_EXTRACTION_PENDING) ))
return SA_ERR_HPI_INVALID_REQUEST;
if (!(m_res->ResourceCapabilities() & SAHPI_CAPABILITY_MANAGED_HOTSWAP))
return SA_ERR_HPI_CAPABILITY;
if ( m_running )
Stop();
m_running = false;
m_start.Clear();
return SA_OK;
}
/**
* HPI function saHpiHotSwapStateGet
*
* See also the description of the function inside the specification or header file.
* Copying the internal values and show the remaining time if the timer was started.
*
* @param state address of state to be filled
*
* @return HPI return code
**/
SaErrorT NewSimulatorHotSwap::GetState( SaHpiHsStateT &state ) {
if ( &state == NULL)
return SA_ERR_HPI_INVALID_PARAMS;
if (!(m_res->ResourceCapabilities() & SAHPI_CAPABILITY_FRU))
return SA_ERR_HPI_CAPABILITY;
state = m_state;
return SA_OK;
}
/**
* HPI function saHpiAutoExtractTimeoutSet
*
* See also the description of the function inside the specification or header file.
* Copying the internal values and show the remaining time if the timer was started.
*
* @param timeout timeout value to be set
*
* @return HPI return code
**/
SaErrorT NewSimulatorHotSwap::SetExtractTimeout( SaHpiTimeoutT timeout ) {
if ( ( timeout != SAHPI_TIMEOUT_BLOCK ) &&
( timeout != SAHPI_TIMEOUT_IMMEDIATE ) &&
( timeout <= 0 ) )
return SA_ERR_HPI_INVALID_PARAMS;
if (!(m_res->ResourceCapabilities() & SAHPI_CAPABILITY_MANAGED_HOTSWAP))
return SA_ERR_HPI_CAPABILITY;
if ( m_res->HotSwapCapabilities() & SAHPI_HS_CAPABILITY_AUTOEXTRACT_READ_ONLY )
return SA_ERR_HPI_READ_ONLY;
m_extract_time = timeout;
return SA_OK;
}
/**
* HPI function saHpiAutoExtractTimeoutGet
*
* See also the description of the function inside the specification or header file.
* Copying the internal values and show the remaining time if the timer was started.
*
* @param timeout address of timeout value to be filled
*
* @return HPI return code
**/
SaErrorT NewSimulatorHotSwap::GetExtractTimeout( SaHpiTimeoutT &timeout ) {
if ( &timeout == NULL )
return SA_ERR_HPI_INVALID_PARAMS;
if (!(m_res->ResourceCapabilities() & SAHPI_CAPABILITY_MANAGED_HOTSWAP))
return SA_ERR_HPI_CAPABILITY;
timeout = m_extract_time;
return SA_OK;
}
/**
* HPI function saHpiHotSwapActionRequest
*
* See also the description of the function inside the specification or header file.
* Copying the internal values and show the remaining time if the timer was started.
*
* @param action Requested action
*
* @return HPI return code
**/
SaErrorT NewSimulatorHotSwap::ActionRequest( SaHpiHsActionT action ) {
SaHpiHsCauseOfStateChangeT cause = SAHPI_HS_CAUSE_EXT_SOFTWARE;
SaHpiSeverityT severity = SAHPI_INFORMATIONAL;
switch( action ) {
case SAHPI_HS_ACTION_INSERTION:
if ( m_state != SAHPI_HS_STATE_INACTIVE )
return SA_ERR_HPI_INVALID_REQUEST;
SendEvent( SAHPI_HS_STATE_INSERTION_PENDING, SAHPI_HS_STATE_INACTIVE,
cause, severity );
m_state = SAHPI_HS_STATE_INSERTION_PENDING;
TriggerTransition( SAHPI_HS_STATE_ACTIVE );
break;
case SAHPI_HS_ACTION_EXTRACTION:
if ( m_state != SAHPI_HS_STATE_ACTIVE )
return SA_ERR_HPI_INVALID_REQUEST;
SendEvent( SAHPI_HS_STATE_EXTRACTION_PENDING, SAHPI_HS_STATE_ACTIVE,
cause, severity );
m_state = SAHPI_HS_STATE_EXTRACTION_PENDING;
TriggerTransition( SAHPI_HS_STATE_INACTIVE );
break;
default:
return SA_ERR_HPI_INVALID_PARAMS;
}
return SA_OK;
}
/**
* HPI function saHpiHotSwapInactiveSet
*
* See also the description of the function inside the specification or header file.
* Copying the internal values and show the remaining time if the timer was started.
*
* @return HPI return code
**/
SaErrorT NewSimulatorHotSwap::SetInactive() {
SaHpiHsCauseOfStateChangeT cause = SAHPI_HS_CAUSE_EXT_SOFTWARE;
SaHpiSeverityT severity = SAHPI_INFORMATIONAL;
// Stop Timer if it is running
if ( m_running )
Stop();
m_running = false;
m_start.Clear();
switch ( m_state ) {
case SAHPI_HS_STATE_INSERTION_PENDING:
SendEvent( SAHPI_HS_STATE_INACTIVE, SAHPI_HS_STATE_INSERTION_PENDING,
cause, severity );
break;
case SAHPI_HS_STATE_EXTRACTION_PENDING:
SendEvent( SAHPI_HS_STATE_INACTIVE, SAHPI_HS_STATE_EXTRACTION_PENDING,
cause, severity );
break;
default:
return SA_ERR_HPI_INVALID_REQUEST;
}
m_state = SAHPI_HS_STATE_INACTIVE;
return SA_OK;
}
/**
* HPI function saHpiHotSwapActiveSet
*
* See also the description of the function inside the specification or header file.
* Copying the internal values and show the remaining time if the timer was started.
*
* @return HPI return code
**/
SaErrorT NewSimulatorHotSwap::SetActive() {
SaHpiHsCauseOfStateChangeT cause = SAHPI_HS_CAUSE_EXT_SOFTWARE;
SaHpiSeverityT severity = SAHPI_INFORMATIONAL;
// Stop Timer if it is running
if ( m_running )
Stop();
m_running = false;
m_start.Clear();
switch ( m_state ) {
case SAHPI_HS_STATE_INSERTION_PENDING:
SendEvent( SAHPI_HS_STATE_ACTIVE, SAHPI_HS_STATE_INSERTION_PENDING,
cause, severity );
break;
case SAHPI_HS_STATE_EXTRACTION_PENDING:
SendEvent( SAHPI_HS_STATE_ACTIVE, SAHPI_HS_STATE_EXTRACTION_PENDING,
cause, severity );
break;
default:
return SA_ERR_HPI_INVALID_REQUEST;
}
m_state = SAHPI_HS_STATE_ACTIVE;
return SA_OK;
}
|