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
|
/* -*- c++ -*-
*
* (C) Copyright Pigeon Point Systems. 2011
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTINVENTORYLITY 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):
* Anton Pak <anton.pak@pigeonpoint.com>
*/
#include <algorithm>
#include <string>
#include "area.h"
#include "codec.h"
#include "inventory.h"
namespace TA {
/**************************************************************
* Helper functions
*************************************************************/
static SaHpiRdrTypeUnionT MakeDefaultInvRec( SaHpiIdrIdT num )
{
SaHpiRdrTypeUnionT data;
SaHpiInventoryRecT& rec = data.InventoryRec;
rec.IdrId = num;
rec.Persistent = SAHPI_FALSE;
rec.Oem = 0;
return data;
}
/**************************************************************
* Functors for working with areas
*************************************************************/
struct AreaDeleter
{
void operator ()( cArea * area )
{
delete area;
}
};
struct AreaIdPred
{
explicit AreaIdPred( SaHpiEntryIdT _id )
: id( _id )
{
// empty
}
bool operator ()( const cArea * area ) const
{
return ( id == SAHPI_FIRST_ENTRY ) ||
( id == area->GetId() );
}
SaHpiEntryIdT id;
};
struct AreaIdTypePred
{
explicit AreaIdTypePred( SaHpiEntryIdT _id, SaHpiIdrAreaTypeT _type )
: id( _id ), type( _type )
{
// empty
}
bool operator ()( const cArea * area ) const
{
if ( type == area->GetType() ) {
return ( id == SAHPI_FIRST_ENTRY ) ||
( id == area->GetId() );
} else {
return false;
}
}
SaHpiEntryIdT id;
SaHpiIdrAreaTypeT type;
};
struct ObjectCollector
{
explicit ObjectCollector( cObject::Children& _children )
: children( _children )
{
// empty
}
void operator ()( cArea * area )
{
children.push_back( area );
}
cObject::Children& children;
};
struct AreaMaxId
{
explicit AreaMaxId()
: value( 0 )
{
// empty
}
void operator ()( const cArea * area )
{
value = std::max( value, area->GetId() );
}
SaHpiEntryIdT value;
};
/**************************************************************
* class cInventory
*************************************************************/
const std::string cInventory::classname = "inv";
cInventory::cInventory( cHandler& handler, cResource& resource, SaHpiIdrIdT num )
: cInstrument( handler,
resource,
AssembleNumberedObjectName( classname, num ),
SAHPI_INVENTORY_RDR,
MakeDefaultInvRec( num ) ),
m_rec( GetRdr().RdrTypeUnion.InventoryRec ),
m_readonly( SAHPI_FALSE ),
m_update_count( 0 )
{
// empty
}
cInventory::~cInventory()
{
AreaDeleter deleter;
std::for_each( m_areas.begin(), m_areas.end(), deleter );
m_areas.clear();
}
cArea * cInventory::GetArea( SaHpiEntryIdT aid ) const
{
Areas::const_iterator i;
i = std::find_if( m_areas.begin(), m_areas.end(), AreaIdPred( aid ) );
if ( i == m_areas.end() ) {
return 0;
}
return *i;
}
// HPI Interface
SaErrorT cInventory::GetInfo( SaHpiIdrInfoT& info ) const
{
info.IdrId = m_rec.IdrId;
info.UpdateCount = m_update_count;
info.ReadOnly = m_readonly;
info.NumAreas = m_areas.size();
return SA_OK;
}
SaErrorT cInventory::GetArea( SaHpiIdrAreaTypeT atype,
SaHpiEntryIdT aid,
SaHpiEntryIdT& next_aid,
SaHpiIdrAreaHeaderT& hdr ) const
{
if ( aid == SAHPI_LAST_ENTRY ) {
return SA_ERR_HPI_INVALID_PARAMS;
}
next_aid = SAHPI_LAST_ENTRY;
Areas::const_iterator i, j;
if ( atype == SAHPI_IDR_AREATYPE_UNSPECIFIED ) {
i = std::find_if( m_areas.begin(), m_areas.end(), AreaIdPred( aid ) );
if ( i == m_areas.end() ) {
return SA_ERR_HPI_NOT_PRESENT;
}
(*i)->GetHeader( hdr );
++i;
if ( i != m_areas.end() ) {
next_aid = (*i)->GetId();
}
} else {
i = std::find_if( m_areas.begin(),
m_areas.end(),
AreaIdTypePred( aid, atype ) );
if ( i == m_areas.end() ) {
return SA_ERR_HPI_NOT_PRESENT;
}
(*i)->GetHeader( hdr );
++i;
if ( i != m_areas.end() ) {
j = std::find_if( i,
m_areas.end(),
AreaIdTypePred( SAHPI_FIRST_ENTRY, atype ) );
if ( j != m_areas.end() ) {
next_aid = (*j)->GetId();
}
}
}
return SA_OK;
}
SaErrorT cInventory::AddArea( SaHpiIdrAreaTypeT atype,
SaHpiEntryIdT& aid )
{
if ( m_readonly != SAHPI_FALSE ) {
return SA_ERR_HPI_READ_ONLY;
}
if ( atype == SAHPI_IDR_AREATYPE_UNSPECIFIED ) {
return SA_ERR_HPI_INVALID_DATA;
}
AreaMaxId max_id = std::for_each( m_areas.begin(),
m_areas.end(),
AreaMaxId() );
aid = max_id.value + 1;
m_areas.push_back( new cArea( m_update_count, aid, atype ) );
++m_update_count;
return SA_OK;
}
SaErrorT cInventory::AddAreaById( SaHpiEntryIdT aid,
SaHpiIdrAreaTypeT atype )
{
if ( m_readonly != SAHPI_FALSE ) {
return SA_ERR_HPI_READ_ONLY;
}
if ( atype == SAHPI_IDR_AREATYPE_UNSPECIFIED ) {
return SA_ERR_HPI_INVALID_DATA;
}
if ( aid == SAHPI_LAST_ENTRY ) {
return SA_ERR_HPI_INVALID_PARAMS;
}
cArea * area;
if ( aid == SAHPI_FIRST_ENTRY ) {
AreaMaxId max_id = std::for_each( m_areas.begin(),
m_areas.end(),
AreaMaxId() );
SaHpiEntryIdT new_aid = max_id.value + 1;
area = new cArea( m_update_count, new_aid, atype );
m_areas.push_front( area );
} else {
if ( GetArea( aid ) ) {
return SA_ERR_HPI_DUPLICATE;
}
area = new cArea( m_update_count, aid, atype );
m_areas.push_back( area );
}
++m_update_count;
return SA_OK;
}
SaErrorT cInventory::DeleteAreaById( SaHpiEntryIdT aid )
{
if ( m_readonly != SAHPI_FALSE ) {
return SA_ERR_HPI_READ_ONLY;
}
if ( aid == SAHPI_LAST_ENTRY ) {
return SA_ERR_HPI_INVALID_PARAMS;
}
cArea * area = GetArea( aid );
if ( !area ) {
return SA_ERR_HPI_NOT_PRESENT;
}
if ( !area->CanBeDeleted() ) {
return SA_ERR_HPI_READ_ONLY;
}
// NB: if we pass aid to AreaIdPred
// and aid is SAHPI_FIRST_ENTRY
// then all areas will be deleted.
m_areas.remove_if( AreaIdPred( area->GetId() ) );
delete area;
++m_update_count;
return SA_OK;
}
void cInventory::GetNewNames( cObject::NewNames& names ) const
{
cObject::GetNewNames( names );
names.push_back( cArea::classname + "-XXX" );
}
bool cInventory::CreateChild( const std::string& name )
{
bool rc;
rc = cObject::CreateChild( name );
if ( rc ) {
return true;
}
std::string cname;
SaHpiUint32T id;
rc = DisassembleNumberedObjectName( name, cname, id );
if ( !rc ) {
return false;
}
if ( id == SAHPI_FIRST_ENTRY ) {
return false;
}
if ( id == SAHPI_LAST_ENTRY ) {
return false;
}
if ( cname == cArea::classname ) {
if ( !GetArea( id ) ) {
m_areas.push_back( new cArea( m_update_count, id ) );
++m_update_count;
return true;
}
}
return false;
}
bool cInventory::RemoveChild( const std::string& name )
{
bool rc;
rc = cObject::RemoveChild( name );
if ( rc ) {
return true;
}
std::string cname;
SaHpiUint32T id;
rc = DisassembleNumberedObjectName( name, cname, id );
if ( !rc ) {
return false;
}
if ( id == SAHPI_FIRST_ENTRY ) {
return false;
}
if ( id == SAHPI_LAST_ENTRY ) {
return false;
}
if ( cname == cArea::classname ) {
cArea * area = GetArea( id );
if ( area ) {
// NB: if we pass id to AreaIdPred
// and id is SAHPI_FIRST_ENTRY
// then all areas will be deleted.
m_areas.remove_if( AreaIdPred( id ) );
delete area;
++m_update_count;
return true;
}
}
return false;
}
void cInventory::GetChildren( Children& children ) const
{
cObject::GetChildren( children );
ObjectCollector collector( children );
std::for_each( m_areas.begin(), m_areas.end(), collector );
}
void cInventory::GetVars( cVars& vars )
{
cInstrument::GetVars( vars );
vars << "ReadOnly"
<< dtSaHpiBoolT
<< DATA( m_readonly )
<< VAR_END();
}
void cInventory::AfterVarSet( const std::string& var_name )
{
cInstrument::AfterVarSet( var_name );
++m_update_count;
}
}; // namespace TA
|